Click or drag to resize

VertexHelpersHaveEqualNeighborhood Method

Test whether the two vertices have equal properties and edge sets.

Namespace:  Frontenac.Blueprints.Util
Assembly:  VelocityGraph (in VelocityGraph.dll) Version: 10.1.0.0 (10.1)
Syntax
public static bool HaveEqualNeighborhood(
	this IVertex a,
	IVertex b,
	bool checkIdEquality
)

Parameters

a
Type: Frontenac.BlueprintsIVertex
the first vertex
b
Type: Frontenac.BlueprintsIVertex
the second vertex
checkIdEquality
Type: SystemBoolean
whether to check on vertex and edge ids

Return Value

Type: Boolean
whether the two vertices are semantically the same

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IVertex. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also