Ordered
This keyword lets you order the evaluation of concepts and rules so that objects are created in the proper order in the tree. It applies to a set of Children or to a List Children.
This keyword proves useful when working on modelers for which the execution order is important. For example, the operations you create using the ManufacturingSystemDefinition
modelers must be created in a defined order that matches the order in which the operations are performed on the assembly line.
Concept OrderedTriangle : BaseConcept { Object : Feature; [...] Children { Ordered { TrianglePoint P1; TrianglePoint P2; TrianglePoint P3; } } [...] }
Ordered
keyword ensures that the P1 is created before the P2 that is created before the P3.