pub struct CgOptions {
pub tolerance: Tolerance,
pub max_iterations: usize,
pub residual_recompute_interval: usize,
}Fields§
§tolerance: Tolerance§max_iterations: usize§residual_recompute_interval: usizeA true residual b-Ax is recomputed at this interval and before success. Replacement restarts the search direction, trading some speed for reliability.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CgOptions
impl RefUnwindSafe for CgOptions
impl Send for CgOptions
impl Sync for CgOptions
impl Unpin for CgOptions
impl UnsafeUnpin for CgOptions
impl UnwindSafe for CgOptions
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