Constructor | Description |
|
|
Static member | Description |
Full Usage:
Eccentricity.compute graph
Parameters:
AdjGraph<'NodeKey, 'NodeData, 'EdgeData>
Returns: seq<'NodeKey * float>
|
|
Full Usage:
Eccentricity.compute graph
Parameters:
FGraph<'NodeKey, 'NodeData, 'EdgeData>
Returns: seq<'NodeKey * float>
|
|
Full Usage:
Eccentricity.computeOfNode (graph, nodeKey)
Parameters:
AdjGraph<'NodeKey, 'NodeData, 'EdgeData>
nodeKey : 'NodeKey
Returns: float
|
|
Full Usage:
Eccentricity.computeOfNode (graph, nodeKey)
Parameters:
FGraph<'NodeKey, 'NodeData, 'EdgeData>
nodeKey : 'NodeKey
Returns: float
|
|
Full Usage:
Eccentricity.computeOfNodeWithEdgeData (graph, nodeKey)
Parameters:
AdjGraph<'NodeKey, 'NodeData, float>
nodeKey : 'NodeKey
Returns: float
|
|
Full Usage:
Eccentricity.computeOfNodeWithEdgeData (graph, nodeKey)
Parameters:
FGraph<'NodeKey, 'NodeData, float>
nodeKey : 'NodeKey
Returns: float
|
|
Full Usage:
Eccentricity.computeOfNodeWithEdgeDataBy (getEdgeWeightF, graph, nodeKey)
Parameters:
'EdgeData -> float
graph : AdjGraph<'NodeKey, 'NodeData, 'EdgeData>
nodeKey : 'NodeKey
Returns: float
|
|
Full Usage:
Eccentricity.computeOfNodeWithEdgeDataBy (getEdgeWeightF, graph, nodeKey)
Parameters:
'EdgeData -> float
graph : FGraph<'NodeKey, 'NodeData, 'EdgeData>
nodeKey : 'NodeKey
Returns: float
|
|
Full Usage:
Eccentricity.computeWithEdgeData graph
Parameters:
AdjGraph<'NodeKey, 'NodeData, float>
Returns: seq<'NodeKey * float>
|
|
Full Usage:
Eccentricity.computeWithEdgeData graph
Parameters:
FGraph<'NodeKey, 'NodeData, float>
Returns: seq<'NodeKey * float>
|
|
Full Usage:
Eccentricity.computeWithEdgeDataBy (getEdgeWeightF, graph)
Parameters:
'EdgeData -> float
graph : AdjGraph<'NodeKey, 'NodeData, 'EdgeData>
Returns: seq<'NodeKey * float>
|
|
Full Usage:
Eccentricity.computeWithEdgeDataBy (getEdgeWeightF, graph)
Parameters:
'EdgeData -> float
graph : FGraph<'NodeKey, 'NodeData, 'EdgeData>
Returns: seq<'NodeKey * float>
|
|
Full Usage:
Eccentricity.ofAdjGraph getEdgeWeightF graph
Parameters:
'EdgeData -> float
-
Function to get the edgeweight out of the 'EdgeData
graph : AdjGraph<'NodeKey, 'NodeData, 'EdgeData>
-
The graph to be analysed
Returns: seq<'NodeKey * float>
A float of the Eccentricity of the node
|
|
Full Usage:
Eccentricity.ofAdjGraphNode getEdgeWeightF graph nodeKey
Parameters:
'EdgeData -> float
-
Function to get the edgeweight out of the 'EdgeData
graph : AdjGraph<'NodeKey, 'NodeData, 'EdgeData>
-
The graph to be analysed
nodeKey : 'NodeKey
-
The NodeKey to get the Eccentricity of
Returns: float
A float of the Eccentricity of the node
|
|
Full Usage:
Eccentricity.ofFGraph getEdgeWeightF graph
Parameters:
'EdgeData -> float
-
Function to get the edgeweight out of the 'EdgeData
graph : FGraph<'NodeKey, 'NodeData, 'EdgeData>
-
The graph to be analysed
Returns: seq<'NodeKey * float>
A float of the Eccentricity of the node
|
|
Full Usage:
Eccentricity.ofFGraphNode getEdgeWeightF graph nodeKey
Parameters:
'EdgeData -> float
-
Function to get the edgeweight out of the 'EdgeData
graph : FGraph<'NodeKey, 'NodeData, 'EdgeData>
-
The graph to be analysed
nodeKey : 'NodeKey
-
The NodeKey to get the Eccentricity of
Returns: float
A float of the Eccentricity of the node
|
|
Full Usage:
Eccentricity.ofGraph2D floydWarshallResult
Parameters:
float[,]
-
Result of the FloydWarshall shortest Path calculation of a graph
Returns: Dictionary<int, float>
A dictionary with the nodeIndeces as Keys and the Eccentricity as value
|
|