equal
deleted
inserted
replaced
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 |