Auto Commit

This commit is contained in:
2020-03-30 15:09:17 -06:00
parent f936586ce5
commit 8b06d9e75f
2 changed files with 1 additions and 14 deletions

View File

@@ -24,7 +24,7 @@ std::vector<double> MakePermutationMatrix::MakePermutation(std::vector<City> sou
//rotate my perm.
std::rotate(myPerm.begin(), myPerm.begin()+offset*rank,myPerm.end());
std::cout << "source.last(): " << source[source.size()-1].GetName() << std::endl;
std::cout << "source.last(): " << source[8].GetName() << std::endl;
std::cout << "source: ";
for(int i = 0; i < source.size(); i++){
std::cout << source[i].GetName() << " ";