[Lemon-commits] [lemon_svn] klao: r2338 - hugo/trunk/lemon

Lemon SVN svn at lemon.cs.elte.hu
Mon Nov 6 20:51:54 CET 2006


Author: klao
Date: Tue Nov 15 21:51:06 2005
New Revision: 2338

Modified:
   hugo/trunk/lemon/lp_skeleton.cc
   hugo/trunk/lemon/lp_skeleton.h

Log:
lp_skeleton: _getDual "implemented"


Modified: hugo/trunk/lemon/lp_skeleton.cc
==============================================================================
--- hugo/trunk/lemon/lp_skeleton.cc	(original)
+++ hugo/trunk/lemon/lp_skeleton.cc	Tue Nov 15 21:51:06 2005
@@ -113,6 +113,11 @@
     return 0;
   }
   
+  LpSkeleton::Value LpSkeleton::_getDual(int)
+  {
+    return 0;
+  }
+  
   LpSkeleton::Value LpSkeleton::_getPrimalValue()
   {
     return 0;

Modified: hugo/trunk/lemon/lp_skeleton.h
==============================================================================
--- hugo/trunk/lemon/lp_skeleton.h	(original)
+++ hugo/trunk/lemon/lp_skeleton.h	Tue Nov 15 21:51:06 2005
@@ -107,11 +107,19 @@
     ///\bug Wrong interface
     ///
     virtual Value _getPrimal(int i);
+
+    ///\e
+
+    ///\bug Wrong interface
+    ///
+    virtual Value _getDual(int i);
+
     ///\e
 
     ///\bug Wrong interface
     ///
     virtual Value _getPrimalValue();
+
     ///\e
 
     ///\bug Wrong interface



More information about the Lemon-commits mailing list