pub struct OutcomeSimulatorConfig {
pub samples: u32,
pub confidence_threshold: f64,
pub risk_weight: f64,
}Expand description
Configuration for the outcome simulator.
Fields§
§samples: u32Number of Monte Carlo samples to draw.
confidence_threshold: f64Minimum confidence threshold to pass.
risk_weight: f64Risk penalty weight (higher = more conservative).
Trait Implementations§
Source§impl Clone for OutcomeSimulatorConfig
impl Clone for OutcomeSimulatorConfig
Source§fn clone(&self) -> OutcomeSimulatorConfig
fn clone(&self) -> OutcomeSimulatorConfig
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for OutcomeSimulatorConfig
impl Debug for OutcomeSimulatorConfig
Source§impl Default for OutcomeSimulatorConfig
impl Default for OutcomeSimulatorConfig
Source§fn default() -> OutcomeSimulatorConfig
fn default() -> OutcomeSimulatorConfig
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for OutcomeSimulatorConfig
impl RefUnwindSafe for OutcomeSimulatorConfig
impl Send for OutcomeSimulatorConfig
impl Sync for OutcomeSimulatorConfig
impl Unpin for OutcomeSimulatorConfig
impl UnsafeUnpin for OutcomeSimulatorConfig
impl UnwindSafe for OutcomeSimulatorConfig
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more