Software Verification project developed in the year 2022-2023 by Davide Albiero and Damiano Mason.
The Abstract Interpreter implements 3 types of domains:
- Interval Domain
- Sign Domain
- Congruence Domain
It is also possible to specify the widening delay as a parameter in the constructor of the abstract state.
x:=0;whilex<40do {
x++;
};whilex!=0do {
x:=x-1;
}More examples are available in the Examples folder.


