-
-
Notifications
You must be signed in to change notification settings - Fork 5.7k
Closed
Labels
randomnessRandom number generation and the Random stdlibRandom number generation and the Random stdlib
Milestone
Description
Line 670 in 272eaf9
| uint64_t t = s0 << 17; |
Shouldn't this be s1 as in
uint64_t t = s1 << 17; ?
Note: s1, not s0
See Fig. 5 ("C code for a xoshiro256+/xoshiro256++/xoshiro256** generator") on page 6 in the Blackman / Vigna paper : https://arxiv.org/pdf/1805.01407.pdf
PallHaraldsson
Metadata
Metadata
Assignees
Labels
randomnessRandom number generation and the Random stdlibRandom number generation and the Random stdlib