diff --git a/tsp_simple.cc b/tsp_simple.cc index 01e25ae..e798ba4 100644 --- a/tsp_simple.cc +++ b/tsp_simple.cc @@ -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) {