 | Iterated Class |
An iterated is a pattern graph element containing the subpattern to be matched iteratively
and the information how much matches are needed for success and how much matches to obtain at most
Inheritance Hierarchy Namespace: de.unika.ipd.grGen.lgspAssembly: lgspBackend (in lgspBackend.dll) Version: GrGen.NET 7.1
Syntaxpublic class Iterated : IIterated
The Iterated type exposes the following members.
Constructors | Name | Description |
---|
 | Iterated(PatternGraph, Int32, Int32, LGSPFilter) |
Constructs an Iterated object.
|
 | Iterated(Iterated, PatternGraphEmbedding, PatternGraph, String, DictionaryPatternNode, PatternNode, DictionaryPatternEdge, PatternEdge, DictionaryPatternVariable, PatternVariable) |
Instantiates a new iterated object as a copy from an original iterated, used for inlining.
|
Top
Properties | Name | Description |
---|
 | Filters |
An array of the available filters
|
 | IteratedPattern |
The iterated pattern to be matched as often as possible within specified bounds.
|
 | MaxMatches |
The upper bound to stop matching at, 0 means unlimited/as often as possible.
|
 | MinMatches |
How many matches to find so the iterated succeeds.
|
Top
Fields | Name | Description |
---|
 | filters |
An array of the available filters
|
 | iteratedPattern |
The iterated pattern to be matched as often as possible within specified bounds.
|
 | maxMatches |
The upper bound to stop matching at, 0 means unlimited.
|
 | minMatches |
How many matches to find so the iterated succeeds.
|
 | originalIterated |
Links to the original iterated in case this iterated was inlined, otherwise null
|
 | originalSubpatternEmbedding |
Links to the original subpattern embedding which was inlined in case this iterated was inlined, otherwise null.
|
Top
See Also