We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4ded98 commit ea31f3dCopy full SHA for ea31f3d
tests/integration/histogram_const.rs
@@ -232,7 +232,7 @@ fn mul() {
232
fn variance() {
233
let mut h = Histogram10::with_const_width(-3., 3.);
234
let normal = rand_distr::Normal::new(0., 1.).unwrap();
235
- let mut rng = rand_xoshiro::Xoshiro256StarStar::from_entropy();
+ let mut rng = rand_xoshiro::Xoshiro256StarStar::from_os_rng();
236
for _ in 0..1000000 {
237
let _ = h.add(normal.sample(&mut rng));
238
}
0 commit comments