pub struct Config {
pub max_depth: usize,
pub alpha: f64,
pub bootstrap_b: usize,
pub alphabet_size: usize,
}Expand description
Configuration for the ε-machine inference.
Fields§
§max_depth: usizeMaximum history length L (deeper = more expressive, slower, more memory).
alpha: f64KS significance level α. Lower → fewer false splits.
bootstrap_b: usizeBootstrap replicates B for CI estimation.
alphabet_size: usizeSize of the discrete alphabet |A|. Symbols must be 0..alphabet_size.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Config
impl RefUnwindSafe for Config
impl Send for Config
impl Sync for Config
impl Unpin for Config
impl UnsafeUnpin for Config
impl UnwindSafe for Config
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more