Hello Guys,
Is there a way to change the random value for each iteration during split?
opTopFloor -->
split(x) { rand(1.0, 5.0) : colorRed X.
| rand(1.0, 5.0) : colorGreen X.
| rand(1.0, 5.0) : colorBlue X.}*
it appears the rand() is evaluated once, instead of each iteration.
What I would need is that each iteration {}* would provide a new random number
doable?
Tx