Struct alpha_stable::integrator::Integrator
source · pub struct Integrator { /* private fields */ }Expand description
Integrator:
- eps_quad - defines convergence tolerance for Gauss-Konrod integrator.
- eps_bisect - defines convergence tolerance for bisection routine used to find peak of integrand.
- limit_bisect - maximum number of bisection iterations
- continue_on_err - if set to true, integration will not error even if limit_bisect is exceeded or integral does not converge. This code is marked as ‘unsafe’.
Implementations§
Trait Implementations§
source§impl Debug for Integrator
impl Debug for Integrator
Auto Trait Implementations§
impl RefUnwindSafe for Integrator
impl Send for Integrator
impl Sync for Integrator
impl Unpin for Integrator
impl UnwindSafe for Integrator
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