test/lp_test.cc
changeset 2363 2aabce558574
parent 2345 bfcaad2b84e8
child 2369 6ae1a97055a2
     1.1 --- a/test/lp_test.cc	Thu Feb 15 13:06:23 2007 +0000
     1.2 +++ b/test/lp_test.cc	Thu Feb 15 14:22:08 2007 +0000
     1.3 @@ -33,9 +33,9 @@
     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 +#ifdef HAVE_SOPLEX
    1.11 +#include <lemon/lp_soplex.h>
    1.12 +#endif
    1.13  
    1.14  using namespace lemon;
    1.15  
    1.16 @@ -374,11 +374,11 @@
    1.17    aTest(lp_cplex2);
    1.18  #endif
    1.19  
    1.20 -// #ifdef HAVE_SOPLEX
    1.21 -//   LpSoplex lp_soplex1,lp_soplex2;
    1.22 -//   lpTest(lp_soplex1);
    1.23 -//   aTest(lp_soplex2);
    1.24 -// #endif
    1.25 +#ifdef HAVE_SOPLEX
    1.26 +  LpSoplex lp_soplex1,lp_soplex2;
    1.27 +  lpTest(lp_soplex1);
    1.28 +  aTest(lp_soplex2);
    1.29 +#endif
    1.30  
    1.31    return 0;
    1.32  }