Radius Type

Constructors

Constructor Description

Radius()

Full Usage: Radius()

Returns: Radius
Returns: Radius

Static members

Static member Description

Radius.compute graph

Full Usage: Radius.compute graph

Parameters:
    graph : AdjGraph<'NodeKey, 'NodeData, 'EdgeData> - The graph to calculate the radius for

Returns: float A float of the longest shortest Path of a graph

Get the radius of graph calculated by their minimum Eccentricity

graph : AdjGraph<'NodeKey, 'NodeData, 'EdgeData>

The graph to calculate the radius for

Returns: float

A float of the longest shortest Path of a graph

Radius.compute graph

Full Usage: Radius.compute graph

Parameters:
    graph : FGraph<'NodeKey, 'NodeData, 'EdgeData> - The graph to calculate the radius for

Returns: float A float of the longest shortest Path of a graph

Get the radius of graph calculated by their minimum Eccentricity

graph : FGraph<'NodeKey, 'NodeData, 'EdgeData>

The graph to calculate the radius for

Returns: float

A float of the longest shortest Path of a graph

Radius.computeWithEdgeData graph

Full Usage: Radius.computeWithEdgeData graph

Parameters:
    graph : AdjGraph<'NodeKey, 'NodeData, float> - The graph to calculate the radius for

Returns: float A float of the longest shortest Path of a graph

Get the radius of graph calculated by their minimum Eccentricity

graph : AdjGraph<'NodeKey, 'NodeData, float>

The graph to calculate the radius for

Returns: float

A float of the longest shortest Path of a graph

Radius.computeWithEdgeData graph

Full Usage: Radius.computeWithEdgeData graph

Parameters:
    graph : FGraph<'NodeKey, 'NodeData, float> - The graph to calculate the radius for

Returns: float A float of the longest shortest Path of a graph

Get the radius of graph calculated by their minimum Eccentricity

graph : FGraph<'NodeKey, 'NodeData, float>

The graph to calculate the radius for

Returns: float

A float of the longest shortest Path of a graph

Radius.computeWithEdgeDataBy (weightF, graph)

Full Usage: Radius.computeWithEdgeDataBy (weightF, graph)

Parameters:
    weightF : '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

Get the radius of graph calculated by their minimum Eccentricity

weightF : '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

Radius.computeWithEdgeDataBy (weightF, graph)

Full Usage: Radius.computeWithEdgeDataBy (weightF, graph)

Parameters:
    weightF : '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

Get the radius of graph calculated by their minimum Eccentricity

weightF : '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

Radius.ofAdjGraph weigthF graph

Full Usage: Radius.ofAdjGraph weigthF graph

Parameters:
    weigthF : '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

Get the radius of graph calculated by their minimum Eccentricity

weigthF : '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

Radius.ofFGraph weigthF graph

Full Usage: Radius.ofFGraph weigthF graph

Parameters:
    weigthF : '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

Get the radius of graph calculated by their minimum Eccentricity

weigthF : '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

Radius.ofGraph2D floydWarshall

Full Usage: Radius.ofGraph2D floydWarshall

Parameters:
    floydWarshall : float[,] - Result of the FloydWarshall shortest Path calculation of a graph

Returns: float A float of the shortest shortest Paths of a graph

Get the radius of graph calculated by their minimum Eccentricity

floydWarshall : float[,]

Result of the FloydWarshall shortest Path calculation of a graph

Returns: float

A float of the shortest shortest Paths of a graph