Click or drag to resize

InterpretationPlanExecute(LGSPGraph, Boolean, ListFoundMatch, Int32) Method

Executes the interpretation plan (starting with this operation)

Namespace: de.unika.ipd.grGen.lgsp
Assembly: lgspBackend (in lgspBackend.dll) Version: GrGen.NET 7.1
Syntax
C#
public abstract bool Execute(
	LGSPGraph graph,
	bool includingAttributes,
	List<FoundMatch> matches,
	int threadId
)

Parameters

graph  LGSPGraph
The graph over which the plan is to be interpreted
includingAttributes  Boolean
Whether to check for isomorphy including attributes or without them (== vs ~~)
matches  ListFoundMatch
If not null, the list is filled with the matches; only in this case are all matches iterated
threadId  Int32
The id of the thread that is executing this interpretation plan (used for accessing the flags for isomorphy checking)

Return Value

Boolean
true if execution succeeded, i.e. a match was found; false otherwise
See Also