| Crates.io | mutare |
| lib.rs | mutare |
| version | 0.6.0 |
| created_at | 2025-08-11 15:33:45.395305+00 |
| updated_at | 2025-09-13 14:26:21.629254+00 |
| description | A simple tool to simulate and analyze a stochastic agent-based model of adaptation in uncertain environments. |
| homepage | |
| repository | https://github.com/Marco-Mendivil-Carboni/mutare |
| max_upload_size | |
| id | 1790351 |
| size | 63,878 |
mutare (Latin for "to change") is a simple tool to simulate and analyze a stochastic agent-based model of adaptation in uncertain environments.
mutare simulates a stochastic agent-based model of adaptation in uncertain environments with the following characteristics:
n_env possible states and follows a Markov chain with configurable transition probabilities (prob_trans_env).n_phe possible states, and a probability distribution over phenotypes.prob_rep and prob_dec).prob_mut this distribution suffers a slight mutation (modulated by std_dev_mut).steps_per_file records, and the state is saved every steps_per_save steps if specified.From these output files mutare can also compute the following observables:
You can install mutare via cargo:
cargo install mutare
Or build it from source:
git clone https://github.com/Marco-Mendivil-Carboni/mutare.git
cd mutare
cargo build --release # The release profile is much faster than the dev profile
Start by creating a simulation directory (e.g. example_sim/) and placing a config file named config.toml inside it.
Here is an example config file:
[model]
n_env = 2
n_phe = 2
prob_trans_env = [ [ 0.99, 0.01,], [ 0.01, 0.99,],]
prob_rep = [ [ 0.012, 0.0,], [ 0.0, 0.008,],]
prob_dec = [ [ 0.0, 0.016,], [ 0.012, 0.0,],]
prob_mut = 0.001
std_dev_mut = 0.1
[init]
n_agt = 4096
prob_phe = [ 0.5, 0.5,]
[output]
steps_per_file = 16384
steps_per_save = 1024
Now you can begin making simulation runs and analyzing them. Here are some examples of common commands:
mutare --sim-dir example_sim/ create # Create a new simulation run
mutare --sim-dir example_sim/ resume --run-idx 0 # Resume run 0
mutare --sim-dir example_sim/ analyze # Analyze all runs
mutare --sim-dir example_sim/ clean # Clean up all simulation runs
Run mutare --help to see more detailed help information.
The repository also includes some Python utility modules in scripts/utils/ for automating simulation workflows.
If you want to use these utilities you can set up the Python environment by running the following commands (after having cloned the repository):
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
Documentation is available via:
cargo doc --no-deps --open # Not generating docs for dependencies saves time
This project is licensed under the MIT License.
For questions or collaboration, reach out to marcomc@ucm.es or open an issue on GitHub.