replace UINT_MAX with proper numeric limits call
This commit is contained in:
parent
5b22dffa6f
commit
7bf74c0917
@ -198,7 +198,7 @@ class BinaryHeap
|
|||||||
|
|
||||||
void DecreaseKey(NodeID node, Weight weight)
|
void DecreaseKey(NodeID node, Weight weight)
|
||||||
{
|
{
|
||||||
BOOST_ASSERT(UINT_MAX != node);
|
BOOST_ASSERT(std::numeric_limits<NodeID>::max() != node);
|
||||||
const Key &index = node_index[node];
|
const Key &index = node_index[node];
|
||||||
Key &key = inserted_nodes[index].key;
|
Key &key = inserted_nodes[index].key;
|
||||||
BOOST_ASSERT(key >= 0);
|
BOOST_ASSERT(key >= 0);
|
||||||
|
Loading…
Reference in New Issue
Block a user