Expand description
Markov chain-like module
This module contains the necessary tools to create a Markov chain-like system.
The main struct is the System which contains a state and an evolver.
The state is the current state of the system and the evolver is the function that
evolves the state to a posterior state.
Structs§
- A system is a container for a state of something and an evolver which evolves the current state to a posterior state.
Traits§
- An Evolver moves a system’s state into a posterior stage.