fugue-evo 0.3.0

An implementation of fugue for running evolutionary algorithms as Bayesian inference: priors and likelihoods as probabilistic programs, tempered SMC in trace space, annealed optimization, Pareto posteriors - plus a standalone classical EC toolkit
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Fitness evaluation and benchmarks
//!
//! This module provides the fitness abstraction and benchmark functions.

pub mod benchmarks;
pub mod multi_objective;
pub mod traits;

pub mod prelude {
    pub use super::benchmarks::*;
    pub use super::multi_objective::{ClosureMultiObjective, MultiObjectiveFitness};
    pub use super::traits::*;
}