lemon/lp.h
changeset 2218 50f1a780a5ff
parent 2144 cd8897f67c26
child 2221 c7261e981330
     1.1 --- a/lemon/lp.h	Thu Sep 14 19:58:29 2006 +0000
     1.2 +++ b/lemon/lp.h	Thu Sep 21 14:46:28 2006 +0000
     1.3 @@ -21,18 +21,20 @@
     1.4  
     1.5  #include<lemon/config.h>
     1.6  
     1.7 +
     1.8  #ifdef HAVE_GLPK
     1.9  #include <lemon/lp_glpk.h>
    1.10  #include <lemon/mip_glpk.h>
    1.11  #elif HAVE_CPLEX
    1.12  #include <lemon/lp_cplex.h>
    1.13 +#include <lemon/mip_cplex.h>
    1.14  #endif
    1.15  
    1.16  ///\file
    1.17  ///\brief Defines a default LP solver
    1.18  ///\ingroup gen_opt_group
    1.19  namespace lemon {
    1.20 - 
    1.21 +
    1.22  #ifdef DOXYGEN
    1.23    ///The default LP solver identifier
    1.24  
    1.25 @@ -72,6 +74,7 @@
    1.26  #elif HAVE_CPLEX
    1.27  #define DEFAULT_LP CPLEX
    1.28    typedef LpCplex Lp;
    1.29 +  typedef MipCplex Mip;
    1.30    const char default_solver_name[]="CPLEX";
    1.31  #endif
    1.32  #endif