typed: change compile flags for spin models to allow more processes

This commit is contained in:
Sam Caldwell 2022-06-01 13:46:31 -04:00
parent c9b25df034
commit 788c9b0e46
1 changed files with 5 additions and 1 deletions

View File

@ -10,7 +10,11 @@ if [[ $? -ne 0 ]]; then
exit 1
fi
gcc -o $EXE pan.c
gcc -o $EXE -D NFAIR=3 pan.c
# -a to analyze, -f for (weak) fairness
# -n to elide report of unreached states
# -N spec-name to verify a particular specification
$EXE -a -f -n -N $2
rm $EXE pan.*