src/HOL/IMP/Collecting_Examples.thy
author wenzelm
Fri, 12 Jan 2018 14:08:53 +0100
changeset 67406 23307fd33906
parent 52019 a4cbca8f7342
child 67437 a6bf7167c5e1
permissions -rw-r--r--
isabelle update_cartouches -c;
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
67406
23307fd33906 isabelle update_cartouches -c;
wenzelm
parents: 52019
diff changeset
     7
text\<open>Tweak code generation to work with sets of non-equality types:\<close>
48765
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
67406
23307fd33906 isabelle update_cartouches -c;
wenzelm
parents: 52019
diff changeset
    12
text\<open>Compensate for the fact that sets may now have duplicates:\<close>
51566
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
67406
23307fd33906 isabelle update_cartouches -c;
wenzelm
parents: 52019
diff changeset
    21
text\<open>In order to display commands annotated with state sets, states must be
51566
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
67406
23307fd33906 isabelle update_cartouches -c;
wenzelm
parents: 52019
diff changeset
    23
variables in the command:\<close>
51040
faf7f0d4f9eb tuned state display
nipkow
parents: 50986
diff changeset
    24
52019
a4cbca8f7342 finally: acom with pointwise access and update of annotations
nipkow
parents: 51698
diff changeset
    25
definition show_acom :: "state set acom \<Rightarrow> (vname*val)set set acom" where
a4cbca8f7342 finally: acom with pointwise access and update of annotations
nipkow
parents: 51698
diff changeset
    26
"show_acom C =
a4cbca8f7342 finally: acom with pointwise access and update of annotations
nipkow
parents: 51698
diff changeset
    27
   annotate (\<lambda>p. (\<lambda>s. (\<lambda>x. (x, s x)) ` (vars_acom C)) ` anno C p) (strip 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)"
52019
a4cbca8f7342 finally: acom with pointwise access and update of annotations
nipkow
parents: 51698
diff changeset
    34
definition C0 :: "state set acom" where "C0 = annotate (%p. {}) c0"
48765
fb1ed5230abc special code with lists no longer necessary, use sets
nipkow
parents:
diff changeset
    35
67406
23307fd33906 isabelle update_cartouches -c;
wenzelm
parents: 52019
diff changeset
    36
text\<open>Collecting semantics:\<close>
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
67406
23307fd33906 isabelle update_cartouches -c;
wenzelm
parents: 52019
diff changeset
    47
text\<open>Small-step semantics:\<close>
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