equal
deleted
inserted
replaced
30 #endif |
30 #endif |
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 |
|
36 // #ifdef HAVE_SOPLEX |
|
37 // #include <lemon/lp_soplex.h> |
|
38 // #endif |
35 |
39 |
36 using namespace lemon; |
40 using namespace lemon; |
37 |
41 |
38 void lpTest(LpSolverBase & lp) |
42 void lpTest(LpSolverBase & lp) |
39 { |
43 { |
352 LpCplex lp_cplex1,lp_cplex2; |
356 LpCplex lp_cplex1,lp_cplex2; |
353 lpTest(lp_cplex1); |
357 lpTest(lp_cplex1); |
354 aTest(lp_cplex2); |
358 aTest(lp_cplex2); |
355 #endif |
359 #endif |
356 |
360 |
|
361 // #ifdef HAVE_SOPLEX |
|
362 // LpSoplex lp_soplex1,lp_soplex2; |
|
363 // lpTest(lp_soplex1); |
|
364 // aTest(lp_soplex2); |
|
365 // #endif |
|
366 |
357 return 0; |
367 return 0; |
358 } |
368 } |