From 0216d0aa48844dcd534a7b78d63998814b1270ab Mon Sep 17 00:00:00 2001 From: bbod Date: Mon, 30 Mar 2020 15:22:06 -0600 Subject: [PATCH] Auto Commit --- HW10/MakePermutationMatrix.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/HW10/MakePermutationMatrix.cpp b/HW10/MakePermutationMatrix.cpp index 2f30d6c..7fa9acb 100644 --- a/HW10/MakePermutationMatrix.cpp +++ b/HW10/MakePermutationMatrix.cpp @@ -29,6 +29,11 @@ std::vector MakePermutationMatrix::MakePermutation(std::vector sou for(int i = 0; i < source.size(); i++){ std::cout << source[i].GetName() << " "; } + std::cout << std::endl << std::endl; + std::cout << "next perm: "; + for(int i = 0; i < nextPerm.size(); i++){ + std::cout << nextPerm[i].GetName() << " "; + } std::cout << std::endl; do { double cost;