Auto Commit

This commit is contained in:
2020-03-30 10:53:12 -06:00
parent 16da93b822
commit 8cce95635c

View File

@@ -13,7 +13,7 @@ std::vector<double> MakePermutationMatrix::MakePermutation(std::vector<City> sou
std::sort(source.begin(), source.end());
std::vector<City> myPerm = source;
std::vector<City> nextPerm = source;
auto offset = myPerm.size()/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.
if(rank)