From b6e377a3924de0a44736843468cf7ca0eb54b518 Mon Sep 17 00:00:00 2001 From: bbod Date: Mon, 30 Mar 2020 10:45:08 -0600 Subject: [PATCH] Auto Commit --- HW10/MakePermutationMatrix.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/HW10/MakePermutationMatrix.cpp b/HW10/MakePermutationMatrix.cpp index 41e15a1..e675ad7 100644 --- a/HW10/MakePermutationMatrix.cpp +++ b/HW10/MakePermutationMatrix.cpp @@ -28,6 +28,7 @@ std::vector MakePermutationMatrix::MakePermutation(std::vector sou do { double cost; //Add up the cost of the current permutation. + std::cout << "in the Do While" << std::endl; for (int i = 1; i < myPerm.size(); i++) { cost += costMatrix[myPerm[i].GetName()][myPerm[i-1].GetName()]; std::cout << myPerm[i].GetName() << " ";