test/lp_test.cc
changeset 2367 041878e6f388
parent 2345 bfcaad2b84e8
child 2369 6ae1a97055a2
equal deleted inserted replaced
18:da2f152aba66 19:92249a78b821
    31 
    31 
    32 #ifdef HAVE_CPLEX
    32 #ifdef HAVE_CPLEX
    33 #include <lemon/lp_cplex.h>
    33 #include <lemon/lp_cplex.h>
    34 #endif
    34 #endif
    35 
    35 
    36 // #ifdef HAVE_SOPLEX
    36 #ifdef HAVE_SOPLEX
    37 // #include <lemon/lp_soplex.h>
    37 #include <lemon/lp_soplex.h>
    38 // #endif
    38 #endif
    39 
    39 
    40 using namespace lemon;
    40 using namespace lemon;
    41 
    41 
    42 void lpTest(LpSolverBase & lp)
    42 void lpTest(LpSolverBase & lp)
    43 {
    43 {
   372   LpCplex lp_cplex1,lp_cplex2;
   372   LpCplex lp_cplex1,lp_cplex2;
   373   lpTest(lp_cplex1);
   373   lpTest(lp_cplex1);
   374   aTest(lp_cplex2);
   374   aTest(lp_cplex2);
   375 #endif
   375 #endif
   376 
   376 
   377 // #ifdef HAVE_SOPLEX
   377 #ifdef HAVE_SOPLEX
   378 //   LpSoplex lp_soplex1,lp_soplex2;
   378   LpSoplex lp_soplex1,lp_soplex2;
   379 //   lpTest(lp_soplex1);
   379   lpTest(lp_soplex1);
   380 //   aTest(lp_soplex2);
   380   aTest(lp_soplex2);
   381 // #endif
   381 #endif
   382 
   382 
   383   return 0;
   383   return 0;
   384 }
   384 }