changeset 750 | b7e3662faf02 |
parent 631 | d21b38647e53 |
1.1 --- a/test/mip_test.cc Mon Oct 05 09:48:57 2009 +0200 1.2 +++ b/test/mip_test.cc Mon Oct 05 20:21:54 2009 +0200 1.3 @@ -50,7 +50,8 @@ 1.4 1.5 if (stat == MipSolver::OPTIMAL) { 1.6 std::ostringstream sbuf; 1.7 - buf << "Wrong optimal value: the right optimum is " << exp_opt; 1.8 + sbuf << "Wrong optimal value ("<< mip.solValue() 1.9 + <<" instead of " << exp_opt << ")"; 1.10 check(std::abs(mip.solValue()-exp_opt) < 1e-3, sbuf.str()); 1.11 //+ecvt(exp_opt,2) 1.12 }