Has anyone have contact with model checking with this tool SPIN, even more any information of model checking (concurrent programs)

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

Yes, SPIN is a very good model checker but I am wondering what you want? Do you just want to hear that yes, I have heard and played with SPIN or do you want suggestions for how to model check source code?

For example, if you're a C programmer, get your hands in ESBMC, write a little program and run ESBMC on it.

That should get you started to understanding what can be done and how to do it. By the way, for starters Model Checking is not static analysis. It is actually much more powerful. It's the anti-static analysis. Model Checking actually 'in a (very narrow) sense' simulates your program and find situations (argument combinations, exceptional situations, border cases) where it would actually fail.

link|improve this answer
Eh? It is exactly static analysis: it reasons from the source code. You might argue it is different than other static analyzers, but I don't see what point that serves; they're all different. – Ira Baxter Jul 20 '11 at 16:42
Sorry, it is not. The code is analysed dynamically, therefore it is not static. Model checkers don't execute the code 'per se' but generate models which are simulated. Therefore it is not static analysis. lint is a static analyser. SPIN is not. – Paulo J. Matos Jul 28 '11 at 8:23
1  
I think your definitions are confused. Dynamic analysis means to capture information as the program runs. With SPIN, you extract a abstract model of the program (generally using static analysis!) and then SPIN enumerates the state space. Simulation of the state space is not anything close to program exeuction. There is no "program" to execute at this point. – Ira Baxter Jul 28 '11 at 11:37
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.