# HG changeset patch # User deba # Date 1164821523 0 # Node ID dbbd5c5141637e14193b28462449ff601fe53623 # Parent d9daf826e28a833e28c5b185c7ec6bdc9687ec92 checking soplex diff -r d9daf826e28a -r dbbd5c514163 test/lp_test.cc --- a/test/lp_test.cc Wed Nov 29 17:30:21 2006 +0000 +++ b/test/lp_test.cc Wed Nov 29 17:32:03 2006 +0000 @@ -33,6 +33,10 @@ #include #endif +// #ifdef HAVE_SOPLEX +// #include +// #endif + using namespace lemon; void lpTest(LpSolverBase & lp) @@ -354,5 +358,11 @@ aTest(lp_cplex2); #endif +// #ifdef HAVE_SOPLEX +// LpSoplex lp_soplex1,lp_soplex2; +// lpTest(lp_soplex1); +// aTest(lp_soplex2); +// #endif + return 0; }