biodivine_pbn_control/
lib.rs

1pub mod control;
2
3/// "Standard" algorithms mostly adapted from Aeon.
4pub mod aeon;
5
6/// A perturbed version of the symbolic asynchronous graph.  We keep it in a separate
7/// module because the implementation is very fragile and we want to hide as much of the
8/// API as possible even from ourselves!
9pub mod perturbation;
10
11/// Utility module with helper methods for running experiments based on the attached
12/// network_sampler.py and run_groups.py
13pub mod experiment_utils;
14
15pub mod phenotype_control;
16
17pub mod tests;