Skip to content

Commit

Permalink
Remove debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
Pierre-Graber authored and alain-andre committed Jan 19, 2023
1 parent 43f8bd6 commit 5249cf9
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions tsp_simple.cc
Original file line number Diff line number Diff line change
Expand Up @@ -729,8 +729,6 @@ void RelationBuilder(const TSPTWDataDT& data, RoutingModel& routing,
current_index = data.IdIndex(relation.linked_ids[link_index]);
alternative_size = data.AlternativeSize(current_index);
}
std::cout << "alternative_size :" << alternative_size
<< " current_index : " << current_index << std::endl;
for (int64_t alternative_index = current_index;
alternative_index < current_index + alternative_size; ++alternative_index) {
for (std::size_t v = 0; v < data.Vehicles().size(); ++v) {
Expand Down

0 comments on commit 5249cf9

Please sign in to comment.