nalgebra/tests/core/helper.rs

55 lines
1.5 KiB
Rust
Raw Normal View History

// This module implement several methods to fill some
// missing features of num-complex when it comes to randomness.
2020-04-06 00:49:48 +08:00
use na::RealField;
use num_complex::Complex;
use quickcheck::{Arbitrary, Gen};
2020-04-06 00:49:48 +08:00
use rand::distributions::{Distribution, Standard};
use rand::Rng;
#[derive(Copy, Clone, Debug, PartialEq, Eq)]
pub struct RandComplex<N>(pub Complex<N>);
2019-03-25 18:21:41 +08:00
impl<N: Arbitrary + RealField> Arbitrary for RandComplex<N> {
#[inline]
2021-03-01 00:52:14 +08:00
fn arbitrary(rng: &mut Gen) -> Self {
let im = Arbitrary::arbitrary(rng);
let re = Arbitrary::arbitrary(rng);
RandComplex(Complex::new(re, im))
}
}
2019-03-25 18:21:41 +08:00
impl<N: RealField> Distribution<RandComplex<N>> for Standard
2020-04-06 00:49:48 +08:00
where
Standard: Distribution<N>,
{
#[inline]
fn sample<'a, G: Rng + ?Sized>(&self, rng: &'a mut G) -> RandComplex<N> {
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<N>(pub N);
impl<N: Arbitrary> Arbitrary for RandScalar<N> {
#[inline]
2021-03-01 00:52:14 +08:00
fn arbitrary(rng: &mut Gen) -> Self {
RandScalar(Arbitrary::arbitrary(rng))
}
}
2019-03-25 18:21:41 +08:00
impl<N: RealField> Distribution<RandScalar<N>> for Standard
2020-04-06 00:49:48 +08:00
where
Standard: Distribution<N>,
{
#[inline]
fn sample<'a, G: Rng + ?Sized>(&self, rng: &'a mut G) -> RandScalar<N> {
RandScalar(self.sample(rng))
}
2020-04-06 00:49:48 +08:00
}