pub enum RhoBeg {
All(f64),
Set(Vec<f64>),
}Expand description
An enum for specifying the initial change of x which correspond to the rhobeg
argument of the original Powell’s algorithm (hence the name)
Variants§
All(f64)
Used when all x components changes are specified with a single given value
Set(Vec<f64>)
Used to set the components with the given x-dim-sized vector
Auto Trait Implementations§
impl Freeze for RhoBeg
impl RefUnwindSafe for RhoBeg
impl Send for RhoBeg
impl Sync for RhoBeg
impl Unpin for RhoBeg
impl UnwindSafe for RhoBeg
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