Auto Commit

This commit is contained in:
2020-03-30 19:08:56 -06:00
parent 9b1e707382
commit 1e7d497e71

View File

@@ -52,7 +52,7 @@ std::vector<double> MakePermutationMatrix::MakePermutation(std::vector<City> sou
//Push permutation cost to the localCostVector.
localCostVector.push_back(cost);
counter++;
} while (std::next_permutation(myPerm.begin()+1, myPerm.end()));
} 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]);