peroxide::numerical::integral

Trait GKIntegrable

Source
pub trait GKIntegrable:
    GLKIntegrable
    + Sub<Self, Output = Self>
    + Sized
    + Clone {
    // Required methods
    fn is_finite(&self) -> bool;
    fn gk_norm(&self) -> f64;

    // Provided method
    fn is_within_tol(&self, tol: f64) -> bool { ... }
}
Expand description

Type that can be integrated using Gauss Kronrod Quadrature

Required Methods§

Source

fn is_finite(&self) -> bool

Returns true if this object is neither infinite nor NaN.

Source

fn gk_norm(&self) -> f64

Returns the value of the norm used by Gauss Kronrod Quadrature to compute relative tolerances.

Provided Methods§

Source

fn is_within_tol(&self, tol: f64) -> bool

Returns true if this object is less than the tolerance passed as the tol argument. By default, returns true if its gk_norm is less than tol.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl GKIntegrable for f64

Source§

fn is_finite(&self) -> bool

Source§

fn gk_norm(&self) -> f64

Implementors§