Static member | Description |
Full Usage:
Radius.compute graph
Parameters:
AdjGraph<'NodeKey, 'NodeData, 'EdgeData>
-
The graph to calculate the radius for
Returns: float
A float of the longest shortest Path of a graph
|
|
Full Usage:
Radius.compute graph
Parameters:
FGraph<'NodeKey, 'NodeData, 'EdgeData>
-
The graph to calculate the radius for
Returns: float
A float of the longest shortest Path of a graph
|
|
Full Usage:
Radius.computeWithEdgeData graph
Parameters:
AdjGraph<'NodeKey, 'NodeData, float>
-
The graph to calculate the radius for
Returns: float
A float of the longest shortest Path of a graph
|
|
Full Usage:
Radius.computeWithEdgeData graph
Parameters:
FGraph<'NodeKey, 'NodeData, float>
-
The graph to calculate the radius for
Returns: float
A float of the longest shortest Path of a graph
|
|
Full Usage:
Radius.computeWithEdgeDataBy (weightF, graph)
Parameters:
'EdgeData -> float
graph : AdjGraph<'NodeKey, 'NodeData, 'EdgeData>
-
The graph to calculate the radius for
Returns: float
A float of the longest shortest Path of a graph
|
|
Full Usage:
Radius.computeWithEdgeDataBy (weightF, graph)
Parameters:
'EdgeData -> float
graph : FGraph<'NodeKey, 'NodeData, 'EdgeData>
-
The graph to calculate the radius for
Returns: float
A float of the longest shortest Path of a graph
|
|
Full Usage:
Radius.ofAdjGraph weigthF graph
Parameters:
'EdgeData -> float
-
Function to get a float edgeweight of the EdgeData
graph : AdjGraph<'NodeKey, 'NodeData, 'EdgeData>
-
The graph to calculate the radius for
Returns: float
A float of the longest shortest Path of a graph
|
|
Full Usage:
Radius.ofFGraph weigthF graph
Parameters:
'EdgeData -> float
-
Function to get a float edgeweight of the EdgeData
graph : FGraph<'NodeKey, 'NodeData, 'EdgeData>
-
The graph to calculate the radius for
Returns: float
A float of the longest shortest Path of a graph
|
|
Full Usage:
Radius.ofGraph2D floydWarshall
Parameters:
float[,]
-
Result of the FloydWarshall shortest Path calculation of a graph
Returns: float
A float of the shortest shortest Paths of a graph
|
|