1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
use Source;
#[derive(Clone, Copy)]
pub struct Xorshift128Plus(u64, u64);
impl Xorshift128Plus {
#[inline(always)]
pub fn new(seed: [u64; 2]) -> Xorshift128Plus {
debug_assert!(seed[0] | seed[1] != 0, "at least one bit of the seed should be one");
Xorshift128Plus(seed[0], seed[1])
}
}
impl Source for Xorshift128Plus {
#[inline(always)]
fn read_u64(&mut self) -> u64 {
let (mut x, y) = (self.0, self.1);
self.0 = y;
x = x ^ (x << 23);
x = x ^ (x >> 17);
x = x ^ y ^ (y >> 26);
self.1 = x;
x.wrapping_add(y)
}
}
#[cfg(test)]
mod tests {
use Xorshift128Plus;
#[test]
#[should_panic]
fn new_zero_seed() {
let _ = Xorshift128Plus::new([0, 0]);
}
}