diff -r 76ec7bd57026 -r 08d495d48089 lemon/lp.h --- a/lemon/lp.h Mon Jan 12 12:25:55 2009 +0000 +++ b/lemon/lp.h Mon Jan 12 12:26:01 2009 +0000 @@ -23,13 +23,13 @@ #ifdef HAVE_GLPK -#include +#include #elif HAVE_CPLEX -#include +#include #elif HAVE_SOPLEX -#include +#include #elif HAVE_CLP -#include +#include #endif ///\file @@ -43,8 +43,8 @@ ///The default LP solver identifier. ///\ingroup lp_group /// - ///Currently, the possible values are \c LP_GLPK, \c LP_CPLEX, \c - ///LP_SOPLEX or \c LP_CLP + ///Currently, the possible values are \c GLPK, \c CPLEX, + ///\c SOPLEX or \c CLP #define LEMON_DEFAULT_LP SOLVER ///The default LP solver @@ -59,7 +59,7 @@ ///The default MIP solver identifier. ///\ingroup lp_group /// - ///Currently, the possible values are \c MIP_GLPK or \c MIP_CPLEX + ///Currently, the possible values are \c GLPK or \c CPLEX #define LEMON_DEFAULT_MIP SOLVER ///The default MIP solver. @@ -70,20 +70,20 @@ typedef MipGlpk Mip; #else #ifdef HAVE_GLPK -# define LEMON_DEFAULT_LP LP_GLPK +# define LEMON_DEFAULT_LP GLPK typedef LpGlpk Lp; -# define LEMON_DEFAULT_MIP MIP_GLPK +# define LEMON_DEFAULT_MIP GLPK typedef MipGlpk Mip; #elif HAVE_CPLEX -# define LEMON_DEFAULT_LP LP_CPLEX +# define LEMON_DEFAULT_LP CPLEX typedef LpCplex Lp; -# define LEMON_DEFAULT_MIP MIP_CPLEX +# define LEMON_DEFAULT_MIP CPLEX typedef MipCplex Mip; #elif HAVE_SOPLEX -# define DEFAULT_LP LP_SOPLEX +# define DEFAULT_LP SOPLEX typedef LpSoplex Lp; #elif HAVE_CLP -# define DEFAULT_LP LP_CLP +# define DEFAULT_LP CLP typedef LpClp Lp; #endif #endif