COIN-OR::LEMON - Graph Library

source: lemon/lemon/lp.h @ 956:141f9c0db4a3

Last change on this file since 956:141f9c0db4a3 was 956:141f9c0db4a3, checked in by Alpar Juttner <alpar@…>, 14 years ago

Unify the sources (#339)

File size: 2.2 KB
RevLine 
[481]1/* -*- mode: C++; indent-tabs-mode: nil; -*-
2 *
3 * This file is a part of LEMON, a generic C++ optimization library.
4 *
[956]5 * Copyright (C) 2003-2010
[481]6 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
7 * (Egervary Research Group on Combinatorial Optimization, EGRES).
8 *
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.
12 *
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
15 * purpose.
16 *
17 */
18
19#ifndef LEMON_LP_H
20#define LEMON_LP_H
21
22#include<lemon/config.h>
23
24
[674]25#ifdef LEMON_HAVE_GLPK
[484]26#include <lemon/glpk.h>
[674]27#elif LEMON_HAVE_CPLEX
[484]28#include <lemon/cplex.h>
[674]29#elif LEMON_HAVE_SOPLEX
[484]30#include <lemon/soplex.h>
[674]31#elif LEMON_HAVE_CLP
[484]32#include <lemon/clp.h>
[481]33#endif
34
35///\file
36///\brief Defines a default LP solver
37///\ingroup lp_group
38namespace lemon {
39
40#ifdef DOXYGEN
41  ///The default LP solver identifier
42
43  ///The default LP solver identifier.
44  ///\ingroup lp_group
45  ///
[484]46  ///Currently, the possible values are \c GLPK, \c CPLEX,
47  ///\c SOPLEX or \c CLP
[482]48#define LEMON_DEFAULT_LP SOLVER
[481]49  ///The default LP solver
50
51  ///The default LP solver.
52  ///\ingroup lp_group
53  ///
[485]54  ///Currently, it is either \c GlpkLp, \c CplexLp, \c SoplexLp or \c ClpLp
55  typedef GlpkLp Lp;
[481]56
[482]57  ///The default MIP solver identifier
58
59  ///The default MIP solver identifier.
[481]60  ///\ingroup lp_group
61  ///
[484]62  ///Currently, the possible values are \c GLPK or \c CPLEX
[482]63#define LEMON_DEFAULT_MIP SOLVER
64  ///The default MIP solver.
[481]65
[482]66  ///The default MIP solver.
[481]67  ///\ingroup lp_group
68  ///
[485]69  ///Currently, it is either \c GlpkMip or \c CplexMip
70  typedef GlpkMip Mip;
[481]71#else
[674]72#ifdef LEMON_HAVE_GLPK
[484]73# define LEMON_DEFAULT_LP GLPK
[485]74  typedef GlpkLp Lp;
[484]75# define LEMON_DEFAULT_MIP GLPK
[485]76  typedef GlpkMip Mip;
[674]77#elif LEMON_HAVE_CPLEX
[484]78# define LEMON_DEFAULT_LP CPLEX
[485]79  typedef CplexLp Lp;
[484]80# define LEMON_DEFAULT_MIP CPLEX
[485]81  typedef CplexMip Mip;
[674]82#elif LEMON_HAVE_SOPLEX
[484]83# define DEFAULT_LP SOPLEX
[485]84  typedef SoplexLp Lp;
[674]85#elif LEMON_HAVE_CLP
[484]86# define DEFAULT_LP CLP
[956]87  typedef ClpLp Lp;
[481]88#endif
89#endif
90
91} //namespace lemon
92
93#endif //LEMON_LP_H
Note: See TracBrowser for help on using the repository browser.