changeset 817 | 432c54cec63c |
parent 678 | d21b38647e53 |
child 1300 | 62dba6c90f35 |
1.1 --- a/test/mip_test.cc Tue Aug 18 10:08:28 2009 +0200 1.2 +++ b/test/mip_test.cc Thu Nov 05 08:39:49 2009 +0100 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 }