Auto Commit

This commit is contained in:
2020-03-31 00:41:53 -06:00
parent 30458e0e6d
commit 6351c5058d
11 changed files with 51 additions and 6 deletions

View File

@@ -10,10 +10,10 @@
class MakePermutationMatrix
{
public:
long double GetLowestCost(std::vector<City> source, int rank, int size, std::vector<std::vector<double>> costMatrix);
static long double GetLowestCost(std::vector<City> source, int rank, int size, std::vector<std::vector<double>> costMatrix);
private:
long double MakePermutation(std::vector<City> source, int rank, int size, std::vector<std::vector<double>> costMatrix);
static long double MakePermutation(std::vector<City> source, int rank, int size, std::vector<std::vector<double>> costMatrix);
};
#endif // HW10_MAKEPERMUTATIONMATRIX_H