문제

I learned Promela and Spin, but when I try verifying the model, these lines are returned to me.

enter image description here

What do they mean?

Thanks

도움이 되었습니까?

해결책

That means that you ran a Spin verification and your verification identified an error. Your next step is to determine how the error occurred. You do that by generating and examining the 'trail file'.

If you performed your verification as:

$ spin -a model.pml
$ gcc -o pan pan.c
$ ./pan

then examine the trail using the model.pml file with:

$ spin -p -t model.pml

다른 팁

Probably, you have a deadlock or other error in your model.

If you would post your complete console output, I could probably update this answer to give you more information!

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top