lemon/lp_base.cc
author hegyi
Mon, 21 Nov 2005 18:03:20 +0000
changeset 1823 cb082cdf3667
parent 1364 ee5959aa4410
child 1875 98698b69a902
permissions -rw-r--r--
NewMapWin has become Dialog instead of Window. Therefore it is created dynamically, when there is need for it, instead of keeping one instance in memory. This solution is slower, but more correct than before.
     1 /* -*- C++ -*-
     2  * lemon/lp_base.cc - Part of LEMON, a generic C++ optimization library
     3  *
     4  * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
     5  * (Egervary Research Group on Combinatorial Optimization, EGRES).
     6  *
     7  * Permission to use, modify and distribute this software is granted
     8  * provided that this copyright notice appears in all copies. For
     9  * precise terms see the accompanying LICENSE file.
    10  *
    11  * This software is provided "AS IS" with no warranty of any kind,
    12  * express or implied, and with no claim as to its suitability for any
    13  * purpose.
    14  *
    15  */
    16 
    17 ///\file
    18 ///\brief The implementation of the LP solver interface.
    19 
    20 #include <lemon/lp_base.h>
    21 namespace lemon {
    22   
    23   const LpSolverBase::Value
    24   LpSolverBase::INF = std::numeric_limits<Value>::infinity();
    25   const LpSolverBase::Value
    26   LpSolverBase::NaN = std::numeric_limits<Value>::quiet_NaN();
    27 
    28 //   const LpSolverBase::Constr::Value
    29 //   LpSolverBase::Constr::INF = std::numeric_limits<Value>::infinity();
    30 //   const LpSolverBase::Constr::Value
    31 //   LpSolverBase::Constr::NaN = std::numeric_limits<Value>::quiet_NaN();
    32   
    33 } //namespace lemon