[Lemon-commits] [lemon_svn] alpar: r1735 - hugo/trunk/src/work/athos/lp

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


Author: alpar
Date: Mon Apr  4 18:19:29 2005
New Revision: 1735

Modified:
   hugo/trunk/src/work/athos/lp/lp_glpk.cc

Log:
Trivial bugfix


Modified: hugo/trunk/src/work/athos/lp/lp_glpk.cc
==============================================================================
--- hugo/trunk/src/work/athos/lp/lp_glpk.cc	(original)
+++ hugo/trunk/src/work/athos/lp/lp_glpk.cc	Mon Apr  4 18:19:29 2005
@@ -271,12 +271,13 @@
       return INFINITE;
       break;
     case LPX_FEAS://Feasible
-2      return FEASIBLE;
+      return FEASIBLE;
       break;
     case LPX_OPT://Feasible
       return OPTIMAL;
       break;
-    default: ;
+    default:
+      return UNDEFINED; //to avoid gcc warning
       //FIXME error
     }
   }



More information about the Lemon-commits mailing list