cellular_raza_concepts/
lib.rs

1#![deny(missing_docs)]
2//! This crate encapsulates concepts which govern an agent-based model specified by
3//! [cellular_raza](https://docs.rs/cellular_raza).
4//! To learn more about the math and philosophy behind these concepts please refer to
5//! [cellular-raza.com](https://cellular-raza.com).
6
7mod cell;
8mod cycle;
9mod domain;
10mod reactions;
11/// Contains traits and types which specify cellular reactions specific to the `cpu_os_threads`
12/// backend.
13pub mod reactions_old;
14
15/// Traits and types which will eventually replace the old [Domain] definition.
16// TODO #[deprecated]
17pub mod domain_old;
18mod errors;
19mod interaction;
20mod mechanics;
21mod plotting;
22
23pub use cell::*;
24pub use cycle::*;
25pub use domain::*;
26pub use errors::*;
27pub use interaction::*;
28pub use mechanics::*;
29pub use plotting::*;
30pub use reactions::*;