pub struct PerturbationVector {
pub x_idx: Vec<usize>,
pub r_idx: Vec<Vec<usize>>,
}
Expand description
Perturbation Vector for the accelerated computation of the Jacobian.
Fields§
§x_idx: Vec<usize>
x indices
r_idx: Vec<Vec<usize>>
corresponding function indices
Implementations§
Trait Implementations§
Source§impl Clone for PerturbationVector
impl Clone for PerturbationVector
Source§fn clone(&self) -> PerturbationVector
fn clone(&self) -> PerturbationVector
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for PerturbationVector
impl Default for PerturbationVector
Source§fn default() -> PerturbationVector
fn default() -> PerturbationVector
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for PerturbationVector
impl RefUnwindSafe for PerturbationVector
impl Send for PerturbationVector
impl Sync for PerturbationVector
impl Unpin for PerturbationVector
impl UnwindSafe for PerturbationVector
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