Browse Source

Absolute path to rand.

master
Sean Bowe 7 years ago
parent
commit
03952704b7
  1. 4
      ff_derive/src/lib.rs

4
ff_derive/src/lib.rs

@ -503,9 +503,9 @@ fn prime_field_impl(
} }
} }
impl Rand for #name { impl ::rand::Rand for #name {
/// Computes a uniformly random element using rejection sampling. /// Computes a uniformly random element using rejection sampling.
fn rand<R: Rng>(rng: &mut R) -> Self { fn rand<R: ::rand::Rng>(rng: &mut R) -> Self {
loop { loop {
let mut tmp = #name(#repr::rand(rng)); let mut tmp = #name(#repr::rand(rng));
for _ in 0..REPR_SHAVE_BITS { for _ in 0..REPR_SHAVE_BITS {

Loading…
Cancel
Save