chore: bump nightly to nightly-2021-04-25 (#3754)

This commit is contained in:
Taiki Endo
2021-05-05 17:39:17 +02:00
committed by GitHub
parent 6845a93cbf
commit c4b6b130f3
8 changed files with 12 additions and 12 deletions
+2 -2
View File
@@ -606,9 +606,9 @@ mod rand {
///
/// Implement xorshift64+: 2 32-bit xorshift sequences added together.
/// Shift triplet `[17,7,16]` was calculated as indicated in Marsaglia's
/// Xorshift paper: https://www.jstatsoft.org/article/view/v008i14/xorshift.pdf
/// Xorshift paper: <https://www.jstatsoft.org/article/view/v008i14/xorshift.pdf>
/// This generator passes the SmallCrush suite, part of TestU01 framework:
/// http://simul.iro.umontreal.ca/testu01/tu01.html
/// <http://simul.iro.umontreal.ca/testu01/tu01.html>
#[derive(Debug)]
pub(crate) struct FastRand {
one: Cell<u32>,