pub struct InterpolationConfig {
pub variable: Var,
pub check_stability: bool,
pub max_degree: usize,
}Expand description
Configuration for polynomial interpolation.
Fields§
§variable: VarVariable to use for interpolation.
check_stability: boolEnable numerical stability checks.
max_degree: usizeMaximum degree allowed.
Trait Implementations§
Source§impl Clone for InterpolationConfig
impl Clone for InterpolationConfig
Source§fn clone(&self) -> InterpolationConfig
fn clone(&self) -> InterpolationConfig
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 InterpolationConfig
impl Debug for InterpolationConfig
Auto Trait Implementations§
impl Freeze for InterpolationConfig
impl RefUnwindSafe for InterpolationConfig
impl Send for InterpolationConfig
impl Sync for InterpolationConfig
impl Unpin for InterpolationConfig
impl UnsafeUnpin for InterpolationConfig
impl UnwindSafe for InterpolationConfig
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