MCPcopy Create free account
hub / github.com/cp-algorithms/cp-algorithms / main

Function main

test/test_spfa.cpp:10–17  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

8#include "data/sssp.h"
9
10int 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}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected