pub struct SecondOrderProblem<ObjFn> { /* private fields */ }Implementations§
Source§impl<ObjFn> SecondOrderProblem<ObjFn>where
ObjFn: SecondOrderObjective,
impl<ObjFn> SecondOrderProblem<ObjFn>where
ObjFn: SecondOrderObjective,
pub fn new(x0: Array1<f64>, objective: ObjFn) -> Self
pub fn with_bounds(self, bounds: Bounds) -> Self
pub fn with_tolerance(self, tolerance: Tolerance) -> Self
pub fn with_max_iterations(self, max_iterations: MaxIterations) -> Self
pub fn with_profile(self, profile: Profile) -> Self
pub fn with_fd_hessian_step(self, fd_hessian_step: f64) -> Self
Auto Trait Implementations§
impl<ObjFn> Freeze for SecondOrderProblem<ObjFn>where
ObjFn: Freeze,
impl<ObjFn> RefUnwindSafe for SecondOrderProblem<ObjFn>where
ObjFn: RefUnwindSafe,
impl<ObjFn> Send for SecondOrderProblem<ObjFn>where
ObjFn: Send,
impl<ObjFn> Sync for SecondOrderProblem<ObjFn>where
ObjFn: Sync,
impl<ObjFn> Unpin for SecondOrderProblem<ObjFn>where
ObjFn: Unpin,
impl<ObjFn> UnsafeUnpin for SecondOrderProblem<ObjFn>where
ObjFn: UnsafeUnpin,
impl<ObjFn> UnwindSafe for SecondOrderProblem<ObjFn>where
ObjFn: 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