Skip to main content

oxiphysics_core/sampling/
sobol_traits.rs

1//! # Sobol - Trait Implementations
2//!
3//! This module contains trait implementations for `Sobol`.
4//!
5//! ## Implemented Traits
6//!
7//! - `QuasiRandomSequence`
8//!
9//! 🤖 Generated with [SplitRS](https://github.com/cool-japan/splitrs)
10
11use super::functions::QuasiRandomSequence;
12#[allow(unused_imports)]
13use super::functions::*;
14use super::types::Sobol;
15
16#[allow(dead_code)]
17impl QuasiRandomSequence for Sobol {
18    fn next(&mut self) -> Vec<f64> {
19        vec![self.next_1d()]
20    }
21}