| author | Alpar Juttner <alpar@cs.elte.hu> | 
| Mon, 23 Feb 2009 11:30:15 +0000 | |
| changeset 570 | d9e43511d11c | 
| parent 482 | ed54c0d13df0 | 
| child 956 | 141f9c0db4a3 | 
| child 1081 | f1398882a928 | 
| 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  | 
*  | 
| deba@481 | 5  | 
* Copyright (C) 2003-2008  | 
| 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  |