quantrs2-anneal 0.1.3

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

use super::types::{PredictionConfig, PredictionUpdateStrategy};

impl Default for PredictionConfig {
    fn default() -> Self {
        Self {
            enable_trend_prediction: true,
            enable_performance_forecasting: true,
            accuracy_threshold: 0.8,
            confidence_level: 0.95,
            update_strategy: PredictionUpdateStrategy::Continuous,
        }
    }
}