Colin THOMAS

Update README.md

Showing 1 changed file with 19 additions and 0 deletions
1 +# Python ITS model checker
2 +
3 +Given a model (the symbolic representation of the statespace and the transition relation) build an object able to symbolically compute the set of states satistfying a formula (CTL, Fair CTL, wip : ACTL and ARCTL).
4 +
5 +
6 +## Requirement
7 + - `pyddd` [https://github.com/fpom/pyddd](https://github.com/fpom/pyddd)
8 + - `pytl` [https://github.com/fpom/pytl](https://github.com/fpom/pytl)
9 +
10 +## Usage
11 +
12 +The symbolic representation of the model must be :
13 + - a sdd for the state space (see [pyddd](https://github.com/fpom/pyddd))
14 + - a shom for the precedence relation (see [pyddd](https://github.com/fpom/pyddd))
15 +
16 +### CTL
17 +
18 +
19 +### Fair CTL
......