pub enum Integral {
}
Variants§
GaussLegendre(usize)
NewtonCotes(usize)
G7K15(f64, u32)
G10K21(f64, u32)
G15K31(f64, u32)
G20K41(f64, u32)
G25K51(f64, u32)
G30K61(f64, u32)
G7K15R(f64, u32)
G10K21R(f64, u32)
G15K31R(f64, u32)
G20K41R(f64, u32)
G25K51R(f64, u32)
G30K61R(f64, u32)
Implementations§
source§impl Integral
impl Integral
pub fn get_num_node(&self) -> usize
pub fn get_tol(&self) -> f64
pub fn get_max_iter(&self) -> u32
pub fn get_gauss_kronrod_order(&self) -> (u8, u8)
pub fn is_relative(&self) -> bool
pub fn change_tol(&self, tol: f64) -> Self
pub fn change_max_iter(&self, max_iter: u32) -> Self
Trait Implementations§
impl Copy for Integral
impl StructuralPartialEq for Integral
Auto Trait Implementations§
impl Freeze for Integral
impl RefUnwindSafe for Integral
impl Send for Integral
impl Sync for Integral
impl Unpin for Integral
impl UnwindSafe for Integral
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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