| author | Gabor Gevay <ggab90@gmail.com> | 
| Sun, 05 Jan 2014 22:24:56 +0100 | |
| changeset 1336 | 0759d974de81 | 
| parent 956 | 141f9c0db4a3 | 
| permissions | -rw-r--r-- | 
| deba@481 | 1 | /* -*- mode: C++; indent-tabs-mode: nil; -*- | 
| deba@481 | 2 | * | 
| deba@481 | 3 | * This file is a part of LEMON, a generic C++ optimization library. | 
| deba@481 | 4 | * | 
| alpar@1270 | 5 | * Copyright (C) 2003-2013 | 
| deba@481 | 6 | * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport | 
| deba@481 | 7 | * (Egervary Research Group on Combinatorial Optimization, EGRES). | 
| deba@481 | 8 | * | 
| deba@481 | 9 | * Permission to use, modify and distribute this software is granted | 
| deba@481 | 10 | * provided that this copyright notice appears in all copies. For | 
| deba@481 | 11 | * precise terms see the accompanying LICENSE file. | 
| deba@481 | 12 | * | 
| deba@481 | 13 | * This software is provided "AS IS" with no warranty of any kind, | 
| deba@481 | 14 | * express or implied, and with no claim as to its suitability for any | 
| deba@481 | 15 | * purpose. | 
| deba@481 | 16 | * | 
| deba@481 | 17 | */ | 
| deba@481 | 18 | |
| deba@481 | 19 | ///\file | 
| deba@481 | 20 | ///\brief The implementation of the LP solver interface. | 
| deba@481 | 21 | |
| deba@481 | 22 | #include <lemon/lp_base.h> | 
| deba@481 | 23 | namespace lemon {
 | 
| deba@481 | 24 | |
| alpar@557 | 25 | const LpBase::Value LpBase::INF = | 
| alpar@557 | 26 | std::numeric_limits<LpBase::Value>::infinity(); | 
| alpar@557 | 27 | const LpBase::Value LpBase::NaN = | 
| alpar@557 | 28 | std::numeric_limits<LpBase::Value>::quiet_NaN(); | 
| deba@481 | 29 | |
| deba@481 | 30 | } //namespace lemon |