quantrs2-ml 0.1.3

Quantum Machine Learning module for QuantRS2
Documentation
//! # DecoherenceModel - Trait Implementations
//!
//! This module contains trait implementations for `DecoherenceModel`.
//!
//! ## Implemented Traits
//!
//! - `Default`
//!
//! 🤖 Generated with [SplitRS](https://github.com/cool-japan/splitrs)

use scirs2_core::random::prelude::*;

use super::types::DecoherenceModel;

impl Default for DecoherenceModel {
    fn default() -> Self {
        Self {
            t1_time: 100.0,
            t2_time: 50.0,
            gate_error_rate: 0.001,
            measurement_error_rate: 0.01,
        }
    }
}