Backing up

This commit is contained in:
2020-03-29 15:39:26 -06:00
parent 6474ac5d21
commit 0b393b2581
63 changed files with 3755 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
//
// Created by Brady Bodily on 3/28/20.
//
#ifndef HW10_MAKEPERMUTATIONMATRIX_H
#define HW10_MAKEPERMUTATIONMATRIX_H
#include "City.h"
#include <vector>
class MakePermutationMatrix {
public:
static std::vector<std::vector<City>> MakePermutation(std::vector<City> source, int rank, int size);
};
#endif // HW10_MAKEPERMUTATIONMATRIX_H