COIN-OR::LEMON - Graph Library

Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • test/lp_test.cc

    r631 r575  
    2222#include <lemon/tolerance.h>
    2323
     24#ifdef HAVE_CONFIG_H
    2425#include <lemon/config.h>
    25 
    26 #ifdef LEMON_HAVE_GLPK
     26#endif
     27
     28#ifdef HAVE_GLPK
    2729#include <lemon/glpk.h>
    2830#endif
    2931
    30 #ifdef LEMON_HAVE_CPLEX
     32#ifdef HAVE_CPLEX
    3133#include <lemon/cplex.h>
    3234#endif
    3335
    34 #ifdef LEMON_HAVE_SOPLEX
     36#ifdef HAVE_SOPLEX
    3537#include <lemon/soplex.h>
    3638#endif
    3739
    38 #ifdef LEMON_HAVE_CLP
     40#ifdef HAVE_CLP
    3941#include <lemon/clp.h>
    4042#endif
     
    378380  lpTest(lp_skel);
    379381
    380 #ifdef LEMON_HAVE_GLPK
     382#ifdef HAVE_GLPK
    381383  {
    382384    GlpkLp lp_glpk1,lp_glpk2;
     
    387389#endif
    388390
    389 #ifdef LEMON_HAVE_CPLEX
     391#ifdef HAVE_CPLEX
    390392  try {
    391393    CplexLp lp_cplex1,lp_cplex2;
     
    398400#endif
    399401
    400 #ifdef LEMON_HAVE_SOPLEX
     402#ifdef HAVE_SOPLEX
    401403  {
    402404    SoplexLp lp_soplex1,lp_soplex2;
     
    407409#endif
    408410
    409 #ifdef LEMON_HAVE_CLP
     411#ifdef HAVE_CLP
    410412  {
    411413    ClpLp lp_clp1,lp_clp2;
Note: See TracChangeset for help on using the changeset viewer.