lemon/lp_base.cc
changeset 459 ed54c0d13df0
parent 458 7afc121e0689
child 510 bc0a130bbb46
equal deleted inserted replaced
0:2e4b8869982d 1:c4a6b2f8419d
    20 ///\brief The implementation of the LP solver interface.
    20 ///\brief The implementation of the LP solver interface.
    21 
    21 
    22 #include <lemon/lp_base.h>
    22 #include <lemon/lp_base.h>
    23 namespace lemon {
    23 namespace lemon {
    24 
    24 
    25   const LpSolverBase::Value
    25   const LpBase::Value LpBase::INF = std::numeric_limits<Value>::infinity();
    26   LpSolverBase::INF = std::numeric_limits<Value>::infinity();
    26   const LpBase::Value LpBase::NaN = std::numeric_limits<Value>::quiet_NaN();
    27   const LpSolverBase::Value
       
    28   LpSolverBase::NaN = std::numeric_limits<Value>::quiet_NaN();
       
    29 
       
    30 //   const LpSolverBase::Constr::Value
       
    31 //   LpSolverBase::Constr::INF = std::numeric_limits<Value>::infinity();
       
    32 //   const LpSolverBase::Constr::Value
       
    33 //   LpSolverBase::Constr::NaN = std::numeric_limits<Value>::quiet_NaN();
       
    34 
    27 
    35 } //namespace lemon
    28 } //namespace lemon