Enum revonet::settings::MutationOperator [] [src]

pub enum MutationOperator {
    Gaussian,
    Uniform,
}

Enumeration for different types of mutation operators.

Variants

Gaussian mutation. Genes are updated by random value taken from Normal distribution.

Uniform mutation. Genes are updated by random value taken from uniform distribution.

Trait Implementations

impl Clone for MutationOperator
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for MutationOperator
[src]

impl Debug for MutationOperator
[src]

Formats the value using the given formatter.

impl PartialEq for MutationOperator
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.