| 22 | #include "Graph.h" |
| 23 | |
| 24 | MatchingAlgorithm::MatchingAlgorithm(Graph *g, Matching *m, float goal) |
| 25 | : TheGraph(g), TheMatching(m) { |
| 26 | setGoal(goal); |
| 27 | } |
| 28 | |
| 29 | void MatchingAlgorithm::setGoal(float goal) { |
| 30 | // if goal is 100.0 and the graph has an odd number of vertices the algorithm |
nothing calls this directly
no outgoing calls
no test coverage detected