tatam

Crates.iotatam
lib.rstatam
version0.3.8
sourcesrc
created_at2023-11-24 14:13:43.614616
updated_at2024-07-12 11:47:11.395336
descriptionTheory And Time Analysis Machine
homepage
repositoryhttps://github.com/DavidD12/tatam
max_upload_size
id1047036
size418,444
(DavidD12)

documentation

README

Transition And Theory Analysis Machine

Install

sudo apt install z3
  • Install Tatam
cargo install tatam

Install Vscode extension tatam-lang (Optional)

cd ~/.vscode/extensions
git clone https://github.com/DavidD12/tatam-lang.git

Example

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

Execute

tatam -f file.tat

Documentation

Some documentation can be found here

Commit count: 33

cargo fmt