greyjack 0.4.12

Rust version of GreyJack Solver for constraint continuous, integer, mixed integer optimization problems
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16


pub mod base;
pub mod termination_strategies;
pub mod metaheuristic_bases;
pub mod agent_builders_variants;
pub mod genetic_algorithm;
pub mod late_acceptance;
pub mod tabu_search;
pub mod simulated_annealing;

pub use agent_builders_variants::AgentBuildersVariants;
pub use genetic_algorithm::GeneticAlgorithm;
pub use late_acceptance::LateAcceptance;
pub use tabu_search::TabuSearch;
pub use simulated_annealing::SimulatedAnnealing;