ivy/test/mc1.ivy

16 строки
107 B
XML

#lang ivy1.7
var x : bool
invariant x
after init {
x := true
}
action a = {
x := ~x
}
export a