Changes in test/mip_test.cc [1205:57abff252556:1105:62dba6c90f35] in lemon-main
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
test/mip_test.cc
r1205 r1105 62 62 } 63 63 64 void aTest(MipSolver& mip , bool solve_empty=true)64 void aTest(MipSolver& mip) 65 65 { 66 66 //The following example is very simple … … 81 81 82 82 //Unconstrained optimization 83 if(solve_empty) 84 mip.solve(); 83 mip.solve(); 85 84 //Check it out! 86 85 … … 137 136 { 138 137 Mip mip1; 139 #if LEMON_DEFAULT_MIP==LEMON_CBC_140 aTest(mip1, false);141 #else142 138 aTest(mip1); 143 #endif144 139 cloneTest<Mip>(); 145 140 } … … 167 162 { 168 163 CbcMip mip1; 169 aTest(mip1 , false);164 aTest(mip1); 170 165 cloneTest<CbcMip>(); 171 166 }
Note: See TracChangeset
for help on using the changeset viewer.