[Lemon-commits] [lemon_svn] alpar: r2402 - hugo/trunk/lemon

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


Author: alpar
Date: Fri Dec  2 11:02:40 2005
New Revision: 2402

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

Log:
bugfix

Modified: hugo/trunk/lemon/lp_skeleton.cc
==============================================================================
--- hugo/trunk/lemon/lp_skeleton.cc	(original)
+++ hugo/trunk/lemon/lp_skeleton.cc	Fri Dec  2 11:02:40 2005
@@ -137,6 +137,11 @@
   {
     return UNKNOWN;
   }
-  
+
+  bool LpSkeleton::_isBasicCol(int i)
+  {
+    return true;
+  }
+
 } //namespace lemon
 

Modified: hugo/trunk/lemon/lp_skeleton.h
==============================================================================
--- hugo/trunk/lemon/lp_skeleton.h	(original)
+++ hugo/trunk/lemon/lp_skeleton.h	Fri Dec  2 11:02:40 2005
@@ -137,6 +137,10 @@
     virtual void _setMax();
     ///\e
     virtual void _setMin();
+
+    ///\e
+    virtual bool _isBasicCol(int i);
+
     
 
   public:



More information about the Lemon-commits mailing list