[][src]Struct ecosystem::Ecosystem

pub struct Ecosystem<O: Organism> {
    pub organisms: Vec<O>,
    pub generation: u32,
}

A collection of organisms.

Fields

organisms: Vec<O>

A vector containing the organisms.

generation: u32

The current generation number.

Methods

impl<O: Organism + Send + Sync> Ecosystem<O>[src]

pub fn new(organisms: Vec<O>) -> Self[src]

Creates a new ecosystem with the given organisms.

pub fn fittest(&self) -> &O[src]

Returns the organism in the ecosystem with the highest fitness.

pub fn breed_next_generation(&mut self, mutation_rate: f64)[src]

Creates the next generation of organisms through the breeding of suitable organisms.

Auto Trait Implementations

impl<O> RefUnwindSafe for Ecosystem<O> where
    O: RefUnwindSafe

impl<O> Send for Ecosystem<O> where
    O: Send

impl<O> Sync for Ecosystem<O> where
    O: Sync

impl<O> Unpin for Ecosystem<O> where
    O: Unpin

impl<O> UnwindSafe for Ecosystem<O> where
    O: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,