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