Trait peroxide::numerical::integral::GLKIntegrable

source ·
pub trait GLKIntegrable:
    Add<Self, Output = Self>
    + Mul<f64, Output = Self>
    + Sized {
    const ZERO: Self;
}
Expand description

Type that can be integrated using Gauss Legendre or Kronrod Quadrature

Required Associated Constants§

source

const ZERO: Self

The neutral element of addition.

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl GLKIntegrable for f64

source§

const ZERO: Self = 0f64

Implementors§

source§

impl GLKIntegrable for C64

source§

const ZERO: Self = C64::ZERO