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