Auto Commit

This commit is contained in:
2020-03-30 15:22:06 -06:00
parent 0cfc261644
commit 0216d0aa48

View File

@@ -29,6 +29,11 @@ std::vector<double> MakePermutationMatrix::MakePermutation(std::vector<City> sou
for(int i = 0; i < source.size(); i++){ for(int i = 0; i < source.size(); i++){
std::cout << source[i].GetName() << " "; 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; std::cout << std::endl;
do { do {
double cost; double cost;