anysystem 0.2.0

A framework for deterministic simulation and testing of distributed systems
1
2
3
4
5
6
7
//! Implementations of model checking search strategies.

pub mod bfs;
pub mod dfs;

pub use bfs::Bfs;
pub use dfs::Dfs;