pub fn radius<N, E, Ix>(graph: &Graph<N, E, Ix>) -> Option<f64>
Expand description
Computes the radius of a graph
The radius is the minimum eccentricity over all nodes, where eccentricity of a node is the maximum distance from that node to any other node. Returns None if the graph is disconnected.