glazier-core 0.1.1

Cellular Potts lattice, energies and serial sweep
Documentation
//! Cellular Potts lattice, energies and the serial sweep that defines them.
//!
//! The serial engine here is the correctness reference: every other engine in
//! the workspace has to agree with it.

pub mod blueprint;
pub mod connectivity;
pub mod cpu;
pub mod field;
pub mod lattice;
pub mod model;
pub mod moments;
pub mod motility;
pub mod npy;
pub mod rng;

pub use blueprint::Blueprint;
pub use cpu::Simulation;
pub use lattice::Lattice;
pub use model::{CellType, Model};