1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
//! This module contains the trait definition of the niches beta rate used in the
//! niches population refitness.

use niches_beta_rate::NichesBetaRates::*;
use slope_params::SlopeParams;

/// This trait defines the niches beta rate function used to compute the beta value.
pub trait NichesBetaRate: Send + Sync {
    /// Returns the niches beta rate according to the generation, the progress in the
    /// last generations, and the number of solutions found.
    fn rate(&self, generation: u64, progress: f64, n_solutions: usize) -> f64;
}

/// Provided NichesBetaRate implementations.
pub enum NichesBetaRates {
    /// Constant value for the whole algorithm.
    Constant(f64),
    /// Linear function of iterations.
    Linear(SlopeParams),
    /// Quadratic function of iterations.
    Quadratic(SlopeParams),
}

impl NichesBetaRate for NichesBetaRates {
    fn rate(&self, generation: u64, _progress: f64, _n_solutions: usize) -> f64 {
        match self {
            Constant(c) => *c,
            Linear(sp) => sp.check_bound(sp.coefficient * generation as f64 + sp.start),
            Quadratic(sp) => {
                sp.check_bound(sp.coefficient * generation as f64 * generation as f64 + sp.start)
            }
        }
    }
}