| Crates.io | tatam |
| lib.rs | tatam |
| version | 0.4.5 |
| created_at | 2023-11-24 14:13:43.614616+00 |
| updated_at | 2025-09-22 12:06:41.150855+00 |
| description | Theory And Time Analysis Machine |
| homepage | |
| repository | https://github.com/DavidD12/tatam |
| max_upload_size | |
| id | 1047036 |
| size | 436,935 |
sudo apt install z3
cargo install tatam
cd ~/.vscode/extensions
git clone https://github.com/DavidD12/tatam-lang.git
cst x: Int
var y: Int
init inits {
y = 0
}
inv invariants {
x > y
}
trans tr_inc {
y < 10 and y' = y + 1
}
trans tr_loop {
y >= 10 and y' = 0
}
prop = G(F (y = 1))
search infinite solve
tatam -f file.tat
Some documentation can be found here