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
35
36
37
38
39
40
41
42
//! A collection of modern heuristic optimization toolkit.
//!
//! There are tree common optimization methods in the crate currently.
//! 1.genetic algorithm
//! 2.simluated annealing
//! 3.particle swarm optimization
//!
//! You can fit any of these methods into your project by enabling relavant features
//! To use genetic algorithm
//! ```toml
//! [dependencies]
//! mincost = { version = "0.1.1", features = ["ga"] }
//! ```
//! To use simulated annealing algorithm
//! ```toml
//! [dependencies]
//! mincost = { version = "0.1.1", features = ["sa"] }
//! ```
//! To use particle swarm optimization
//! ```toml
//! [dependencies]
//! mincost = { version = "0.1.1", features = ["pso"] }
//! ```
pub use *;
pub use *;
pub use *;