pub struct Front<T>{ /* private fields */ }
Expand description
A Front<T>
is a collection of T
’s that are non-dominated with respect to each other.
This is useful for multi-objective optimization problems where the goal is to find
the best solutions that are not dominated by any other solution.
This results in what is called the Pareto front.
Implementations§
Source§impl<T> Front<T>
impl<T> Front<T>
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for Front<T>
impl<T> !RefUnwindSafe for Front<T>
impl<T> Send for Front<T>
impl<T> Sync for Front<T>
impl<T> Unpin for Front<T>
impl<T> !UnwindSafe for Front<T>
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