Changes in test/lp_test.cc [575:3cbddc293cf9:631:d21b38647e53] in lemon-main
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
test/lp_test.cc
r575 r631 22 22 #include <lemon/tolerance.h> 23 23 24 #ifdef HAVE_CONFIG_H25 24 #include <lemon/config.h> 26 #endif 27 28 #ifdef HAVE_GLPK 25 26 #ifdef LEMON_HAVE_GLPK 29 27 #include <lemon/glpk.h> 30 28 #endif 31 29 32 #ifdef HAVE_CPLEX30 #ifdef LEMON_HAVE_CPLEX 33 31 #include <lemon/cplex.h> 34 32 #endif 35 33 36 #ifdef HAVE_SOPLEX34 #ifdef LEMON_HAVE_SOPLEX 37 35 #include <lemon/soplex.h> 38 36 #endif 39 37 40 #ifdef HAVE_CLP38 #ifdef LEMON_HAVE_CLP 41 39 #include <lemon/clp.h> 42 40 #endif … … 380 378 lpTest(lp_skel); 381 379 382 #ifdef HAVE_GLPK380 #ifdef LEMON_HAVE_GLPK 383 381 { 384 382 GlpkLp lp_glpk1,lp_glpk2; … … 389 387 #endif 390 388 391 #ifdef HAVE_CPLEX389 #ifdef LEMON_HAVE_CPLEX 392 390 try { 393 391 CplexLp lp_cplex1,lp_cplex2; … … 400 398 #endif 401 399 402 #ifdef HAVE_SOPLEX400 #ifdef LEMON_HAVE_SOPLEX 403 401 { 404 402 SoplexLp lp_soplex1,lp_soplex2; … … 409 407 #endif 410 408 411 #ifdef HAVE_CLP409 #ifdef LEMON_HAVE_CLP 412 410 { 413 411 ClpLp lp_clp1,lp_clp2;
Note: See TracChangeset
for help on using the changeset viewer.