1.3.49
 
Loading...
Searching...
No Matches
Hungarian.h
1#ifndef HUNGARIAN_H
2#define HUNGARIAN_H
3
4#include <cmath>
5#include <limits>
6#include <vector>
7
9public:
10 HungarianAlgorithm() = default;
11 ~HungarianAlgorithm() = default;
12
13 double Solve(const std::vector<std::vector<double>> &DistMatrix, std::vector<int> &Assignment);
14};
15
16#endif // HUNGARIAN_H