turboswarm-core 0.7.0

Particle Swarm Optimization core: extensible and modular
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Social topologies: they define the neighborhood of each particle.
//!
//! Phase 1: `GlobalBest` implemented.
//! Phase 2: `Ring` (lbest ring) and `VonNeumann` (2D grid) implemented.

mod global;
mod random;
mod ring;
mod von_neumann;

pub use global::GlobalBest;
pub use random::Random;
pub use ring::Ring;
pub use von_neumann::VonNeumann;