| 5 | #include "push_relabel.h" |
| 6 | |
| 7 | int main() { |
| 8 | for (auto fn : flow_networks) { |
| 9 | capacity = fn.capacity; |
| 10 | n = capacity.size(); |
| 11 | |
| 12 | assert(max_flow(fn.source, fn.sink) == fn.maxflow); |
| 13 | } |
| 14 | } |
nothing calls this directly
no outgoing calls
no test coverage detected