verbs_rs/agent/mod.rs
1//! Agent traits and structures
2//!
3//! Traits defining required agent functionality
4//! and some implementations of common data
5//! structures of agents for use in simulations.
6//!
7
8pub mod agent_vec;
9pub mod singleton_agent;
10pub mod traits;
11
12pub use agent_vec::*;
13pub use singleton_agent::*;
14pub use traits::*;