Randomization |
Min value | The minimal integer value that generated random numbers can take. Has to be less than the Max Value property. Change in runtime causes generating a new block of random numbers | | Int32 | |
Max value | The maximum integer value that generated random numbers can take. Has to be greater than the Min Value property. Change in runtime causes regeneration of a block | | Int32 | |
Value frequences | The frequences that denote a relative probabaility for each integer number in the range Min Value,Max Value to be included in a block.The frequences and the total amount of possible integer numbers define the block size. Change in runtime causes regeneration a block | | IList | |
Block Length | Total length of the random block estimated with the current properties. | | Int64 | |
Blocking | If true, the random values are generated in the balanced block, with fixed number of occurences. If false, the random values are drawn | | Boolean | |
Factors | Factorial design for random numbers. Each random number is represented decomposed on factors in Factored Random Value property | | String | |
No Repetition | If true, the last value of each block will be always different with the first value of the following block | | Boolean | |
colspan="5" bgcolor="#AADDDDD" | |
| | | String | |
Runtime Status |
Index in block | Index of the current random value in a random block | | Int32 | |
Current Block | Index of the current random block | | UInt32 | |
Block completed | Is true when the last value for the current random block is just taken. A new block will be generated for the next activation of the parent event. | | Boolean | |
Runtime Actions |
Force new block | Set to true in order to generate a new block immediately (note: new values will be accesible on the next activation only) | | Boolean | |
Cancel value | Set this parameter to true in runtime in order to cancel the current random value withdrawal. | | Boolean | |
Runtime Output |
Random Value | Returns a random value in the current position of the random block. Each activation of the parent event shift this position to the next numebr in a random block. | | Int32 | |
Random Values | Returns an entire block of random values as an ordered array of integers. This property changes only when the block is regenerated. | | Int32[] | |
Factored Random Value | Returns the current random value as an array of factors | | Int32[] | |
Control |
Is Enabled | If set to false the element is completely omitted when the experiment is run | | Boolean | |
Title | Title of the element | | String | |
|