Click or drag to resize

GraphDumperDumpMatchOnly Method

Dumps the given matches.

Namespace: de.unika.ipd.grGen.libGr
Assembly: libGr (in libGr.dll) Version: GrGen.NET 7.1
Syntax
C#
public static void DumpMatchOnly(
	IDumper dumper,
	DumpInfo dumpInfo,
	IMatches matches,
	DumpMatchSpecial which,
	ref Set<INode> matchedNodes,
	ref Set<INode> multiMatchedNodes,
	ref Set<IEdge> matchedEdges,
	ref Set<IEdge> multiMatchedEdges
)

Parameters

dumper  IDumper
The graph dumper to be used.
dumpInfo  DumpInfo
Specifies how the graph shall be dumped.
matches  IMatches
An IMatches object containing the matches.
which  DumpMatchSpecial
Which match to dump, or AllMatches for dumping all matches The nodes matchedThe nodes matched multiple timesThe edges matchedThe edges matched multiple times adding connections between them, or OnlyMatches to dump the matches only
matchedNodes  SetINode
 
multiMatchedNodes  SetINode
 
matchedEdges  SetIEdge
 
multiMatchedEdges  SetIEdge
 
See Also