← home

Spin is a model checker. Use promella (.pml) format to create state machines for which spin can "check" properties, validity, etc.

How to check a trace: spin -t0 -s -r the-file.pml

How to check a property written in the file given the property is assocated as such:

ltl property {
	always (something = something else)
}

then check the property with: spin -run -a -DNOREDUCE sctp.pml

Some more basic tools:

http://spinroot.com/spin/Man/ for specific man-based information

spinroot.com for more info

← home