pub struct BFGSConfig<T: NabledReal = f64> {
pub step_size: T,
pub max_iterations: usize,
pub tolerance: T,
pub curvature_tolerance: T,
}Expand description
Configuration for BFGS quasi-Newton optimization.
Fields§
§step_size: TInitial step size multiplier.
max_iterations: usizeMaximum optimization iterations.
tolerance: TGradient norm tolerance for convergence.
curvature_tolerance: TMinimum curvature s^T y required for Hessian updates.
Trait Implementations§
Source§impl<T: Clone + NabledReal> Clone for BFGSConfig<T>
impl<T: Clone + NabledReal> Clone for BFGSConfig<T>
Source§fn clone(&self) -> BFGSConfig<T>
fn clone(&self) -> BFGSConfig<T>
Returns a duplicate 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<T: Debug + NabledReal> Debug for BFGSConfig<T>
impl<T: Debug + NabledReal> Debug for BFGSConfig<T>
Source§impl<T: NabledReal> Default for BFGSConfig<T>
impl<T: NabledReal> Default for BFGSConfig<T>
impl<T: Copy + NabledReal> Copy for BFGSConfig<T>
Auto Trait Implementations§
impl<T> Freeze for BFGSConfig<T>where
T: Freeze,
impl<T> RefUnwindSafe for BFGSConfig<T>where
T: RefUnwindSafe,
impl<T> Send for BFGSConfig<T>
impl<T> Sync for BFGSConfig<T>
impl<T> Unpin for BFGSConfig<T>where
T: Unpin,
impl<T> UnsafeUnpin for BFGSConfig<T>where
T: UnsafeUnpin,
impl<T> UnwindSafe for BFGSConfig<T>where
T: 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