FContext Module

Functions and values

Function or value Description

clone (arg1, arg2, arg3)

Full Usage: clone (arg1, arg2, arg3)

Parameters:
Returns: FContext<'NodeKey, 'NodeData, 'EdgeData>

Clones context

arg0 : Dictionary<'NodeKey, 'EdgeData>
arg1 : 'NodeData
arg2 : Dictionary<'NodeKey, 'EdgeData>
Returns: FContext<'NodeKey, 'NodeData, 'EdgeData>

degree (arg1, arg2, arg3)

Full Usage: degree (arg1, arg2, arg3)

Parameters:
Returns: int

Evaluates the number of edges associated with the vertex.

arg0 : Dictionary<'NodeKey, 'EdgeData>
arg1 : 'NodeData
arg2 : Dictionary<'NodeKey, 'EdgeData>
Returns: int

inwardDegree (arg1, arg2, arg3)

Full Usage: inwardDegree (arg1, arg2, arg3)

Parameters:
Returns: int

Evaluates the number of edges pointing to the vertex.

arg0 : Dictionary<'NodeKey, 'EdgeData>
arg1 : 'NodeData
arg2 : Dictionary<'NodeKey, 'EdgeData>
Returns: int

neighbours (arg1, arg2, arg3)

Full Usage: neighbours (arg1, arg2, arg3)

Parameters:
Returns: Adj<'NodeKey, 'EdgeData>

Lists the vertices which are connected to the vertex.

arg0 : Dictionary<'NodeKey, 'EdgeData>
arg1 : 'NodeData
arg2 : Dictionary<'NodeKey, 'EdgeData>
Returns: Adj<'NodeKey, 'EdgeData>

outwardDegree (arg1, arg2, arg3)

Full Usage: outwardDegree (arg1, arg2, arg3)

Parameters:
Returns: int

Evaluates the number of edges pointing away from the vertex.

arg0 : Dictionary<'NodeKey, 'EdgeData>
arg1 : 'NodeData
arg2 : Dictionary<'NodeKey, 'EdgeData>
Returns: int

predecessors (arg1, arg2, arg3)

Full Usage: predecessors (arg1, arg2, arg3)

Parameters:
Returns: Adj<'NodeKey, 'EdgeData>

Lists the vertices which have edges pointing to the vertex.

arg0 : Dictionary<'NodeKey, 'EdgeData>
arg1 : 'NodeData
arg2 : Dictionary<'NodeKey, 'EdgeData>
Returns: Adj<'NodeKey, 'EdgeData>

successors (arg1, arg2, arg3)

Full Usage: successors (arg1, arg2, arg3)

Parameters:
Returns: Adj<'NodeKey, 'EdgeData>

Lists the vertices which have edges pointing away from the vertex.

arg0 : Dictionary<'NodeKey, 'EdgeData>
arg1 : 'NodeData
arg2 : Dictionary<'NodeKey, 'EdgeData>
Returns: Adj<'NodeKey, 'EdgeData>