remove unsigned >= 0 checks, unused constnat

This commit is contained in:
Moritz Kobitzsch
2017-02-14 10:24:54 +01:00
committed by Daniel J. H
parent e06ffabf21
commit 1ad1ff5fc1
3 changed files with 0 additions and 6 deletions
-2
View File
@@ -74,8 +74,6 @@ std::vector<NodeID> BruteForceTrip(const std::size_t number_of_locations,
BOOST_ASSERT_MSG(*(std::max_element(std::begin(node_order), std::end(node_order))) <
number_of_locations,
"invalid node id");
BOOST_ASSERT_MSG(*(std::min_element(std::begin(node_order), std::end(node_order))) >= 0,
"invalid node id");
do
{
@@ -167,8 +167,6 @@ std::vector<NodeID> FarthestInsertionTrip(const std::size_t number_of_locations,
NodeID max_from = index_of_farthest_distance / number_of_locations;
NodeID max_to = index_of_farthest_distance % number_of_locations;
BOOST_ASSERT(max_from >= 0);
BOOST_ASSERT(max_to >= 0);
BOOST_ASSERT_MSG(static_cast<std::size_t>(max_from) < number_of_locations, "start node");
BOOST_ASSERT_MSG(static_cast<std::size_t>(max_to) < number_of_locations, "start node");
return FindRoute(number_of_locations, dist_table, max_from, max_to);