Struct OptimizerConstraints
pub struct OptimizerConstraints {
pub max_sigma_ratio: f64,
pub max_mean_sep_sigmas: f64,
}Expand description
Tunable bounds on the optimizer’s policy region.
Fields§
§max_sigma_ratio: f64Maximum σ_large / σ_small.
max_mean_sep_sigmas: f64Maximum |μ_g - μ_market| measured in units of σ_market.
Trait Implementations§
§impl Clone for OptimizerConstraints
impl Clone for OptimizerConstraints
§fn clone(&self) -> OptimizerConstraints
fn clone(&self) -> OptimizerConstraints
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read more§impl Debug for OptimizerConstraints
impl Debug for OptimizerConstraints
§impl Default for OptimizerConstraints
impl Default for OptimizerConstraints
§impl PartialEq for OptimizerConstraints
impl PartialEq for OptimizerConstraints
§fn eq(&self, other: &OptimizerConstraints) -> bool
fn eq(&self, other: &OptimizerConstraints) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for OptimizerConstraints
impl StructuralPartialEq for OptimizerConstraints
Auto Trait Implementations§
impl Freeze for OptimizerConstraints
impl RefUnwindSafe for OptimizerConstraints
impl Send for OptimizerConstraints
impl Sync for OptimizerConstraints
impl Unpin for OptimizerConstraints
impl UnsafeUnpin for OptimizerConstraints
impl UnwindSafe for OptimizerConstraints
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