greyjack 0.4.6

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


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 use agent_builders_variants::AgentBuildersVariants;
pub use genetic_algorithm::GeneticAlgorithm;
pub use late_acceptance::LateAcceptance;
pub use tabu_search::TabuSearch;