[Lemon-commits] [lemon_svn] athos: r1689 - hugo/trunk/src/work/marci/lp

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


Author: athos
Date: Fri Mar 25 16:32:05 2005
New Revision: 1689

Modified:
   hugo/trunk/src/work/marci/lp/lp_solver_base.h

Log:
This was a bug, I guess

Modified: hugo/trunk/src/work/marci/lp/lp_solver_base.h
==============================================================================
--- hugo/trunk/src/work/marci/lp/lp_solver_base.h	(original)
+++ hugo/trunk/src/work/marci/lp/lp_solver_base.h	Fri Mar 25 16:32:05 2005
@@ -851,6 +851,7 @@
 	switch (b) {
 	case LPX_FR:
 	  lpx_set_col_bnds(lp, i, LPX_UP, lo, up);
+	  break;
 	case LPX_LO:
 	  if (lo==up) 
 	    lpx_set_col_bnds(lp, i, LPX_FX, lo, up);
@@ -969,6 +970,7 @@
 	switch (b) {
 	case LPX_FR:
 	  lpx_set_row_bnds(lp, i, LPX_UP, lo, up);
+	  break;
 	case LPX_LO:
 	  if (lo==up) 
 	    lpx_set_row_bnds(lp, i, LPX_FX, lo, up);



More information about the Lemon-commits mailing list