Auto Commit

This commit is contained in:
2020-03-30 11:05:59 -06:00
parent e3e4fd46e4
commit 02e5132a3d

View File

@@ -39,7 +39,7 @@ std::vector<double> MakePermutationMatrix::MakePermutation(std::vector<City> sou
std::cout << std::endl;
//Push permutation cost to the localCostVector.
localCostVector.push_back(cost);
} while (std::next_permutation(myPerm.begin(), myPerm.end()) && myPerm != nextPerm);
} while (std::next_permutation(myPerm.begin(), myPerm.end()) );
// //find the lowest and add it to a lowest vector.
// auto lowest = std::vector<double>(1,localCostVector[0]);