MCPcopy Create free account
hub / github.com/BirolLab/abyss / AllPathsSearchTest

Method AllPathsSearchTest

Unittest/Graph/AllPathsSearchTest.cpp:29–53  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

27 Graph multiPathGraph;
28
29 AllPathsSearchTest() {
30
31 add_edge(0, 1, disconnectedGraph);
32 add_vertex(disconnectedGraph);
33
34 add_edge(0, 1, simpleAcyclicGraph);
35 add_edge(0, 2, simpleAcyclicGraph);
36 add_edge(2, 3, simpleAcyclicGraph);
37
38 add_edge(0, 1, simpleCyclicGraph);
39 add_edge(0, 4, simpleCyclicGraph);
40 add_edge(1, 2, simpleCyclicGraph);
41 add_edge(2, 1, simpleCyclicGraph);
42 add_edge(1, 3, simpleCyclicGraph);
43
44 add_edge(0, 1, multiPathGraph);
45 add_edge(1, 2, multiPathGraph);
46 add_edge(1, 3, multiPathGraph);
47 add_edge(2, 3, multiPathGraph);
48 add_edge(3, 4, multiPathGraph);
49 add_edge(3, 5, multiPathGraph);
50 add_edge(4, 5, multiPathGraph);
51 add_edge(5, 6, multiPathGraph);
52
53 }
54
55};
56

Callers

nothing calls this directly

Calls 2

add_edgeFunction · 0.50
add_vertexFunction · 0.50

Tested by

no test coverage detected