From 33867bb94877c8da1f2f580035944ce56302291d Mon Sep 17 00:00:00 2001 From: Mayank Mamgain <56592363+Mayank17M@users.noreply.github.com> Date: Fri, 10 Sep 2021 12:32:51 +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 bf5fe635b..5e9adcdc0 100644 --- a/graph/travelling_salesman_problem.cpp +++ b/graph/travelling_salesman_problem.cpp @@ -89,7 +89,7 @@ static void tests() { cities = {{0, 5, 10, 15}, {5, 0, 20, 30}, {10, 20, 0, 35}, {15, 30, 35, 0}}; V = cities.size(); assert(graph::TravellingSalesmanProblem(&cities, 0, V) == 75); - std::cout << "Test 2 Passed..." << std::endl; + std::cout << "2nd test passed..." << std::endl; std::cout << "Initiating Test 3..." << std::endl; cities = {