pub enum ErrorBoundMethod {
Deterministic,
Probabilistic,
Adaptive,
NeumannTruncation,
}Expand description
Methods for computing error bounds.
Variants§
Deterministic
Deterministic bounds based on matrix properties
Probabilistic
Probabilistic bounds from random sampling
Adaptive
Adaptive bounds that tighten during iteration
NeumannTruncation
Bounds from Neumann series truncation analysis
Trait Implementations§
Source§impl Clone for ErrorBoundMethod
impl Clone for ErrorBoundMethod
Source§fn clone(&self) -> ErrorBoundMethod
fn clone(&self) -> ErrorBoundMethod
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 ErrorBoundMethod
impl Debug for ErrorBoundMethod
Source§impl<'de> Deserialize<'de> for ErrorBoundMethod
impl<'de> Deserialize<'de> for ErrorBoundMethod
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ErrorBoundMethod
impl PartialEq for ErrorBoundMethod
Source§impl Serialize for ErrorBoundMethod
impl Serialize for ErrorBoundMethod
impl Copy for ErrorBoundMethod
impl Eq for ErrorBoundMethod
impl StructuralPartialEq for ErrorBoundMethod
Auto Trait Implementations§
impl Freeze for ErrorBoundMethod
impl RefUnwindSafe for ErrorBoundMethod
impl Send for ErrorBoundMethod
impl Sync for ErrorBoundMethod
impl Unpin for ErrorBoundMethod
impl UnwindSafe for ErrorBoundMethod
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