roma_lib 0.1.1

A Rust metaheuristics framework inspired by jMetal for optimization and experimentation.
Documentation
1
2
3
4
5
6
7
8

pub fn maximizing_fitness(candidate: f64, reference: f64) -> bool {
    candidate > reference
}

pub fn minimizing_fitness(candidate: f64, reference: f64) -> bool {
    candidate < reference
}