 | IActionApplyAll(Int32, IActionExecutionEnvironment, Object) Method |
Tries to apply this rule to all occurrences in the current graph of the graph processing environment "at once".
No Matched/Finished events are triggered by this function (needed for visual debugging).
The null parameter check is omitted also.
Namespace: de.unika.ipd.grGen.libGrAssembly: libGr (in libGr.dll) Version: GrGen.NET 7.1
SyntaxList<Object[]> ApplyAll(
int maxMatches,
IActionExecutionEnvironment actionEnv,
params Object[] parameters
)
Parameters
- maxMatches Int32
- The maximum number of matches to be rewritten.
- actionEnv IActionExecutionEnvironment
- The action execution environment, esp. giving access to the host graph.
- parameters Object
- An array of parameters (nodes, edges, values) of the types specified by RulePattern.Inputs.
The array must contain at least RulePattern.Inputs.Length elements.
Return Value
ListObjectA list of arrays of objects (the arrays may be empty) returned by the last application of the rule,
which is only valid until the next graph rewrite with this rule,
or null, if no match was found.
See Also