pub struct ConvergenceCriteria {
pub min_levels: usize,
pub max_levels: usize,
pub min_r_squared: f64,
pub order_tolerance: f64,
pub target_accuracy: f64,
}Expand description
Convergence criteria for verification
Fields§
§min_levels: usizeMinimum number of grid levels
max_levels: usizeMaximum number of grid levels
min_r_squared: f64Required R² for order estimation
order_tolerance: f64Tolerance for order estimation
target_accuracy: f64Target accuracy
Trait Implementations§
Source§impl Clone for ConvergenceCriteria
impl Clone for ConvergenceCriteria
Source§fn clone(&self) -> ConvergenceCriteria
fn clone(&self) -> ConvergenceCriteria
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 ConvergenceCriteria
impl Debug for ConvergenceCriteria
Auto Trait Implementations§
impl Freeze for ConvergenceCriteria
impl RefUnwindSafe for ConvergenceCriteria
impl Send for ConvergenceCriteria
impl Sync for ConvergenceCriteria
impl Unpin for ConvergenceCriteria
impl UnwindSafe for ConvergenceCriteria
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more