Changes in / [797:b7e3662faf02:794:a42f46828cc1] in lemon
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
m4/lx_check_coin.m4
r796 r674 89 89 CBC_LDFLAGS="-L$with_coin/lib" 90 90 fi 91 CBC_LIBS="-lOsi -lCbc -l CbcSolver -lClp -lOsiClp -lCoinUtils -lVol -lOsiVol -lCgl -lm -llapack -lblas"91 CBC_LIBS="-lOsi -lCbc -lOsiCbc -lCbcSolver -lClp -lOsiClp -lCoinUtils -lVol -lOsiVol -lCgl -lm -llapack -lblas" 92 92 93 93 lx_save_cxxflags="$CXXFLAGS" -
test/mip_test.cc
r795 r678 51 51 if (stat == MipSolver::OPTIMAL) { 52 52 std::ostringstream sbuf; 53 sbuf << "Wrong optimal value ("<< mip.solValue() 54 <<" instead of " << exp_opt << ")"; 53 buf << "Wrong optimal value: the right optimum is " << exp_opt; 55 54 check(std::abs(mip.solValue()-exp_opt) < 1e-3, sbuf.str()); 56 55 //+ecvt(exp_opt,2)
Note: See TracChangeset
for help on using the changeset viewer.