reservoir_datasets/
lib.rs1#![cfg_attr(not(feature = "std"), no_std)]
2
3extern crate alloc;
4
5pub mod henon;
6pub mod mackey_glass;
7pub mod narma;
8
9#[cfg(feature = "std")]
10pub type RngType = rand::rngs::StdRng;
11
12#[cfg(not(feature = "std"))]
13pub type RngType = rand::rngs::SmallRng;