1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
//! The definitions for the uniform distributions

// use crate::{Algorithm, Distribution, PRNG, SmolGenerator};

// struct Uniform<L:> {
//     low: L,
//     high: L,
// }
//
// impl<T, N> Distribution<T, N> for Uniform<N> where T: Algorithm, N: Float {
//     fn sample(&self, rng: &mut PRNG<T>) -> N {
//         rng.gen_f64();
//     }
// }