Changeset 459:ed54c0d13df0 in lemon-1.2 for lemon/lp_base.cc
- Timestamp:
- 12/02/08 22:48:28 (14 years ago)
- Branch:
- default
- Children:
- 460:76ec7bd57026, 502:17cabb114d52
- Phase:
- public
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
lemon/lp_base.cc
r458 r459 23 23 namespace lemon { 24 24 25 const LpSolverBase::Value 26 LpSolverBase::INF = std::numeric_limits<Value>::infinity(); 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(); 25 const LpBase::Value LpBase::INF = std::numeric_limits<Value>::infinity(); 26 const LpBase::Value LpBase::NaN = std::numeric_limits<Value>::quiet_NaN(); 34 27 35 28 } //namespace lemon
Note: See TracChangeset
for help on using the changeset viewer.