equal
deleted
inserted
replaced
24 #ifdef HAVE_CONFIG_H |
24 #ifdef HAVE_CONFIG_H |
25 #include <lemon/config.h> |
25 #include <lemon/config.h> |
26 #endif |
26 #endif |
27 |
27 |
28 #ifdef HAVE_GLPK |
28 #ifdef HAVE_GLPK |
29 #include <lemon/lp_glpk.h> |
29 #include <lemon/glpk.h> |
30 #endif |
30 #endif |
31 |
31 |
32 #ifdef HAVE_CPLEX |
32 #ifdef HAVE_CPLEX |
33 #include <lemon/lp_cplex.h> |
33 #include <lemon/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/soplex.h> |
38 #endif |
38 #endif |
39 |
39 |
40 #ifdef HAVE_CLP |
40 #ifdef HAVE_CLP |
41 #include <lemon/lp_clp.h> |
41 #include <lemon/clp.h> |
42 #endif |
42 #endif |
43 |
43 |
44 using namespace lemon; |
44 using namespace lemon; |
45 |
45 |
46 void lpTest(LpSolver& lp) |
46 void lpTest(LpSolver& lp) |