GraphBaseTVertex, TEdgeValidateVertexFromRemovalFromAdjacencyList Method |
Validates if the vertexToRemove passed in is removable from the adjacency list of the vertex vertex. Removing the vertex means all edges from vertex to
vertexToRemove are physically removed from the graph structure.
Namespace:
SD.Tools.Algorithmia.Graphs
Assembly:
SD.Tools.Algorithmia (in SD.Tools.Algorithmia.dll) Version: 1.2.0.0 (1.2.16.0406)
Syntax protected virtual bool ValidateVertexFromRemovalFromAdjacencyList(
TVertex vertexToRemove,
TVertex vertex
)
Protected Overridable Function ValidateVertexFromRemovalFromAdjacencyList (
vertexToRemove As TVertex,
vertex As TVertex
) As Boolean
Parameters
- vertexToRemove
- Type: TVertex
The vertex to remove from the adjacency list. - vertex
- Type: TVertex
The vertex which owns the adjacency list.
Return Value
Type:
BooleanSee Also