use of org.neo4j.graphalgo.impl.centrality.NetworkDiameter in project graphdb by neo4j-attic.
the class NetworkDiameterTest method testPlusShape.
@Test
public void testPlusShape() {
graph.makeEdgeChain("a,b,c");
graph.makeEdgeChain("d,b,e");
NetworkDiameter<Double> diameter = new NetworkDiameter<Double>(getSingleSourceShortestPath(), 0.0, graph.getAllNodes(), new DoubleComparator());
assertTrue(diameter.getCentrality(null) == 2.0);
}
Aggregations