deba@458: /* -*- mode: C++; indent-tabs-mode: nil; -*-
deba@458:  *
deba@458:  * This file is a part of LEMON, a generic C++ optimization library.
deba@458:  *
alpar@877:  * Copyright (C) 2003-2010
deba@458:  * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
deba@458:  * (Egervary Research Group on Combinatorial Optimization, EGRES).
deba@458:  *
deba@458:  * Permission to use, modify and distribute this software is granted
deba@458:  * provided that this copyright notice appears in all copies. For
deba@458:  * precise terms see the accompanying LICENSE file.
deba@458:  *
deba@458:  * This software is provided "AS IS" with no warranty of any kind,
deba@458:  * express or implied, and with no claim as to its suitability for any
deba@458:  * purpose.
deba@458:  *
deba@458:  */
deba@458: 
deba@458: ///\file
deba@458: ///\brief The implementation of the LP solver interface.
deba@458: 
deba@458: #include <lemon/lp_base.h>
deba@458: namespace lemon {
deba@458: 
alpar@510:   const LpBase::Value LpBase::INF =
alpar@510:     std::numeric_limits<LpBase::Value>::infinity();
alpar@510:   const LpBase::Value LpBase::NaN =
alpar@510:     std::numeric_limits<LpBase::Value>::quiet_NaN();
deba@458: 
deba@458: } //namespace lemon