Auto Commit

This commit is contained in:
2020-03-30 15:18:20 -06:00
parent 76e45ff680
commit ee0999ad05

View File

@@ -13,7 +13,7 @@ std::vector<double> MakePermutationMatrix::MakePermutation(std::vector<City> sou
std::sort(source.begin(), source.end()); std::sort(source.begin(), source.end());
std::vector<City> myPerm = source; std::vector<City> myPerm = source;
std::vector<City> nextPerm = source; std::vector<City> nextPerm = source;
std::cout << myPerm.size() <<std::endl; std::cout << "!!!!!!!!!!!!!! "<< myPerm.size() <<std::endl;
auto offset = (myPerm.size()+1)/size; auto offset = (myPerm.size()+1)/size;
//return vector should be the size of number of processors as they are going to only return their own smallest. //return vector should be the size of number of processors as they are going to only return their own smallest.