//! Module defining attractor traits and implementations.
//!
//! Attractors are mathematical systems that evolve over time and usually settle into
//! a specific pattern or set of states. This module provides the core interface for
//! implementing different types of attractors.
use Complex;
pub use Chirikov;
pub use Clifford;
pub use DeJong;
pub use Duffing;
pub use Gingerbreadman;
pub use Henon;
pub use Ikeda;
pub use Tinkerbell;
/// Trait defining the interface for attractor implementations.