pub struct Point<V> {
pub values: Vec<f64>,
pub data: V,
}Expand description
A point in multi-objective space.
Fields§
§values: Vec<f64>The actual values across all objectives.
data: VAssociated data (e.g. an ID or candidate metadata).
Trait Implementations§
Auto Trait Implementations§
impl<V> Freeze for Point<V>where
V: Freeze,
impl<V> RefUnwindSafe for Point<V>where
V: RefUnwindSafe,
impl<V> Send for Point<V>where
V: Send,
impl<V> Sync for Point<V>where
V: Sync,
impl<V> Unpin for Point<V>where
V: Unpin,
impl<V> UnwindSafe for Point<V>where
V: 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