CPLEX 9.x support.
3 * This file is a part of LEMON, a generic C++ optimization library
5 * Copyright (C) 2003-2006
6 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
7 * (Egervary Research Group on Combinatorial Optimization, EGRES).
9 * Permission to use, modify and distribute this software is granted
10 * provided that this copyright notice appears in all copies. For
11 * precise terms see the accompanying LICENSE file.
13 * This software is provided "AS IS" with no warranty of any kind,
14 * express or implied, and with no claim as to its suitability for any
22 #include<lemon/config.h>
25 #include <lemon/lp_glpk.h>
26 #include <lemon/mip_glpk.h>
28 #include <lemon/lp_cplex.h>
32 ///\brief Defines a default LP solver
33 ///\ingroup gen_opt_group
37 ///The default LP solver identifier
39 ///The default LP solver identifier.
40 ///\ingroup gen_opt_group
42 ///Currently, the possible values are \c GLPK or \c CPLEX
43 #define DEFAULT_LP SOLVER
44 ///The default LP solver
46 ///The default LP solver.
47 ///\ingroup gen_opt_group
49 ///Currently, it is either \c LpGlpk or \c LpCplex
51 ///The default LP solver identifier string
53 ///The default LP solver identifier string.
54 ///\ingroup gen_opt_group
56 ///Currently, the possible values are "GLPK" or "CPLEX"
57 const char default_solver_name[]="SOLVER";
59 ///The default ILP solver.
61 ///The default ILP solver.
62 ///\ingroup gen_opt_group
64 ///Currently, it is either \c LpGlpk or \c LpCplex
68 #define DEFAULT_LP GLPK
71 const char default_solver_name[]="GLPK";
73 #define DEFAULT_LP CPLEX
75 const char default_solver_name[]="CPLEX";
81 #endif //LEMON_LP_BASE_H