Struct rustneat::population::Population [] [src]

pub struct Population {
    pub species: Vec<Specie>,
    // some fields omitted
}

All species in the network

Fields

container of species

Methods

impl Population
[src]

[src]

Create a new population of size X.

[src]

Find total of all orgnaisms in the population

[src]

Create offspring by mutation and mating. May create new species.

[src]

TODO

[src]

Return all organisms of the population

[src]

How many iterations without improvement

Trait Implementations

impl Debug for Population
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Population

impl Sync for Population