equal
deleted
inserted
replaced
1 /* -*- mode: C++; indent-tabs-mode: nil; -*- |
1 /* -*- mode: C++; indent-tabs-mode: nil; -*- |
2 * |
2 * |
3 * This file is a part of LEMON, a generic C++ optimization library. |
3 * This file is a part of LEMON, a generic C++ optimization library. |
4 * |
4 * |
5 * Copyright (C) 2003-2008 |
5 * Copyright (C) 2003-2010 |
6 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport |
6 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport |
7 * (Egervary Research Group on Combinatorial Optimization, EGRES). |
7 * (Egervary Research Group on Combinatorial Optimization, EGRES). |
8 * |
8 * |
9 * Permission to use, modify and distribute this software is granted |
9 * Permission to use, modify and distribute this software is granted |
10 * provided that this copyright notice appears in all copies. For |
10 * provided that this copyright notice appears in all copies. For |
82 #elif LEMON_HAVE_SOPLEX |
82 #elif LEMON_HAVE_SOPLEX |
83 # define DEFAULT_LP SOPLEX |
83 # define DEFAULT_LP SOPLEX |
84 typedef SoplexLp Lp; |
84 typedef SoplexLp Lp; |
85 #elif LEMON_HAVE_CLP |
85 #elif LEMON_HAVE_CLP |
86 # define DEFAULT_LP CLP |
86 # define DEFAULT_LP CLP |
87 typedef ClpLp Lp; |
87 typedef ClpLp Lp; |
88 #endif |
88 #endif |
89 #endif |
89 #endif |
90 |
90 |
91 } //namespace lemon |
91 } //namespace lemon |
92 |
92 |