COIN-OR::LEMON - Graph Library

Changeset 2218:50f1a780a5ff in lemon-0.x for lemon/lp.h


Ignore:
Timestamp:
09/21/06 16:46:28 (18 years ago)
Author:
athos
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@2952
Message:

Interface to the cplex MIP solver: it is little, a bit sour but it is ours.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/lp.h

    r2144 r2218  
    2222#include<lemon/config.h>
    2323
     24
    2425#ifdef HAVE_GLPK
    2526#include <lemon/lp_glpk.h>
     
    2728#elif HAVE_CPLEX
    2829#include <lemon/lp_cplex.h>
     30#include <lemon/mip_cplex.h>
    2931#endif
    3032
     
    3335///\ingroup gen_opt_group
    3436namespace lemon {
    35  
     37
    3638#ifdef DOXYGEN
    3739  ///The default LP solver identifier
     
    7375#define DEFAULT_LP CPLEX
    7476  typedef LpCplex Lp;
     77  typedef MipCplex Mip;
    7578  const char default_solver_name[]="CPLEX";
    7679#endif
Note: See TracChangeset for help on using the changeset viewer.