... | ... |
@@ -19,10 +19,12 @@ |
19 | 19 |
///\file |
20 | 20 |
///\brief The implementation of the LP solver interface. |
21 | 21 |
|
22 | 22 |
#include <lemon/lp_base.h> |
23 | 23 |
namespace lemon { |
24 | 24 |
|
25 |
const LpBase::Value LpBase::INF = std::numeric_limits<Value>::infinity(); |
|
26 |
const LpBase::Value LpBase::NaN = std::numeric_limits<Value>::quiet_NaN(); |
|
25 |
const LpBase::Value LpBase::INF = |
|
26 |
std::numeric_limits<LpBase::Value>::infinity(); |
|
27 |
const LpBase::Value LpBase::NaN = |
|
28 |
std::numeric_limits<LpBase::Value>::quiet_NaN(); |
|
27 | 29 |
|
28 | 30 |
} //namespace lemon |
0 comments (0 inline)