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