COIN-OR::LEMON - Graph Library

source: lemon/lemon/lp.h @ 1343:20f95cd51aba

Last change on this file since 1343:20f95cd51aba was 1340:f70f688d9ef9, checked in by Alpar Juttner <alpar@…>, 9 years ago

Replace #define WIN32 (#595)

File size: 2.5 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 *
[1270]5 * Copyright (C) 2003-2013
[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
[1340]25#if LEMON_DEFAULT_LP == LEMON_GLPK_ || LEMON_DEFAULT_MIP == LEMON_GLPK_
[484]26#include <lemon/glpk.h>
[1323]27#endif
[1340]28#if LEMON_DEFAULT_LP == LEMON_CPLEX_ || LEMON_DEFAULT_MIP == LEMON_CPLEX_
[484]29#include <lemon/cplex.h>
[1323]30#endif
[1340]31#if LEMON_DEFAULT_LP == LEMON_SOPLEX_
[484]32#include <lemon/soplex.h>
[1323]33#endif
[1340]34#if LEMON_DEFAULT_LP == LEMON_CLP_
[484]35#include <lemon/clp.h>
[1323]36#endif
[1340]37#if LEMON_DEFAULT_MIP == LEMON_CBC_
[1300]38#include <lemon/cbc.h>
[481]39#endif
40
41///\file
42///\brief Defines a default LP solver
43///\ingroup lp_group
44namespace lemon {
45
46#ifdef DOXYGEN
47  ///The default LP solver identifier
48
49  ///The default LP solver identifier.
50  ///\ingroup lp_group
51  ///
[1340]52  ///Currently, the possible values are \c LEMON_GLPK_, \c LEMON_CPLEX_,
53  ///\c LEMON_SOPLEX_ or \c LEMON_CLP_
[482]54#define LEMON_DEFAULT_LP SOLVER
[481]55  ///The default LP solver
56
57  ///The default LP solver.
58  ///\ingroup lp_group
59  ///
[485]60  ///Currently, it is either \c GlpkLp, \c CplexLp, \c SoplexLp or \c ClpLp
61  typedef GlpkLp Lp;
[481]62
[482]63  ///The default MIP solver identifier
64
65  ///The default MIP solver identifier.
[481]66  ///\ingroup lp_group
67  ///
[1340]68  ///Currently, the possible values are \c LEMON_GLPK_, \c LEMON_CPLEX_
69  ///or \c LEMON_CBC_
[482]70#define LEMON_DEFAULT_MIP SOLVER
71  ///The default MIP solver.
[481]72
[482]73  ///The default MIP solver.
[481]74  ///\ingroup lp_group
75  ///
[1232]76  ///Currently, it is either \c GlpkMip, \c CplexMip , \c CbcMip
[485]77  typedef GlpkMip Mip;
[481]78#else
[1340]79#if LEMON_DEFAULT_LP == LEMON_GLPK_
[485]80  typedef GlpkLp Lp;
[1340]81#elif LEMON_DEFAULT_LP == LEMON_CPLEX_
[485]82  typedef CplexLp Lp;
[1340]83#elif LEMON_DEFAULT_LP == LEMON_SOPLEX_
[1232]84  typedef SoplexLp Lp;
[1340]85#elif LEMON_DEFAULT_LP == LEMON_CLP_
[1232]86  typedef ClpLp Lp;
87#endif
[1340]88#if LEMON_DEFAULT_MIP == LEMON_GLPK_
[1300]89  typedef GlpkMip Mip;
[1340]90#elif LEMON_DEFAULT_MIP == LEMON_CPLEX_
[485]91  typedef CplexMip Mip;
[1340]92#elif LEMON_DEFAULT_MIP == LEMON_CBC_
[1232]93  typedef CbcMip Mip;
[481]94#endif
95#endif
96
97} //namespace lemon
98
99#endif //LEMON_LP_H
Note: See TracBrowser for help on using the repository browser.