pub struct QuadOptions<S: Scalar> {
pub atol: S,
pub rtol: S,
pub max_subdivisions: usize,
pub points: Vec<S>,
}Expand description
Options for adaptive quadrature.
Fields§
§atol: SAbsolute tolerance.
rtol: SRelative tolerance.
max_subdivisions: usizeMaximum number of subinterval subdivisions.
points: Vec<S>Known singularities or discontinuities where the interval should be pre-split.
Implementations§
Source§impl<S: Scalar> QuadOptions<S>
impl<S: Scalar> QuadOptions<S>
Trait Implementations§
Source§impl<S: Clone + Scalar> Clone for QuadOptions<S>
impl<S: Clone + Scalar> Clone for QuadOptions<S>
Source§fn clone(&self) -> QuadOptions<S>
fn clone(&self) -> QuadOptions<S>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl<S> Freeze for QuadOptions<S>where
S: Freeze,
impl<S> RefUnwindSafe for QuadOptions<S>where
S: RefUnwindSafe,
impl<S> Send for QuadOptions<S>
impl<S> Sync for QuadOptions<S>
impl<S> Unpin for QuadOptions<S>where
S: Unpin,
impl<S> UnsafeUnpin for QuadOptions<S>where
S: UnsafeUnpin,
impl<S> UnwindSafe for QuadOptions<S>where
S: 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