Changeset 674:20dac2104519 in lemon for test/lp_test.cc
- Timestamp:
- 04/28/09 14:51:34 (16 years ago)
- Branch:
- default
- Parents:
- 673:58357e986a08 (diff), 540:8a144437db7d (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent. - Phase:
- public
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
test/lp_test.cc
r622 r674 26 26 #endif 27 27 28 #ifdef HAVE_GLPK28 #ifdef LEMON_HAVE_GLPK 29 29 #include <lemon/glpk.h> 30 30 #endif 31 31 32 #ifdef HAVE_CPLEX32 #ifdef LEMON_HAVE_CPLEX 33 33 #include <lemon/cplex.h> 34 34 #endif 35 35 36 #ifdef HAVE_SOPLEX36 #ifdef LEMON_HAVE_SOPLEX 37 37 #include <lemon/soplex.h> 38 38 #endif 39 39 40 #ifdef HAVE_CLP40 #ifdef LEMON_HAVE_CLP 41 41 #include <lemon/clp.h> 42 42 #endif … … 380 380 lpTest(lp_skel); 381 381 382 #ifdef HAVE_GLPK382 #ifdef LEMON_HAVE_GLPK 383 383 { 384 384 GlpkLp lp_glpk1,lp_glpk2; … … 389 389 #endif 390 390 391 #ifdef HAVE_CPLEX391 #ifdef LEMON_HAVE_CPLEX 392 392 try { 393 393 CplexLp lp_cplex1,lp_cplex2; … … 400 400 #endif 401 401 402 #ifdef HAVE_SOPLEX402 #ifdef LEMON_HAVE_SOPLEX 403 403 { 404 404 SoplexLp lp_soplex1,lp_soplex2; … … 409 409 #endif 410 410 411 #ifdef HAVE_CLP411 #ifdef LEMON_HAVE_CLP 412 412 { 413 413 ClpLp lp_clp1,lp_clp2;
Note: See TracChangeset
for help on using the changeset viewer.