Sometimes a certain part of an object's code may need to be repeated many times. Even the number of repetitions may be required to be determined by the user. In short, the Repeat Object is used to clone a series of objects multiple times.
...
S (start)
E (end)
I (increment)
CTRL (control parameter)
Syntax
Code Block | ||
---|---|---|
| ||
...
...
<O T="Repeat"
...
</O> |
Example
| |||||
The above codes give exactly the same results as below. | |||||
...
To view this example in the library, see (https://openbrim.org/platform/?application=inc&author=ParamML_Examples_OpenBrIM+Platform&folder=Core+Objects&obj=objidr5mrcuyfnw8mxik04obc)
ParamML is a programming language that employs lazy evaluation (https://en.wikipedia.org/wiki/Lazy_evaluation ), where each parameter is only computed when it is called. Unlike sequential programming (e.g., http://VB.NET ), where each line is executed one by one, ParamML doesn't compute every parameter upfront. However, a drawback is that if a parameter is called a thousand times, it needs to be computed a thousand times, which can be a significant performance issue.
To address this problem, caching is used (https://en.wikipedia.org/wiki/Cache_(computing) )."Repeat" is a specific object, and under normal circumstances, due to software limitations, we cannot employ caching within "repeat." This is where "StaticParams" comes into play. StaticParams overrides this rule. The parameters written within StaticParams are computed, and their values are manually added to the cache. As a result, when attempting to access these parameters within "repeat," there is no need to reevaluate the parameters; their values are readily available in the cache.
Example:
|
To view this example in the library, see (https://openbrim.org/platform/?application=inc&author=ParamML_Examples_OpenBrIM+Platform&obj=objidro1flg1c11lprm05wr6kzo )
Parameters of Repeat Object
...
Label | Mandatory | Name and Type Attributes | Default Description and Value Attributes | Other Attributes |
Control Variable | Yes | N="CTRL" | D="Control Variable: The name of the variable that holds the repeat number as the contained objects repeated."V="0" | Role="Input" |
Start | Yes | N="S" | D="Start: Starting repeat number (default 0)" | Role="Input" |
End | Yes | N="E" | D="End: Ending repeat number (default 9)"V="0" | Role="Input" |
Increment (Each Step) | Yes | N="I" | D="Increment: Increment used to go from start to end (default 1)"V="0" | Role="Input" |
StaticParams | No | N=”StaticParams” | D=”Parameter list which are used in repeat iterations but no need to calculate at each step” | Role="Input" |