VertexHelpersHaveEqualEdges Method |
Test whether the two vertices have equal edge sets
Namespace:
VelocityGraph.Frontenac.Blueprints.Util
Assembly:
VelocityGraph (in VelocityGraph.dll) Version: 11.1.0.0 (11.1)
Syntax public static bool HaveEqualEdges(
this IVertex a,
IVertex b,
bool checkIdEquality
)
<ExtensionAttribute>
Public Shared Function HaveEqualEdges (
a As IVertex,
b As IVertex,
checkIdEquality As Boolean
) As Boolean
public:
[ExtensionAttribute]
static bool HaveEqualEdges(
IVertex^ a,
IVertex^ b,
bool checkIdEquality
)
[<ExtensionAttribute>]
static member HaveEqualEdges :
a : IVertex *
b : IVertex *
checkIdEquality : bool -> bool
Parameters
- a
- Type: VelocityGraph.Frontenac.BlueprintsIVertex
the first vertex - b
- Type: VelocityGraph.Frontenac.BlueprintsIVertex
the second vertex - checkIdEquality
- Type: SystemBoolean
whether to check on vertex and edge ids
Return Value
Type:
Booleanwhether the two vertices have the same edge sets
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