src/HOL/Predicate_Compile_Examples/IMP_4.thy
author bulwahn
Wed, 06 Jul 2011 13:52:42 +0200
changeset 43686 bc7d63c7fd6f
parent 42463 f270e3e18be5
child 45451 74515e8e6046
permissions -rw-r--r--
tuning options to avoid spurious isabelle test failures
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
39186
475856793715 adding IMP quickcheck examples
bulwahn
parents:
diff changeset
     1
theory IMP_4
41413
64cd30d6b0b8 explicit file specifications -- avoid secondary load path;
wenzelm
parents: 40924
diff changeset
     2
imports "~~/src/HOL/Library/Predicate_Compile_Quickcheck"
39186
475856793715 adding IMP quickcheck examples
bulwahn
parents:
diff changeset
     3
begin
475856793715 adding IMP quickcheck examples
bulwahn
parents:
diff changeset
     4
475856793715 adding IMP quickcheck examples
bulwahn
parents:
diff changeset
     5
subsection {* IMP *}
475856793715 adding IMP quickcheck examples
bulwahn
parents:
diff changeset
     6
475856793715 adding IMP quickcheck examples
bulwahn
parents:
diff changeset
     7
text {*
475856793715 adding IMP quickcheck examples
bulwahn
parents:
diff changeset
     8
  In this example, the state is a list of integers and the commands are Skip, Ass, Seq, IF and While.
475856793715 adding IMP quickcheck examples
bulwahn
parents:
diff changeset
     9
*}
475856793715 adding IMP quickcheck examples
bulwahn
parents:
diff changeset
    10
42463
f270e3e18be5 modernized specifications;
wenzelm
parents: 41413
diff changeset
    11
type_synonym var = nat
f270e3e18be5 modernized specifications;
wenzelm
parents: 41413
diff changeset
    12
type_synonym state = "int list"
39186
475856793715 adding IMP quickcheck examples
bulwahn
parents:
diff changeset
    13
475856793715 adding IMP quickcheck examples
bulwahn
parents:
diff changeset
    14
datatype com =
475856793715 adding IMP quickcheck examples
bulwahn
parents:
diff changeset
    15
  Skip |
475856793715 adding IMP quickcheck examples
bulwahn
parents:
diff changeset
    16
  Ass var "int" |
475856793715 adding IMP quickcheck examples
bulwahn
parents:
diff changeset
    17
  Seq com com |
475856793715 adding IMP quickcheck examples
bulwahn
parents:
diff changeset
    18
  IF "state list" com com |
475856793715 adding IMP quickcheck examples
bulwahn
parents:
diff changeset
    19
  While "state list" com
475856793715 adding IMP quickcheck examples
bulwahn
parents:
diff changeset
    20
475856793715 adding IMP quickcheck examples
bulwahn
parents:
diff changeset
    21
inductive exec :: "com => state => state => bool" where
475856793715 adding IMP quickcheck examples
bulwahn
parents:
diff changeset
    22
  "exec Skip s s" |
475856793715 adding IMP quickcheck examples
bulwahn
parents:
diff changeset
    23
  "exec (Ass x e) s (s[x := e])" |
475856793715 adding IMP quickcheck examples
bulwahn
parents:
diff changeset
    24
  "exec c1 s1 s2 ==> exec c2 s2 s3 ==> exec (Seq c1 c2) s1 s3" |
475856793715 adding IMP quickcheck examples
bulwahn
parents:
diff changeset
    25
  "s \<in> set b ==> exec c1 s t ==> exec (IF b c1 c2) s t" |
475856793715 adding IMP quickcheck examples
bulwahn
parents:
diff changeset
    26
  "s \<notin> set b ==> exec c2 s t ==> exec (IF b c1 c2) s t" |
475856793715 adding IMP quickcheck examples
bulwahn
parents:
diff changeset
    27
  "s \<notin> set b ==> exec (While b c) s s" |
475856793715 adding IMP quickcheck examples
bulwahn
parents:
diff changeset
    28
  "s1 \<in> set b ==> exec c s1 s2 ==> exec (While b c) s2 s3 ==> exec (While b c) s1 s3"
475856793715 adding IMP quickcheck examples
bulwahn
parents:
diff changeset
    29
475856793715 adding IMP quickcheck examples
bulwahn
parents:
diff changeset
    30
lemma
475856793715 adding IMP quickcheck examples
bulwahn
parents:
diff changeset
    31
  "exec c s s' ==> exec (Seq c c) s s'"
475856793715 adding IMP quickcheck examples
bulwahn
parents:
diff changeset
    32
  nitpick (* nitpick fails here! *)
43686
bc7d63c7fd6f tuning options to avoid spurious isabelle test failures
bulwahn
parents: 42463
diff changeset
    33
  quickcheck[tester = predicate_compile_wo_ff, size=2, iterations=100, expect=counterexample]
39186
475856793715 adding IMP quickcheck examples
bulwahn
parents:
diff changeset
    34
oops
475856793715 adding IMP quickcheck examples
bulwahn
parents:
diff changeset
    35
43686
bc7d63c7fd6f tuning options to avoid spurious isabelle test failures
bulwahn
parents: 42463
diff changeset
    36
end