pub struct ParametricSimplexConfig {
pub param_type: ParametricType,
pub max_breakpoints: usize,
pub lambda_min: BigRational,
pub lambda_max: BigRational,
}Expand description
Configuration for parametric simplex.
Fields§
§param_type: ParametricTypeParametric type.
max_breakpoints: usizeMaximum number of breakpoints to compute.
lambda_min: BigRationalMinimum λ value to explore (inclusive).
lambda_max: BigRationalMaximum λ value to explore (inclusive).
Trait Implementations§
Source§impl Clone for ParametricSimplexConfig
impl Clone for ParametricSimplexConfig
Source§fn clone(&self) -> ParametricSimplexConfig
fn clone(&self) -> ParametricSimplexConfig
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 moreSource§impl Debug for ParametricSimplexConfig
impl Debug for ParametricSimplexConfig
Auto Trait Implementations§
impl Freeze for ParametricSimplexConfig
impl RefUnwindSafe for ParametricSimplexConfig
impl Send for ParametricSimplexConfig
impl Sync for ParametricSimplexConfig
impl Unpin for ParametricSimplexConfig
impl UnsafeUnpin for ParametricSimplexConfig
impl UnwindSafe for ParametricSimplexConfig
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