athos@1247: /* -*- C++ -*- athos@1247: * alpar@1956: * This file is a part of LEMON, a generic C++ optimization library alpar@1956: * alpar@1956: * Copyright (C) 2003-2006 alpar@1956: * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport alpar@1359: * (Egervary Research Group on Combinatorial Optimization, 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: ladanyi@1305: #include athos@1246: namespace lemon { alpar@1256: alpar@1256: const LpSolverBase::Value alpar@1256: LpSolverBase::INF = std::numeric_limits::infinity(); alpar@1264: const LpSolverBase::Value alpar@1264: LpSolverBase::NaN = std::numeric_limits::quiet_NaN(); alpar@1253: alpar@1364: // const LpSolverBase::Constr::Value alpar@1364: // LpSolverBase::Constr::INF = std::numeric_limits::infinity(); alpar@1364: // const LpSolverBase::Constr::Value alpar@1364: // LpSolverBase::Constr::NaN = std::numeric_limits::quiet_NaN(); alpar@1272: athos@1246: } //namespace lemon