1 2 3 4 5 6 7 8 9 10 11 12 13 14
//! This is a documentation-only module which describes how to use this crate
//! to work with parametrised Boolean networks and construct symbolic algorithms
//! with them.
//!
//! Table of contents:
//! - [Regulatory graphs](./p01_regulatory_graph/index.html)
//! - [Parametrised Boolean Networks](./p02_boolean_network/index.html)
//! - [Symbolic Asynchronous Graph](./p03_symbolic_async_graph/index.html)
//! - [Graph Algorithms Sample](./p04_graph_algorithm_sample/index.html)
pub mod p01_regulatory_graph;
pub mod p02_boolean_network;
pub mod p03_symbolic_async_graph;
pub mod p04_graph_algorithm_sample;