src/HOL/IMP/Collecting_Examples.thy
author nipkow
Fri, 12 Apr 2013 08:27:43 +0200
changeset 51698 c0af8bbc5825
parent 51566 8e97017538ba
child 52019 a4cbca8f7342
permissions -rw-r--r--
reduced duplication
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
48765
fb1ed5230abc special code with lists no longer necessary, use sets
nipkow
parents:
diff changeset
     1
theory Collecting_Examples
51566
8e97017538ba improved pretty printing for state set acom
nipkow
parents: 51391
diff changeset
     2
imports Collecting Vars
48765
fb1ed5230abc special code with lists no longer necessary, use sets
nipkow
parents:
diff changeset
     3
begin
fb1ed5230abc special code with lists no longer necessary, use sets
nipkow
parents:
diff changeset
     4
51566
8e97017538ba improved pretty printing for state set acom
nipkow
parents: 51391
diff changeset
     5
subsection "Pretty printing state sets"
8e97017538ba improved pretty printing for state set acom
nipkow
parents: 51391
diff changeset
     6
48765
fb1ed5230abc special code with lists no longer necessary, use sets
nipkow
parents:
diff changeset
     7
text{* Tweak code generation to work with sets of non-equality types: *}
fb1ed5230abc special code with lists no longer necessary, use sets
nipkow
parents:
diff changeset
     8
declare insert_code[code del] union_coset_filter[code del]
fb1ed5230abc special code with lists no longer necessary, use sets
nipkow
parents:
diff changeset
     9
lemma insert_code [code]:  "insert x (set xs) = set (x#xs)"
fb1ed5230abc special code with lists no longer necessary, use sets
nipkow
parents:
diff changeset
    10
by simp
fb1ed5230abc special code with lists no longer necessary, use sets
nipkow
parents:
diff changeset
    11
51566
8e97017538ba improved pretty printing for state set acom
nipkow
parents: 51391
diff changeset
    12
text{* Compensate for the fact that sets may now have duplicates: *}
8e97017538ba improved pretty printing for state set acom
nipkow
parents: 51391
diff changeset
    13
definition compact :: "'a set \<Rightarrow> 'a set" where
8e97017538ba improved pretty printing for state set acom
nipkow
parents: 51391
diff changeset
    14
"compact X = X"
8e97017538ba improved pretty printing for state set acom
nipkow
parents: 51391
diff changeset
    15
8e97017538ba improved pretty printing for state set acom
nipkow
parents: 51391
diff changeset
    16
lemma [code]: "compact(set xs) = set(remdups xs)"
8e97017538ba improved pretty printing for state set acom
nipkow
parents: 51391
diff changeset
    17
by(simp add: compact_def)
8e97017538ba improved pretty printing for state set acom
nipkow
parents: 51391
diff changeset
    18
51698
c0af8bbc5825 reduced duplication
nipkow
parents: 51566
diff changeset
    19
definition "vars_acom = compact o vars o strip"
51566
8e97017538ba improved pretty printing for state set acom
nipkow
parents: 51391
diff changeset
    20
8e97017538ba improved pretty printing for state set acom
nipkow
parents: 51391
diff changeset
    21
text{* In order to display commands annotated with state sets, states must be
8e97017538ba improved pretty printing for state set acom
nipkow
parents: 51391
diff changeset
    22
translated into a printable format as sets of variable-state pairs, for the
8e97017538ba improved pretty printing for state set acom
nipkow
parents: 51391
diff changeset
    23
variables in the command: *}
51040
faf7f0d4f9eb tuned state display
nipkow
parents: 50986
diff changeset
    24
faf7f0d4f9eb tuned state display
nipkow
parents: 50986
diff changeset
    25
definition show_acom ::
51566
8e97017538ba improved pretty printing for state set acom
nipkow
parents: 51391
diff changeset
    26
  "state set acom \<Rightarrow> (vname*val)set set acom" where
8e97017538ba improved pretty printing for state set acom
nipkow
parents: 51391
diff changeset
    27
"show_acom C = map_acom (\<lambda>S. (\<lambda>s. (\<lambda>x. (x, s x)) ` (vars_acom C)) ` S) C"
51040
faf7f0d4f9eb tuned state display
nipkow
parents: 50986
diff changeset
    28
faf7f0d4f9eb tuned state display
nipkow
parents: 50986
diff changeset
    29
51566
8e97017538ba improved pretty printing for state set acom
nipkow
parents: 51391
diff changeset
    30
subsection "Examples"
8e97017538ba improved pretty printing for state set acom
nipkow
parents: 51391
diff changeset
    31
8e97017538ba improved pretty printing for state set acom
nipkow
parents: 51391
diff changeset
    32
definition "c0 = WHILE Less (V ''x'') (N 3)
48765
fb1ed5230abc special code with lists no longer necessary, use sets
nipkow
parents:
diff changeset
    33
                DO ''x'' ::= Plus (V ''x'') (N 2)"
51566
8e97017538ba improved pretty printing for state set acom
nipkow
parents: 51391
diff changeset
    34
definition C0 :: "state set acom" where "C0 = anno {} c0"
48765
fb1ed5230abc special code with lists no longer necessary, use sets
nipkow
parents:
diff changeset
    35
fb1ed5230abc special code with lists no longer necessary, use sets
nipkow
parents:
diff changeset
    36
text{* Collecting semantics: *}
50821
nipkow
parents: 50766
diff changeset
    37
51566
8e97017538ba improved pretty printing for state set acom
nipkow
parents: 51391
diff changeset
    38
value "show_acom (((step {<>}) ^^ 1) C0)"
8e97017538ba improved pretty printing for state set acom
nipkow
parents: 51391
diff changeset
    39
value "show_acom (((step {<>}) ^^ 2) C0)"
8e97017538ba improved pretty printing for state set acom
nipkow
parents: 51391
diff changeset
    40
value "show_acom (((step {<>}) ^^ 3) C0)"
8e97017538ba improved pretty printing for state set acom
nipkow
parents: 51391
diff changeset
    41
value "show_acom (((step {<>}) ^^ 4) C0)"
8e97017538ba improved pretty printing for state set acom
nipkow
parents: 51391
diff changeset
    42
value "show_acom (((step {<>}) ^^ 5) C0)"
8e97017538ba improved pretty printing for state set acom
nipkow
parents: 51391
diff changeset
    43
value "show_acom (((step {<>}) ^^ 6) C0)"
8e97017538ba improved pretty printing for state set acom
nipkow
parents: 51391
diff changeset
    44
value "show_acom (((step {<>}) ^^ 7) C0)"
8e97017538ba improved pretty printing for state set acom
nipkow
parents: 51391
diff changeset
    45
value "show_acom (((step {<>}) ^^ 8) C0)"
48765
fb1ed5230abc special code with lists no longer necessary, use sets
nipkow
parents:
diff changeset
    46
fb1ed5230abc special code with lists no longer necessary, use sets
nipkow
parents:
diff changeset
    47
text{* Small-step semantics: *}
51566
8e97017538ba improved pretty printing for state set acom
nipkow
parents: 51391
diff changeset
    48
value "show_acom (((step {}) ^^ 0) (step {<>} C0))"
8e97017538ba improved pretty printing for state set acom
nipkow
parents: 51391
diff changeset
    49
value "show_acom (((step {}) ^^ 1) (step {<>} C0))"
8e97017538ba improved pretty printing for state set acom
nipkow
parents: 51391
diff changeset
    50
value "show_acom (((step {}) ^^ 2) (step {<>} C0))"
8e97017538ba improved pretty printing for state set acom
nipkow
parents: 51391
diff changeset
    51
value "show_acom (((step {}) ^^ 3) (step {<>} C0))"
8e97017538ba improved pretty printing for state set acom
nipkow
parents: 51391
diff changeset
    52
value "show_acom (((step {}) ^^ 4) (step {<>} C0))"
8e97017538ba improved pretty printing for state set acom
nipkow
parents: 51391
diff changeset
    53
value "show_acom (((step {}) ^^ 5) (step {<>} C0))"
8e97017538ba improved pretty printing for state set acom
nipkow
parents: 51391
diff changeset
    54
value "show_acom (((step {}) ^^ 6) (step {<>} C0))"
8e97017538ba improved pretty printing for state set acom
nipkow
parents: 51391
diff changeset
    55
value "show_acom (((step {}) ^^ 7) (step {<>} C0))"
8e97017538ba improved pretty printing for state set acom
nipkow
parents: 51391
diff changeset
    56
value "show_acom (((step {}) ^^ 8) (step {<>} C0))"
48765
fb1ed5230abc special code with lists no longer necessary, use sets
nipkow
parents:
diff changeset
    57
fb1ed5230abc special code with lists no longer necessary, use sets
nipkow
parents:
diff changeset
    58
end