// // Created by Brady Bodily on 3/28/20. // #ifndef HW10_MAKEPERMUTATIONMATRIX_H #define HW10_MAKEPERMUTATIONMATRIX_H #include "City.h" #include class MakePermutationMatrix { public: static std::vector> GetLowestCost(std::vector source, int rank, int size, std::vector> costMatrix); private: static std::vector> MakePermutation(std::vector source, int rank, int size); }; #endif // HW10_MAKEPERMUTATIONMATRIX_H