1.1 --- a/test/lp_test.cc Wed Nov 29 17:30:21 2006 +0000
1.2 +++ b/test/lp_test.cc Wed Nov 29 17:32:03 2006 +0000
1.3 @@ -33,6 +33,10 @@
1.4 #include <lemon/lp_cplex.h>
1.5 #endif
1.6
1.7 +// #ifdef HAVE_SOPLEX
1.8 +// #include <lemon/lp_soplex.h>
1.9 +// #endif
1.10 +
1.11 using namespace lemon;
1.12
1.13 void lpTest(LpSolverBase & lp)
1.14 @@ -354,5 +358,11 @@
1.15 aTest(lp_cplex2);
1.16 #endif
1.17
1.18 +// #ifdef HAVE_SOPLEX
1.19 +// LpSoplex lp_soplex1,lp_soplex2;
1.20 +// lpTest(lp_soplex1);
1.21 +// aTest(lp_soplex2);
1.22 +// #endif
1.23 +
1.24 return 0;
1.25 }