pub struct IntegralEstimate<T> { /* private fields */ }Expand description
The value of a function evaluated with Gauss-Kronrod integration and associated error estimation.
Implementations§
Source§impl<T: ScalarF64> IntegralEstimate<T>
§Getters
impl<T: ScalarF64> IntegralEstimate<T>
§Getters
Sourcepub const fn iterations(&self) -> usize
pub const fn iterations(&self) -> usize
Return the number of iterations used in integration.
Sourcepub const fn evaluations(&self) -> usize
pub const fn evaluations(&self) -> usize
Return the number of function evaluations used in the integration.
Trait Implementations§
Source§impl<T: Clone> Clone for IntegralEstimate<T>
impl<T: Clone> Clone for IntegralEstimate<T>
Source§fn clone(&self) -> IntegralEstimate<T>
fn clone(&self) -> IntegralEstimate<T>
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<T: Debug> Debug for IntegralEstimate<T>
impl<T: Debug> Debug for IntegralEstimate<T>
Source§impl<T: PartialEq> PartialEq for IntegralEstimate<T>
impl<T: PartialEq> PartialEq for IntegralEstimate<T>
Source§impl<T: PartialOrd> PartialOrd for IntegralEstimate<T>
impl<T: PartialOrd> PartialOrd for IntegralEstimate<T>
impl<T: Copy> Copy for IntegralEstimate<T>
impl<T> StructuralPartialEq for IntegralEstimate<T>
Auto Trait Implementations§
impl<T> Freeze for IntegralEstimate<T>where
T: Freeze,
impl<T> RefUnwindSafe for IntegralEstimate<T>where
T: RefUnwindSafe,
impl<T> Send for IntegralEstimate<T>where
T: Send,
impl<T> Sync for IntegralEstimate<T>where
T: Sync,
impl<T> Unpin for IntegralEstimate<T>where
T: Unpin,
impl<T> UnsafeUnpin for IntegralEstimate<T>where
T: UnsafeUnpin,
impl<T> UnwindSafe for IntegralEstimate<T>where
T: UnwindSafe,
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