| 8 | #include "data/sssp.h" |
| 9 | |
| 10 | int main() { |
| 11 | for (auto const& graph : sssp_graphs) { |
| 12 | adj = graph.adj; |
| 13 | vector<int> d; |
| 14 | spfa(graph.s, d); |
| 15 | assert(d == graph.expected_d); |
| 16 | } |
| 17 | } |
nothing calls this directly
no outgoing calls
no test coverage detected