|
Random\Engine\Xoshiro256StarStar::jumpEfficiently move the engine ahead by 2^128 steps Description
public void Random\Engine\Xoshiro256StarStar::jump()
Moves the algorithm’s state ahead by 2128 steps, as if Random\Engine\Xoshiro256StarStar::generate was called 2128 times. The purpose of a jump is to facilitate the creation of a new Random\Engine\Xoshiro256StarStar engine from an existing seeded Random\Engine\Xoshiro256StarStar engine. The seeded engine acts as a blueprint, which can be cloned and repeatedly jumped to create 2128 non-overlapping sequences with 2128 values each. ParametersThis function has no parameters. Return ValuesNo value is returned. ExamplesExample #1 Random\Engine\Xoshiro256StarStar::jump example
The above example will output something similar to: 4: 89 3: 10 2: 63 1: 75 6: 41 5: 56 0: 16 7: 60 7: 34 6: 58 1: 74 4: 63 3: 3 5: 42 2: 45 0: 86 See Also
|