# HG changeset patch # User athos # Date 1111764725 0 # Node ID 61f989e3e525bc85c09d8f55fcb830843e8f9dd2 # Parent 9d0deeea8c08de671242c62d010d49c7d2eef555 This was a bug, I guess diff -r 9d0deeea8c08 -r 61f989e3e525 src/work/marci/lp/lp_solver_base.h --- a/src/work/marci/lp/lp_solver_base.h Fri Mar 25 15:24:18 2005 +0000 +++ b/src/work/marci/lp/lp_solver_base.h Fri Mar 25 15:32:05 2005 +0000 @@ -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);