// This module implement several methods to fill some // missing features of num-complex when it comes to randomness. use quickcheck::{Arbitrary, Gen}; use rand::distributions::{Standard, Distribution}; use rand::Rng; use num_complex::Complex; use na::RealField; #[derive(Copy, Clone, Debug, PartialEq, Eq)] pub struct RandComplex(pub Complex); impl Arbitrary for RandComplex { #[inline] fn arbitrary(rng: &mut G) -> Self { let im = Arbitrary::arbitrary(rng); let re = Arbitrary::arbitrary(rng); RandComplex(Complex::new(re, im)) } } impl Distribution> for Standard where Standard: Distribution, { #[inline] fn sample<'a, G: Rng + ?Sized>(&self, rng: &'a mut G) -> RandComplex { let re = rng.gen(); let im = rng.gen(); RandComplex(Complex::new(re, im)) } } // This is a wrapper similar to RandComplex, but for non-complex. // This exists only to make generic tests easier to write. #[derive(Copy, Clone, Debug, PartialEq, Eq)] pub struct RandScalar(pub N); impl Arbitrary for RandScalar { #[inline] fn arbitrary(rng: &mut G) -> Self { RandScalar(Arbitrary::arbitrary(rng)) } } impl Distribution> for Standard where Standard: Distribution, { #[inline] fn sample<'a, G: Rng + ?Sized>(&self, rng: &'a mut G) -> RandScalar { RandScalar(self.sample(rng)) } }