/* -*- mode: C++; indent-tabs-mode: nil; -*-
* This file is a part of LEMON, a generic C++ optimization library.
* Copyright (C) 2003-2010
* Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
* (Egervary Research Group on Combinatorial Optimization, EGRES).
* Permission to use, modify and distribute this software is granted
* provided that this copyright notice appears in all copies. For
* precise terms see the accompanying LICENSE file.
* This software is provided "AS IS" with no warranty of any kind,
* express or implied, and with no claim as to its suitability for any
#include <lemon/soplex.h>
///\brief Defines a default LP solver
///The default LP solver identifier
///The default LP solver identifier.
///Currently, the possible values are \c GLPK, \c CPLEX,
#define LEMON_DEFAULT_LP SOLVER
///The default LP solver.
///Currently, it is either \c GlpkLp, \c CplexLp, \c SoplexLp or \c ClpLp
///The default MIP solver identifier
///The default MIP solver identifier.
///Currently, the possible values are \c GLPK or \c CPLEX
#define LEMON_DEFAULT_MIP SOLVER
///The default MIP solver.
///The default MIP solver.
///Currently, it is either \c GlpkMip or \c CplexMip
# define LEMON_DEFAULT_LP GLPK
# define LEMON_DEFAULT_MIP GLPK
# define LEMON_DEFAULT_LP CPLEX
# define LEMON_DEFAULT_MIP CPLEX
# define DEFAULT_LP SOPLEX