/* -*- mode: C++; indent-tabs-mode: nil; -*-
* This file is a part of LEMON, a generic C++ optimization library.
* Copyright (C) 2003-2008
* 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/lp_glpk.h>
#include <lemon/mip_glpk.h>
#include <lemon/lp_cplex.h>
#include <lemon/mip_cplex.h>
#include <lemon/lp_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 or \c CPLEX
#define DEFAULT_LP SOLVER
///The default LP solver.
///Currently, it is either \c LpGlpk or \c LpCplex
///The default LP solver identifier string
///The default LP solver identifier string.
///Currently, the possible values are "GLPK" or "CPLEX"
const char default_solver_name[]="SOLVER";
///The default ILP solver.
///The default ILP solver.
///Currently, it is either \c LpGlpk or \c LpCplex
const char default_solver_name[]="GLPK";
const char default_solver_name[]="CPLEX";
#define DEFAULT_LP SOPLEX
const char default_solver_name[]="SOPLEX";