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>
27 #include <lemon/lp_cplex.h>
31 ///\brief Defines a default LP solver
32 ///\ingroup gen_opt_group
36 ///The default LP solver identifier
38 ///The default LP solver identifier.
39 ///\ingroup gen_opt_group
41 ///Currently, the possible values are \c GLPK or \c CPLEX
42 #define DEFAULT_LP SOLVER
43 ///The default LP solver
45 ///The default LP solver.
46 ///\ingroup gen_opt_group
48 ///Currently, it is either \c LpGlpk or \c LpCplex
50 ///The default LP solver identifier string
52 ///The default LP solver identifier string.
53 ///\ingroup gen_opt_group
55 ///Currently, the possible values are "GLPK" or "CPLEX"
56 const char default_solver_name[]="SOLVER";
59 #define DEFAULT_LP GLPK
61 const char default_solver_name[]="GLPK";
63 #define DEFAULT_LP CPLEX
65 const char default_solver_name[]="CPLEX";
71 #endif //LEMON_LP_BASE_H