pub struct MapElitesResult<G: Genome> {
pub archive: MapElitesArchive<G>,
pub best: Option<Individual<G>>,
pub generations: usize,
pub total_evaluations: usize,
}Expand description
Results from MAP-Elites evolution.
Fields§
§archive: MapElitesArchive<G>The final archive.
best: Option<Individual<G>>Best individual found (highest fitness).
generations: usizeNumber of generations run.
total_evaluations: usizeTotal individuals evaluated.
Trait Implementations§
Auto Trait Implementations§
impl<G> Freeze for MapElitesResult<G>where
G: Freeze,
impl<G> RefUnwindSafe for MapElitesResult<G>where
G: RefUnwindSafe,
impl<G> Send for MapElitesResult<G>
impl<G> Sync for MapElitesResult<G>
impl<G> Unpin for MapElitesResult<G>where
G: Unpin,
impl<G> UnsafeUnpin for MapElitesResult<G>where
G: UnsafeUnpin,
impl<G> UnwindSafe for MapElitesResult<G>where
G: 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