diff -r 6b2e8b734ae7 -r 6ae1a97055a2 demo/mip_demo.cc --- a/demo/mip_demo.cc Mon Feb 19 12:11:41 2007 +0000 +++ b/demo/mip_demo.cc Mon Feb 19 18:21:28 2007 +0000 @@ -31,7 +31,7 @@ ilp.colLowerBound(x2, 0); ilp.colLowerBound(x3, 0); //Objective function - ilp.setObj(10*x1+6*x2+4*x3); + ilp.obj(10*x1+6*x2+4*x3); //Call the routine of the underlying LP solver ilp.solve();