diff --git a/HW10/MakePermutationMatrix.cpp b/HW10/MakePermutationMatrix.cpp index 97fd3c8..e2d408f 100644 --- a/HW10/MakePermutationMatrix.cpp +++ b/HW10/MakePermutationMatrix.cpp @@ -34,7 +34,7 @@ std::vector MakePermutationMatrix::MakePermutation(std::vector sou for (int i = 1; i < myPerm.size(); i++) { cost += costMatrix[myPerm[i].GetName()][myPerm[i-1].GetName()]; - std::cout << " rank " << rank << myPerm[i].GetName() << " "; + std::cout << " rank " << rank << " name " << myPerm[i].GetName() << " "; } std::cout << std::endl; //Push permutation cost to the localCostVector.