Struct multivariate_optimization::optimize::BasicSpecimen
source · pub struct BasicSpecimen {
pub params: Vec<f64>,
pub cost: f64,
}Expand description
Most simple implementation of a Specimen.
Fields§
§params: Vec<f64>Coefficients used to create specimen
cost: f64Fitness (smaller values are better)
Trait Implementations§
source§impl Clone for BasicSpecimen
impl Clone for BasicSpecimen
source§fn clone(&self) -> BasicSpecimen
fn clone(&self) -> BasicSpecimen
Returns a copy 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 Debug for BasicSpecimen
impl Debug for BasicSpecimen
Auto Trait Implementations§
impl RefUnwindSafe for BasicSpecimen
impl Send for BasicSpecimen
impl Sync for BasicSpecimen
impl Unpin for BasicSpecimen
impl UnwindSafe for BasicSpecimen
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