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