Skip to main content

quantrs2_sim/quantum_gravity_simulation/
cdtconfig_traits.rs

1//! # CDTConfig - Trait Implementations
2//!
3//! This module contains trait implementations for `CDTConfig`.
4//!
5//! ## Implemented Traits
6//!
7//! - `Default`
8//!
9//! 🤖 Generated with [SplitRS](https://github.com/cool-japan/splitrs)
10
11use scirs2_core::random::prelude::*;
12
13use super::types::CDTConfig;
14
15impl Default for CDTConfig {
16    fn default() -> Self {
17        Self {
18            num_simplices: 10_000,
19            time_slicing: 0.1,
20            spatial_volume: 1000.0,
21            bare_coupling: 0.1,
22            cosmological_coupling: 0.01,
23            monte_carlo_moves: true,
24            mc_sweeps: 1000,
25            acceptance_threshold: 0.5,
26        }
27    }
28}