 | ValidateInfo Constructor |
Constructs a ValidateInfo instance.
Namespace:
de.unika.ipd.grGen.libGr
Assembly:
libGr (in libGr.dll) Version: GrGen.NET 7.2
Syntaxpublic ValidateInfo(
EdgeType edgeType,
NodeType sourceType,
NodeType targetType,
long sourceLower,
long sourceUpper,
long targetLower,
long targetUpper,
bool bothDirections
)
Parameters
- edgeType
- Type: de.unika.ipd.grGen.libGrEdgeType
The edge type to which this constraint applies. - sourceType
- Type: de.unika.ipd.grGen.libGrNodeType
The node type to which applicable source nodes must be compatible. - targetType
- Type: de.unika.ipd.grGen.libGrNodeType
The node type to which applicable target nodes must be compatible. - sourceLower
- Type: SystemInt64
The lower bound on the out-degree of the source node according to edges compatible to EdgeType. - sourceUpper
- Type: SystemInt64
The upper bound on the out-degree of the source node according to edges compatible to EdgeType. - targetLower
- Type: SystemInt64
The lower bound on the in-degree of the target node according to edges compatible to EdgeType. - targetUpper
- Type: SystemInt64
The upper bound on the in-degree of the target node according to edges compatible to EdgeType. - bothDirections
- Type: SystemBoolean
Both directions are to be checked (undirected edge or arbitrary direction)
See Also