Backing up
This commit is contained in:
17
HW10/CostMatrixGenerator.h
Normal file
17
HW10/CostMatrixGenerator.h
Normal file
@@ -0,0 +1,17 @@
|
||||
//
|
||||
// Created by Brady Bodily on 3/29/20.
|
||||
//
|
||||
|
||||
#ifndef HW10_COSTMATRIXGENERATOR_H
|
||||
#define HW10_COSTMATRIXGENERATOR_H
|
||||
|
||||
#include "City.h"
|
||||
#include <cmath>
|
||||
#include <vector>
|
||||
class CostMatrixGenerator
|
||||
{
|
||||
public:
|
||||
static std::vector<std::vector<double>> GenerateCostMatrix(std::vector<City> cities);
|
||||
};
|
||||
|
||||
#endif //HW10_COSTMATRIXGENERATOR_H
|
||||
Reference in New Issue
Block a user