Click or drag to resize

BaseGraph.Equals Method (IGraph, Dictionary<INode, INode>)

Determines whether this Graph is equal to the given Graph.

Namespace:  VDS.RDF
Assembly:  dotNetRDF (in dotNetRDF.dll) Version:
Syntax
public virtual bool Equals(
	IGraph g,
	out Dictionary<INode, INode> mapping
)

Parameters

g
Type: VDS.RDF.IGraph
Graph to test for equality.
mapping
Type: System.Collections.Generic.Dictionary<INode, INode>
Mapping of Blank Nodes iff the Graphs are equal and contain some Blank Nodes.

Return Value

Type: Boolean

[Missing <returns> documentation for "M:VDS.RDF.BaseGraph.Equals(VDS.RDF.IGraph,System.Collections.Generic.Dictionary{VDS.RDF.INode,VDS.RDF.INode}@)"]

Implements

IGraph.Equals(IGraph, Dictionary<INode, INode>)
Remarks
See GraphMatcher for documentation of the equality algorithm used.
See Also