src/HOL/Predicate_Compile_Examples/IMP_2.thy
author bulwahn
Tue, 07 Sep 2010 11:51:53 +0200
changeset 39186 475856793715
child 39249 9c866b248cb1
permissions -rw-r--r--
adding IMP quickcheck examples

theory IMP_2
imports "Predicate_Compile_Quickcheck"
begin

subsection {* IMP *}

text {*
  In this example, the state is one boolean variable and the commands are Skip, Ass, Seq, IF and While.
*}

types
  var = unit
  state = bool

datatype com =
  Skip |
  Ass bool |
  Seq com com |
  IF com com |
  While com

inductive exec :: "com => state => state => bool" where
  "exec Skip s s" |
  "exec (Ass e) s e" |
  "exec c1 s1 s2 ==> exec c2 s2 s3 ==> exec (Seq c1 c2) s1 s3" |
  "s ==> exec c1 s t ==> exec (IF c1 c2) s t" |
  "\<not> s ==> exec c2 s t ==> exec (IF c1 c2) s t" |
  "\<not> s ==> exec (While c) s s" |
  "s ==> exec c s s' ==> exec (While c) s' s'' ==> exec (While c) s s''"

lemma
  "exec c s s' ==> exec (Seq c c) s s'"
quickcheck[generator = predicate_compile_wo_ff, size = 2, iterations = 1]
oops


end