Home
last modified time | relevance | path

Searched refs:expectedClosure (Results 1 – 2 of 2) sorted by relevance

/external/guava/android/guava-tests/test/com/google/common/graph/
DGraphsTest.java73 MutableGraph<Integer> expectedClosure = GraphBuilder.directed().allowsSelfLoops(true).build(); in transitiveClosure_directedGraph() local
74 expectedClosure.putEdge(N1, N1); in transitiveClosure_directedGraph()
75 expectedClosure.putEdge(N1, N2); in transitiveClosure_directedGraph()
76 expectedClosure.putEdge(N1, N3); in transitiveClosure_directedGraph()
77 expectedClosure.putEdge(N2, N2); in transitiveClosure_directedGraph()
78 expectedClosure.putEdge(N2, N3); in transitiveClosure_directedGraph()
79 expectedClosure.putEdge(N3, N3); in transitiveClosure_directedGraph()
80 expectedClosure.putEdge(N4, N4); in transitiveClosure_directedGraph()
82 checkTransitiveClosure(directedGraph, expectedClosure); in transitiveClosure_directedGraph()
94 MutableGraph<Integer> expectedClosure = GraphBuilder.undirected().allowsSelfLoops(true).build(); in transitiveClosure_undirectedGraph() local
[all …]
/external/guava/guava-tests/test/com/google/common/graph/
DGraphsTest.java73 MutableGraph<Integer> expectedClosure = GraphBuilder.directed().allowsSelfLoops(true).build(); in transitiveClosure_directedGraph() local
74 expectedClosure.putEdge(N1, N1); in transitiveClosure_directedGraph()
75 expectedClosure.putEdge(N1, N2); in transitiveClosure_directedGraph()
76 expectedClosure.putEdge(N1, N3); in transitiveClosure_directedGraph()
77 expectedClosure.putEdge(N2, N2); in transitiveClosure_directedGraph()
78 expectedClosure.putEdge(N2, N3); in transitiveClosure_directedGraph()
79 expectedClosure.putEdge(N3, N3); in transitiveClosure_directedGraph()
80 expectedClosure.putEdge(N4, N4); in transitiveClosure_directedGraph()
82 checkTransitiveClosure(directedGraph, expectedClosure); in transitiveClosure_directedGraph()
94 MutableGraph<Integer> expectedClosure = GraphBuilder.undirected().allowsSelfLoops(true).build(); in transitiveClosure_undirectedGraph() local
[all …]