oxilean_codegen/opt_strength/strengthreductionpass_traits.rs
1//! # StrengthReductionPass - Trait Implementations
2//!
3//! This module contains trait implementations for `StrengthReductionPass`.
4//!
5//! ## Implemented Traits
6//!
7//! - `Default`
8//!
9//! 🤖 Generated with [SplitRS](https://github.com/cool-japan/splitrs)
10
11use crate::lcnf::*;
12
13use super::types::{StrengthConfig, StrengthReductionPass};
14
15impl Default for StrengthReductionPass {
16 fn default() -> Self {
17 StrengthReductionPass::new(StrengthConfig::default())
18 }
19}