From a65e85e79a1a570d14c55c8880c04bbf87b2e907 Mon Sep 17 00:00:00 2001 From: Mayank Mamgain <56592363+Mayank17M@users.noreply.github.com> Date: Fri, 10 Sep 2021 12:32:59 +0530 Subject: [PATCH] Update graph/travelling_salesman_problem.cpp Co-authored-by: David Leal --- graph/travelling_salesman_problem.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graph/travelling_salesman_problem.cpp b/graph/travelling_salesman_problem.cpp index 5e9adcdc0..1cf5466c8 100644 --- a/graph/travelling_salesman_problem.cpp +++ b/graph/travelling_salesman_problem.cpp @@ -96,7 +96,7 @@ static void tests() { {0, 10, 15, 20}, {10, 0, 35, 25}, {15, 35, 0, 30}, {20, 25, 30, 0}}; V = cities.size(); assert(graph::TravellingSalesmanProblem(&cities, 0, V) == 80); - std::cout << "Test 3 Passed..." << std::endl; + std::cout << "3rd test passed..." << std::endl; } /**