pub struct TrustRegionConfig<F> {
pub initial_radius: F,
pub max_radius: F,
pub eta: F,
pub max_cg_iter: usize,
pub convergence: ConvergenceParams<F>,
}Expand description
Configuration for the trust-region solver.
Fields§
§initial_radius: FInitial trust-region radius (default: 1.0).
max_radius: FMaximum trust-region radius (default: 100.0).
eta: FAcceptance threshold for the ratio of actual to predicted reduction (default: 0.1).
max_cg_iter: usizeMaximum CG iterations per trust-region subproblem (default: 2 * dim). If 0, defaults to 2 * dim.
convergence: ConvergenceParams<F>Convergence parameters.
Trait Implementations§
Source§impl<F: Clone> Clone for TrustRegionConfig<F>
impl<F: Clone> Clone for TrustRegionConfig<F>
Source§fn clone(&self) -> TrustRegionConfig<F>
fn clone(&self) -> TrustRegionConfig<F>
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<F: Debug> Debug for TrustRegionConfig<F>
impl<F: Debug> Debug for TrustRegionConfig<F>
Source§impl Default for TrustRegionConfig<f32>
impl Default for TrustRegionConfig<f32>
Auto Trait Implementations§
impl<F> Freeze for TrustRegionConfig<F>where
F: Freeze,
impl<F> RefUnwindSafe for TrustRegionConfig<F>where
F: RefUnwindSafe,
impl<F> Send for TrustRegionConfig<F>where
F: Send,
impl<F> Sync for TrustRegionConfig<F>where
F: Sync,
impl<F> Unpin for TrustRegionConfig<F>where
F: Unpin,
impl<F> UnsafeUnpin for TrustRegionConfig<F>where
F: UnsafeUnpin,
impl<F> UnwindSafe for TrustRegionConfig<F>where
F: 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.