Click or drag to resize

PatternCondition Constructor (Expression, String, String, String, PatternNode, PatternEdge, PatternVariable)

Constructs a PatternCondition object.

Namespace:  de.unika.ipd.grGen.lgsp
Assembly:  lgspBackend (in lgspBackend.dll) Version: GrGen.NET 7.2
Syntax
C#
public PatternCondition(
	Expression conditionExpression,
	string[] neededNodeNames,
	string[] neededEdgeNames,
	string[] neededVariableNames,
	PatternNode[] neededNodes,
	PatternEdge[] neededEdges,
	PatternVariable[] neededVariables
)

Parameters

conditionExpression
Type: Expression
The condition expression to evaluate.
neededNodeNames
Type: SystemString
An array of node names needed by this condition.
neededEdgeNames
Type: SystemString
An array of edge names needed by this condition.
neededVariableNames
Type: SystemString
An array of variable names needed by this condition.
neededNodes
Type: de.unika.ipd.grGen.lgspPatternNode
An array of nodes needed by this condition.
neededEdges
Type: de.unika.ipd.grGen.lgspPatternEdge
An array of edges needed by this condition.
neededVariables
Type: de.unika.ipd.grGen.lgspPatternVariable
An array of variables needed by this condition.
See Also