oxilean-kernel 0.1.2

OxiLean kernel - The trusted computing base for type checking
Documentation
//! # WhnfConfig - Trait Implementations
//!
//! This module contains trait implementations for `WhnfConfig`.
//!
//! ## Implemented Traits
//!
//! - `Default`
//!
//! 🤖 Generated with [SplitRS](https://github.com/cool-japan/splitrs)

use super::types::WhnfConfig;

impl Default for WhnfConfig {
    fn default() -> Self {
        Self {
            beta: true,
            zeta: true,
            delta: true,
            iota: true,
            max_steps: 0,
        }
    }
}