Skip to main content

glazier_core/
lib.rs

1//! Cellular Potts lattice, energies and the serial sweep that defines them.
2//!
3//! The serial engine here is the correctness reference: every other engine in
4//! the workspace has to agree with it.
5
6pub mod blueprint;
7pub mod connectivity;
8pub mod cpu;
9pub mod field;
10pub mod lattice;
11pub mod model;
12pub mod moments;
13pub mod motility;
14pub mod npy;
15pub mod rng;
16
17pub use blueprint::Blueprint;
18pub use cpu::Simulation;
19pub use lattice::Lattice;
20pub use model::{CellType, Model};