Auto Commit

This commit is contained in:
2020-03-30 11:00:29 -06:00
parent d671d1da25
commit 36df98460a

View File

@@ -34,7 +34,7 @@ std::vector<double> MakePermutationMatrix::MakePermutation(std::vector<City> 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.