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