Click or drag to resize

ValidateInfo Constructor

Constructs a ValidateInfo instance.

Namespace: de.unika.ipd.grGen.libGr
Assembly: libGr (in libGr.dll) Version: GrGen.NET 7.1
Syntax
C#
public ValidateInfo(
	EdgeType edgeType,
	NodeType sourceType,
	NodeType targetType,
	long sourceLower,
	long sourceUpper,
	long targetLower,
	long targetUpper,
	bool bothDirections
)

Parameters

edgeType  EdgeType
The edge type to which this constraint applies.
sourceType  NodeType
The node type to which applicable source nodes must be compatible.
targetType  NodeType
The node type to which applicable target nodes must be compatible.
sourceLower  Int64
The lower bound on the out-degree of the source node according to edges compatible to EdgeType.
sourceUpper  Int64
The upper bound on the out-degree of the source node according to edges compatible to EdgeType.
targetLower  Int64
The lower bound on the in-degree of the target node according to edges compatible to EdgeType.
targetUpper  Int64
The upper bound on the in-degree of the target node according to edges compatible to EdgeType.
bothDirections  Boolean
Both directions are to be checked (undirected edge or arbitrary direction)
See Also