Specifies whether the simulation engine has to perform all transactions defined in the workload section of the script in random or sequential order.
Kernel.bdh
SetRandomTransactions( in bRandom : boolean );
Parameter | Description |
---|---|
bRandom |
If this parameter is set to true, the simulation engine performs all transactions defined in the workload section in random order. If this parameter is set to false, all transactions are executed in sequential order. |
dcluser user UserGrp(5) transactions TB : begin; T1 : 2; T2 : 2; TE : end; dcltrans transaction TB begin SetRandomTransactions(false); write("TB "); end TB; transaction T1 begin write("T1 "); end T1; transaction T2 begin write("T2 "); end T2; transaction TE begin write("TE "); end TE;
TB T1 T1 T2 T2 TE