diff -r 58c330ad0b5c -r 6be1f9bd2ac0 test/mip_test.cc --- a/test/mip_test.cc Sun Oct 04 10:15:32 2009 +0200 +++ b/test/mip_test.cc Wed Dec 09 11:14:06 2009 +0100 @@ -50,7 +50,8 @@ if (stat == MipSolver::OPTIMAL) { std::ostringstream sbuf; - buf << "Wrong optimal value: the right optimum is " << exp_opt; + sbuf << "Wrong optimal value ("<< mip.solValue() + <<" instead of " << exp_opt << ")"; check(std::abs(mip.solValue()-exp_opt) < 1e-3, sbuf.str()); //+ecvt(exp_opt,2) }