COIN-OR::LEMON - Graph Library

Changeset 1323:5de6a70446f6 in lemon


Ignore:
Timestamp:
07/09/14 14:41:36 (10 years ago)
Author:
Alpar Juttner <alpar@…>
Branch:
default
Children:
1325:1d80ec7d17eb, 1330:1ad592289f93
Phase:
public
Message:

Fix buggy include logic in lemon/lp.h (#503)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/lp.h

    r1306 r1323  
    2323
    2424
    25 #ifdef LEMON_HAVE_GLPK
     25#if LEMON_DEFAULT_LP == _LEMON_GLPK || LEMON_DEFAULT_MIP == _LEMON_GLPK
    2626#include <lemon/glpk.h>
    27 #elif LEMON_HAVE_CPLEX
     27#endif
     28#if LEMON_DEFAULT_LP == _LEMON_CPLEX || LEMON_DEFAULT_MIP == _LEMON_CPLEX
    2829#include <lemon/cplex.h>
    29 #elif LEMON_HAVE_SOPLEX
     30#endif
     31#if LEMON_DEFAULT_LP == _LEMON_SOPLEX
    3032#include <lemon/soplex.h>
    31 #elif LEMON_HAVE_CLP
     33#endif
     34#if LEMON_DEFAULT_LP == _LEMON_CLP
    3235#include <lemon/clp.h>
    33 #elif LEMON_HAVE_CBC
     36#endif
     37#if LEMON_DEFAULT_MIP == _LEMON_CBC
    3438#include <lemon/cbc.h>
    3539#endif
Note: See TracChangeset for help on using the changeset viewer.