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 LpBase::Value LpBase::INF = std::numeric_limits<Value>::infinity(); |
25 const LpBase::Value LpBase::INF = |
26 const LpBase::Value LpBase::NaN = std::numeric_limits<Value>::quiet_NaN(); |
26 std::numeric_limits<LpBase::Value>::infinity(); |
|
27 const LpBase::Value LpBase::NaN = |
|
28 std::numeric_limits<LpBase::Value>::quiet_NaN(); |
27 |
29 |
28 } //namespace lemon |
30 } //namespace lemon |