1 /* -*- mode: C++; indent-tabs-mode: nil; -*-
3 * This file is a part of LEMON, a generic C++ optimization library.
5 * Copyright (C) 2003-2008
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>
26 #include <lemon/lp_glpk.h>
28 #include <lemon/lp_cplex.h>
30 #include <lemon/lp_soplex.h>
32 #include <lemon/lp_clp.h>
36 ///\brief Defines a default LP solver
41 ///The default LP solver identifier
43 ///The default LP solver identifier.
46 ///Currently, the possible values are \c LP_GLPK, \c LP_CPLEX, \c
47 ///LP_SOPLEX or \c LP_CLP
48 #define LEMON_DEFAULT_LP SOLVER
49 ///The default LP solver
51 ///The default LP solver.
54 ///Currently, it is either \c LpGlpk, \c LpCplex, \c LpSoplex or \c LpClp
57 ///The default MIP solver identifier
59 ///The default MIP solver identifier.
62 ///Currently, the possible values are \c MIP_GLPK or \c MIP_CPLEX
63 #define LEMON_DEFAULT_MIP SOLVER
64 ///The default MIP solver.
66 ///The default MIP solver.
69 ///Currently, it is either \c MipGlpk or \c MipCplex
73 # define LEMON_DEFAULT_LP LP_GLPK
75 # define LEMON_DEFAULT_MIP MIP_GLPK
78 # define LEMON_DEFAULT_LP LP_CPLEX
80 # define LEMON_DEFAULT_MIP MIP_CPLEX
83 # define DEFAULT_LP LP_SOPLEX
86 # define DEFAULT_LP LP_CLP