cellular_raza_concepts/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#![deny(missing_docs)]
//! This crate encapsulates concepts which govern an agent-based model specified by
//! [cellular_raza](https://docs.rs/cellular_raza).
//! To learn more about the math and philosophy behind these concepts please refer to
//! [cellular-raza.com](https://cellular-raza.com).

mod cell;
mod cycle;
mod domain;
mod reactions;
/// Contains traits and types which specify cellular reactions specific to the `cpu_os_threads`
/// backend.
pub mod reactions_old;

/// Traits and types which will eventually replace the old [Domain] definition.
// TODO #[deprecated]
pub mod domain_old;
mod errors;
mod interaction;
mod mechanics;
mod plotting;

pub use cell::*;
pub use cycle::*;
pub use domain::*;
pub use errors::*;
pub use interaction::*;
pub use mechanics::*;
pub use plotting::*;
pub use reactions::*;