src/HOL/Predicate.thy
author Manuel Eberl <eberlm@in.tum.de>
Mon, 12 Mar 2018 20:52:53 +0100
changeset 67829 2a6ef5ba4822
parent 67399 eab6ce8368fa
child 67951 655aa11359dc
permissions -rw-r--r--
Changes to complete distributive lattices due to Viorel Preoteasa
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
22259
476604be7d88 New theory for converting between predicates and sets.
berghofe
parents:
diff changeset
     1
(*  Title:      HOL/Predicate.thy
46664
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
     2
    Author:     Lukas Bulwahn and Florian Haftmann, TU Muenchen
22259
476604be7d88 New theory for converting between predicates and sets.
berghofe
parents:
diff changeset
     3
*)
476604be7d88 New theory for converting between predicates and sets.
berghofe
parents:
diff changeset
     4
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60166
diff changeset
     5
section \<open>Predicates as enumerations\<close>
22259
476604be7d88 New theory for converting between predicates and sets.
berghofe
parents:
diff changeset
     6
476604be7d88 New theory for converting between predicates and sets.
berghofe
parents:
diff changeset
     7
theory Predicate
53943
2b761d9a74f5 prefer Code.abort over code_abort
Andreas Lochbihler
parents: 53374
diff changeset
     8
imports String
22259
476604be7d88 New theory for converting between predicates and sets.
berghofe
parents:
diff changeset
     9
begin
476604be7d88 New theory for converting between predicates and sets.
berghofe
parents:
diff changeset
    10
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60166
diff changeset
    11
subsection \<open>The type of predicate enumerations (a monad)\<close>
30328
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
    12
66012
59bf29d2b3a1 modernized (code) setup for enumeration predicates
haftmann
parents: 62390
diff changeset
    13
datatype (plugins only: extraction) (dead 'a) pred = Pred (eval: "'a \<Rightarrow> bool")
30328
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
    14
40616
c5ee1e06d795 eval simp rules for predicate type, simplify primitive proofs
haftmann
parents: 39302
diff changeset
    15
lemma pred_eqI:
c5ee1e06d795 eval simp rules for predicate type, simplify primitive proofs
haftmann
parents: 39302
diff changeset
    16
  "(\<And>w. eval P w \<longleftrightarrow> eval Q w) \<Longrightarrow> P = Q"
c5ee1e06d795 eval simp rules for predicate type, simplify primitive proofs
haftmann
parents: 39302
diff changeset
    17
  by (cases P, cases Q) (auto simp add: fun_eq_iff)
30328
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
    18
46038
bb2f7488a0f1 conversions from sets to predicates and vice versa; extensionality on predicates
haftmann
parents: 45970
diff changeset
    19
lemma pred_eq_iff:
bb2f7488a0f1 conversions from sets to predicates and vice versa; extensionality on predicates
haftmann
parents: 45970
diff changeset
    20
  "P = Q \<Longrightarrow> (\<And>w. eval P w \<longleftrightarrow> eval Q w)"
bb2f7488a0f1 conversions from sets to predicates and vice versa; extensionality on predicates
haftmann
parents: 45970
diff changeset
    21
  by (simp add: pred_eqI)
bb2f7488a0f1 conversions from sets to predicates and vice versa; extensionality on predicates
haftmann
parents: 45970
diff changeset
    22
44033
bc45393f497b more fine-granular instantiation
haftmann
parents: 44026
diff changeset
    23
instantiation pred :: (type) complete_lattice
30328
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
    24
begin
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
    25
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
    26
definition
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
    27
  "P \<le> Q \<longleftrightarrow> eval P \<le> eval Q"
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
    28
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
    29
definition
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
    30
  "P < Q \<longleftrightarrow> eval P < eval Q"
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
    31
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
    32
definition
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
    33
  "\<bottom> = Pred \<bottom>"
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
    34
40616
c5ee1e06d795 eval simp rules for predicate type, simplify primitive proofs
haftmann
parents: 39302
diff changeset
    35
lemma eval_bot [simp]:
c5ee1e06d795 eval simp rules for predicate type, simplify primitive proofs
haftmann
parents: 39302
diff changeset
    36
  "eval \<bottom>  = \<bottom>"
c5ee1e06d795 eval simp rules for predicate type, simplify primitive proofs
haftmann
parents: 39302
diff changeset
    37
  by (simp add: bot_pred_def)
c5ee1e06d795 eval simp rules for predicate type, simplify primitive proofs
haftmann
parents: 39302
diff changeset
    38
30328
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
    39
definition
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
    40
  "\<top> = Pred \<top>"
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
    41
40616
c5ee1e06d795 eval simp rules for predicate type, simplify primitive proofs
haftmann
parents: 39302
diff changeset
    42
lemma eval_top [simp]:
c5ee1e06d795 eval simp rules for predicate type, simplify primitive proofs
haftmann
parents: 39302
diff changeset
    43
  "eval \<top>  = \<top>"
c5ee1e06d795 eval simp rules for predicate type, simplify primitive proofs
haftmann
parents: 39302
diff changeset
    44
  by (simp add: top_pred_def)
c5ee1e06d795 eval simp rules for predicate type, simplify primitive proofs
haftmann
parents: 39302
diff changeset
    45
30328
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
    46
definition
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
    47
  "P \<sqinter> Q = Pred (eval P \<sqinter> eval Q)"
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
    48
40616
c5ee1e06d795 eval simp rules for predicate type, simplify primitive proofs
haftmann
parents: 39302
diff changeset
    49
lemma eval_inf [simp]:
c5ee1e06d795 eval simp rules for predicate type, simplify primitive proofs
haftmann
parents: 39302
diff changeset
    50
  "eval (P \<sqinter> Q) = eval P \<sqinter> eval Q"
c5ee1e06d795 eval simp rules for predicate type, simplify primitive proofs
haftmann
parents: 39302
diff changeset
    51
  by (simp add: inf_pred_def)
c5ee1e06d795 eval simp rules for predicate type, simplify primitive proofs
haftmann
parents: 39302
diff changeset
    52
30328
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
    53
definition
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
    54
  "P \<squnion> Q = Pred (eval P \<squnion> eval Q)"
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
    55
40616
c5ee1e06d795 eval simp rules for predicate type, simplify primitive proofs
haftmann
parents: 39302
diff changeset
    56
lemma eval_sup [simp]:
c5ee1e06d795 eval simp rules for predicate type, simplify primitive proofs
haftmann
parents: 39302
diff changeset
    57
  "eval (P \<squnion> Q) = eval P \<squnion> eval Q"
c5ee1e06d795 eval simp rules for predicate type, simplify primitive proofs
haftmann
parents: 39302
diff changeset
    58
  by (simp add: sup_pred_def)
c5ee1e06d795 eval simp rules for predicate type, simplify primitive proofs
haftmann
parents: 39302
diff changeset
    59
30328
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
    60
definition
56218
1c3f1f2431f9 elongated INFI and SUPR, to reduced risk of confusing theorems names in the future while still being consistent with INTER and UNION
haftmann
parents: 56212
diff changeset
    61
  "\<Sqinter>A = Pred (INFIMUM A eval)"
30328
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
    62
40616
c5ee1e06d795 eval simp rules for predicate type, simplify primitive proofs
haftmann
parents: 39302
diff changeset
    63
lemma eval_Inf [simp]:
56218
1c3f1f2431f9 elongated INFI and SUPR, to reduced risk of confusing theorems names in the future while still being consistent with INTER and UNION
haftmann
parents: 56212
diff changeset
    64
  "eval (\<Sqinter>A) = INFIMUM A eval"
40616
c5ee1e06d795 eval simp rules for predicate type, simplify primitive proofs
haftmann
parents: 39302
diff changeset
    65
  by (simp add: Inf_pred_def)
c5ee1e06d795 eval simp rules for predicate type, simplify primitive proofs
haftmann
parents: 39302
diff changeset
    66
30328
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
    67
definition
56218
1c3f1f2431f9 elongated INFI and SUPR, to reduced risk of confusing theorems names in the future while still being consistent with INTER and UNION
haftmann
parents: 56212
diff changeset
    68
  "\<Squnion>A = Pred (SUPREMUM A eval)"
30328
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
    69
40616
c5ee1e06d795 eval simp rules for predicate type, simplify primitive proofs
haftmann
parents: 39302
diff changeset
    70
lemma eval_Sup [simp]:
56218
1c3f1f2431f9 elongated INFI and SUPR, to reduced risk of confusing theorems names in the future while still being consistent with INTER and UNION
haftmann
parents: 56212
diff changeset
    71
  "eval (\<Squnion>A) = SUPREMUM A eval"
40616
c5ee1e06d795 eval simp rules for predicate type, simplify primitive proofs
haftmann
parents: 39302
diff changeset
    72
  by (simp add: Sup_pred_def)
c5ee1e06d795 eval simp rules for predicate type, simplify primitive proofs
haftmann
parents: 39302
diff changeset
    73
44033
bc45393f497b more fine-granular instantiation
haftmann
parents: 44026
diff changeset
    74
instance proof
44415
ce6cd1b2344b tuned specifications, syntax and proofs
haftmann
parents: 44414
diff changeset
    75
qed (auto intro!: pred_eqI simp add: less_eq_pred_def less_pred_def le_fun_def less_fun_def)
44033
bc45393f497b more fine-granular instantiation
haftmann
parents: 44026
diff changeset
    76
bc45393f497b more fine-granular instantiation
haftmann
parents: 44026
diff changeset
    77
end
bc45393f497b more fine-granular instantiation
haftmann
parents: 44026
diff changeset
    78
56212
3253aaf73a01 consolidated theorem names containing INFI and SUPR: have INF and SUP instead uniformly
haftmann
parents: 56166
diff changeset
    79
lemma eval_INF [simp]:
56218
1c3f1f2431f9 elongated INFI and SUPR, to reduced risk of confusing theorems names in the future while still being consistent with INTER and UNION
haftmann
parents: 56212
diff changeset
    80
  "eval (INFIMUM A f) = INFIMUM A (eval \<circ> f)"
56166
9a241bc276cd normalising simp rules for compound operators
haftmann
parents: 56154
diff changeset
    81
  using eval_Inf [of "f ` A"] by simp
44033
bc45393f497b more fine-granular instantiation
haftmann
parents: 44026
diff changeset
    82
56212
3253aaf73a01 consolidated theorem names containing INFI and SUPR: have INF and SUP instead uniformly
haftmann
parents: 56166
diff changeset
    83
lemma eval_SUP [simp]:
56218
1c3f1f2431f9 elongated INFI and SUPR, to reduced risk of confusing theorems names in the future while still being consistent with INTER and UNION
haftmann
parents: 56212
diff changeset
    84
  "eval (SUPREMUM A f) = SUPREMUM A (eval \<circ> f)"
56166
9a241bc276cd normalising simp rules for compound operators
haftmann
parents: 56154
diff changeset
    85
  using eval_Sup [of "f ` A"] by simp
44033
bc45393f497b more fine-granular instantiation
haftmann
parents: 44026
diff changeset
    86
bc45393f497b more fine-granular instantiation
haftmann
parents: 44026
diff changeset
    87
instantiation pred :: (type) complete_boolean_algebra
bc45393f497b more fine-granular instantiation
haftmann
parents: 44026
diff changeset
    88
begin
bc45393f497b more fine-granular instantiation
haftmann
parents: 44026
diff changeset
    89
32578
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
    90
definition
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
    91
  "- P = Pred (- eval P)"
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
    92
40616
c5ee1e06d795 eval simp rules for predicate type, simplify primitive proofs
haftmann
parents: 39302
diff changeset
    93
lemma eval_compl [simp]:
c5ee1e06d795 eval simp rules for predicate type, simplify primitive proofs
haftmann
parents: 39302
diff changeset
    94
  "eval (- P) = - eval P"
c5ee1e06d795 eval simp rules for predicate type, simplify primitive proofs
haftmann
parents: 39302
diff changeset
    95
  by (simp add: uminus_pred_def)
c5ee1e06d795 eval simp rules for predicate type, simplify primitive proofs
haftmann
parents: 39302
diff changeset
    96
32578
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
    97
definition
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
    98
  "P - Q = Pred (eval P - eval Q)"
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
    99
40616
c5ee1e06d795 eval simp rules for predicate type, simplify primitive proofs
haftmann
parents: 39302
diff changeset
   100
lemma eval_minus [simp]:
c5ee1e06d795 eval simp rules for predicate type, simplify primitive proofs
haftmann
parents: 39302
diff changeset
   101
  "eval (P - Q) = eval P - eval Q"
c5ee1e06d795 eval simp rules for predicate type, simplify primitive proofs
haftmann
parents: 39302
diff changeset
   102
  by (simp add: minus_pred_def)
c5ee1e06d795 eval simp rules for predicate type, simplify primitive proofs
haftmann
parents: 39302
diff changeset
   103
32578
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   104
instance proof
67829
2a6ef5ba4822 Changes to complete distributive lattices due to Viorel Preoteasa
Manuel Eberl <eberlm@in.tum.de>
parents: 67399
diff changeset
   105
  fix A::"'a pred set set"
2a6ef5ba4822 Changes to complete distributive lattices due to Viorel Preoteasa
Manuel Eberl <eberlm@in.tum.de>
parents: 67399
diff changeset
   106
  show "INFIMUM A Sup \<le> SUPREMUM {f ` A |f. \<forall>Y\<in>A. f Y \<in> Y} Inf"
2a6ef5ba4822 Changes to complete distributive lattices due to Viorel Preoteasa
Manuel Eberl <eberlm@in.tum.de>
parents: 67399
diff changeset
   107
  proof (simp add: less_eq_pred_def Sup_fun_def Inf_fun_def, safe)
2a6ef5ba4822 Changes to complete distributive lattices due to Viorel Preoteasa
Manuel Eberl <eberlm@in.tum.de>
parents: 67399
diff changeset
   108
    fix w
2a6ef5ba4822 Changes to complete distributive lattices due to Viorel Preoteasa
Manuel Eberl <eberlm@in.tum.de>
parents: 67399
diff changeset
   109
    assume A: "\<forall>x\<in>A. \<exists>f\<in>x. eval f w"
2a6ef5ba4822 Changes to complete distributive lattices due to Viorel Preoteasa
Manuel Eberl <eberlm@in.tum.de>
parents: 67399
diff changeset
   110
    define F where "F = (\<lambda> x . SOME f . f \<in> x \<and> eval f w)"
2a6ef5ba4822 Changes to complete distributive lattices due to Viorel Preoteasa
Manuel Eberl <eberlm@in.tum.de>
parents: 67399
diff changeset
   111
    have [simp]: "(\<forall>f\<in> (F ` A). eval f w)"
2a6ef5ba4822 Changes to complete distributive lattices due to Viorel Preoteasa
Manuel Eberl <eberlm@in.tum.de>
parents: 67399
diff changeset
   112
      by (metis (no_types, lifting) A F_def image_iff some_eq_ex)
2a6ef5ba4822 Changes to complete distributive lattices due to Viorel Preoteasa
Manuel Eberl <eberlm@in.tum.de>
parents: 67399
diff changeset
   113
    show "\<exists>x. (\<exists>f. x = f ` A \<and> (\<forall>Y\<in>A. f Y \<in> Y)) \<and> (\<forall>f\<in>x. eval f w)"
2a6ef5ba4822 Changes to complete distributive lattices due to Viorel Preoteasa
Manuel Eberl <eberlm@in.tum.de>
parents: 67399
diff changeset
   114
      apply (rule_tac x = "F ` A" in exI, simp)
2a6ef5ba4822 Changes to complete distributive lattices due to Viorel Preoteasa
Manuel Eberl <eberlm@in.tum.de>
parents: 67399
diff changeset
   115
      using A by (metis (no_types, lifting) F_def someI)+
2a6ef5ba4822 Changes to complete distributive lattices due to Viorel Preoteasa
Manuel Eberl <eberlm@in.tum.de>
parents: 67399
diff changeset
   116
  qed
46884
154dc6ec0041 tuned proofs
noschinl
parents: 46664
diff changeset
   117
qed (auto intro!: pred_eqI)
30328
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   118
22259
476604be7d88 New theory for converting between predicates and sets.
berghofe
parents:
diff changeset
   119
end
30328
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   120
40616
c5ee1e06d795 eval simp rules for predicate type, simplify primitive proofs
haftmann
parents: 39302
diff changeset
   121
definition single :: "'a \<Rightarrow> 'a pred" where
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 67091
diff changeset
   122
  "single x = Pred ((=) x)"
40616
c5ee1e06d795 eval simp rules for predicate type, simplify primitive proofs
haftmann
parents: 39302
diff changeset
   123
c5ee1e06d795 eval simp rules for predicate type, simplify primitive proofs
haftmann
parents: 39302
diff changeset
   124
lemma eval_single [simp]:
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 67091
diff changeset
   125
  "eval (single x) = (=) x"
40616
c5ee1e06d795 eval simp rules for predicate type, simplify primitive proofs
haftmann
parents: 39302
diff changeset
   126
  by (simp add: single_def)
c5ee1e06d795 eval simp rules for predicate type, simplify primitive proofs
haftmann
parents: 39302
diff changeset
   127
62026
ea3b1b0413b4 more symbols;
wenzelm
parents: 60758
diff changeset
   128
definition bind :: "'a pred \<Rightarrow> ('a \<Rightarrow> 'b pred) \<Rightarrow> 'b pred" (infixl "\<bind>" 70) where
ea3b1b0413b4 more symbols;
wenzelm
parents: 60758
diff changeset
   129
  "P \<bind> f = (SUPREMUM {x. eval P x} f)"
40616
c5ee1e06d795 eval simp rules for predicate type, simplify primitive proofs
haftmann
parents: 39302
diff changeset
   130
c5ee1e06d795 eval simp rules for predicate type, simplify primitive proofs
haftmann
parents: 39302
diff changeset
   131
lemma eval_bind [simp]:
62026
ea3b1b0413b4 more symbols;
wenzelm
parents: 60758
diff changeset
   132
  "eval (P \<bind> f) = eval (SUPREMUM {x. eval P x} f)"
40616
c5ee1e06d795 eval simp rules for predicate type, simplify primitive proofs
haftmann
parents: 39302
diff changeset
   133
  by (simp add: bind_def)
c5ee1e06d795 eval simp rules for predicate type, simplify primitive proofs
haftmann
parents: 39302
diff changeset
   134
30328
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   135
lemma bind_bind:
62026
ea3b1b0413b4 more symbols;
wenzelm
parents: 60758
diff changeset
   136
  "(P \<bind> Q) \<bind> R = P \<bind> (\<lambda>x. Q x \<bind> R)"
46884
154dc6ec0041 tuned proofs
noschinl
parents: 46664
diff changeset
   137
  by (rule pred_eqI) auto
30328
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   138
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   139
lemma bind_single:
62026
ea3b1b0413b4 more symbols;
wenzelm
parents: 60758
diff changeset
   140
  "P \<bind> single = P"
40616
c5ee1e06d795 eval simp rules for predicate type, simplify primitive proofs
haftmann
parents: 39302
diff changeset
   141
  by (rule pred_eqI) auto
30328
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   142
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   143
lemma single_bind:
62026
ea3b1b0413b4 more symbols;
wenzelm
parents: 60758
diff changeset
   144
  "single x \<bind> P = P x"
40616
c5ee1e06d795 eval simp rules for predicate type, simplify primitive proofs
haftmann
parents: 39302
diff changeset
   145
  by (rule pred_eqI) auto
30328
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   146
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   147
lemma bottom_bind:
62026
ea3b1b0413b4 more symbols;
wenzelm
parents: 60758
diff changeset
   148
  "\<bottom> \<bind> P = \<bottom>"
40674
54dbe6a1c349 adhere established Collect/mem convention more closely
haftmann
parents: 40616
diff changeset
   149
  by (rule pred_eqI) auto
30328
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   150
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   151
lemma sup_bind:
62026
ea3b1b0413b4 more symbols;
wenzelm
parents: 60758
diff changeset
   152
  "(P \<squnion> Q) \<bind> R = P \<bind> R \<squnion> Q \<bind> R"
40674
54dbe6a1c349 adhere established Collect/mem convention more closely
haftmann
parents: 40616
diff changeset
   153
  by (rule pred_eqI) auto
30328
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   154
40616
c5ee1e06d795 eval simp rules for predicate type, simplify primitive proofs
haftmann
parents: 39302
diff changeset
   155
lemma Sup_bind:
62026
ea3b1b0413b4 more symbols;
wenzelm
parents: 60758
diff changeset
   156
  "(\<Squnion>A \<bind> f) = \<Squnion>((\<lambda>x. x \<bind> f) ` A)"
46884
154dc6ec0041 tuned proofs
noschinl
parents: 46664
diff changeset
   157
  by (rule pred_eqI) auto
30328
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   158
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   159
lemma pred_iffI:
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   160
  assumes "\<And>x. eval A x \<Longrightarrow> eval B x"
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   161
  and "\<And>x. eval B x \<Longrightarrow> eval A x"
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   162
  shows "A = B"
40616
c5ee1e06d795 eval simp rules for predicate type, simplify primitive proofs
haftmann
parents: 39302
diff changeset
   163
  using assms by (auto intro: pred_eqI)
30328
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   164
  
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   165
lemma singleI: "eval (single x) x"
40616
c5ee1e06d795 eval simp rules for predicate type, simplify primitive proofs
haftmann
parents: 39302
diff changeset
   166
  by simp
30328
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   167
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   168
lemma singleI_unit: "eval (single ()) x"
40616
c5ee1e06d795 eval simp rules for predicate type, simplify primitive proofs
haftmann
parents: 39302
diff changeset
   169
  by simp
30328
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   170
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   171
lemma singleE: "eval (single x) y \<Longrightarrow> (y = x \<Longrightarrow> P) \<Longrightarrow> P"
40616
c5ee1e06d795 eval simp rules for predicate type, simplify primitive proofs
haftmann
parents: 39302
diff changeset
   172
  by simp
30328
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   173
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   174
lemma singleE': "eval (single x) y \<Longrightarrow> (x = y \<Longrightarrow> P) \<Longrightarrow> P"
40616
c5ee1e06d795 eval simp rules for predicate type, simplify primitive proofs
haftmann
parents: 39302
diff changeset
   175
  by simp
30328
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   176
62026
ea3b1b0413b4 more symbols;
wenzelm
parents: 60758
diff changeset
   177
lemma bindI: "eval P x \<Longrightarrow> eval (Q x) y \<Longrightarrow> eval (P \<bind> Q) y"
40616
c5ee1e06d795 eval simp rules for predicate type, simplify primitive proofs
haftmann
parents: 39302
diff changeset
   178
  by auto
30328
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   179
62026
ea3b1b0413b4 more symbols;
wenzelm
parents: 60758
diff changeset
   180
lemma bindE: "eval (R \<bind> Q) y \<Longrightarrow> (\<And>x. eval R x \<Longrightarrow> eval (Q x) y \<Longrightarrow> P) \<Longrightarrow> P"
40616
c5ee1e06d795 eval simp rules for predicate type, simplify primitive proofs
haftmann
parents: 39302
diff changeset
   181
  by auto
30328
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   182
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   183
lemma botE: "eval \<bottom> x \<Longrightarrow> P"
40616
c5ee1e06d795 eval simp rules for predicate type, simplify primitive proofs
haftmann
parents: 39302
diff changeset
   184
  by auto
30328
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   185
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   186
lemma supI1: "eval A x \<Longrightarrow> eval (A \<squnion> B) x"
40616
c5ee1e06d795 eval simp rules for predicate type, simplify primitive proofs
haftmann
parents: 39302
diff changeset
   187
  by auto
30328
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   188
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   189
lemma supI2: "eval B x \<Longrightarrow> eval (A \<squnion> B) x" 
40616
c5ee1e06d795 eval simp rules for predicate type, simplify primitive proofs
haftmann
parents: 39302
diff changeset
   190
  by auto
30328
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   191
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   192
lemma supE: "eval (A \<squnion> B) x \<Longrightarrow> (eval A x \<Longrightarrow> P) \<Longrightarrow> (eval B x \<Longrightarrow> P) \<Longrightarrow> P"
40616
c5ee1e06d795 eval simp rules for predicate type, simplify primitive proofs
haftmann
parents: 39302
diff changeset
   193
  by auto
30328
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   194
32578
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   195
lemma single_not_bot [simp]:
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   196
  "single x \<noteq> \<bottom>"
39302
d7728f65b353 renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
nipkow
parents: 39198
diff changeset
   197
  by (auto simp add: single_def bot_pred_def fun_eq_iff)
32578
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   198
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   199
lemma not_bot:
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   200
  assumes "A \<noteq> \<bottom>"
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   201
  obtains x where "eval A x"
45970
b6d0cff57d96 adjusted to set/pred distinction by means of type constructor `set`
haftmann
parents: 45630
diff changeset
   202
  using assms by (cases A) (auto simp add: bot_pred_def)
b6d0cff57d96 adjusted to set/pred distinction by means of type constructor `set`
haftmann
parents: 45630
diff changeset
   203
32578
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   204
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60166
diff changeset
   205
subsection \<open>Emptiness check and definite choice\<close>
32578
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   206
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   207
definition is_empty :: "'a pred \<Rightarrow> bool" where
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   208
  "is_empty A \<longleftrightarrow> A = \<bottom>"
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   209
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   210
lemma is_empty_bot:
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   211
  "is_empty \<bottom>"
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   212
  by (simp add: is_empty_def)
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   213
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   214
lemma not_is_empty_single:
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   215
  "\<not> is_empty (single x)"
39302
d7728f65b353 renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
nipkow
parents: 39198
diff changeset
   216
  by (auto simp add: is_empty_def single_def bot_pred_def fun_eq_iff)
32578
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   217
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   218
lemma is_empty_sup:
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   219
  "is_empty (A \<squnion> B) \<longleftrightarrow> is_empty A \<and> is_empty B"
36008
23dfa8678c7c add/change some lemmas about lattices
huffman
parents: 34065
diff changeset
   220
  by (auto simp add: is_empty_def)
32578
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   221
40616
c5ee1e06d795 eval simp rules for predicate type, simplify primitive proofs
haftmann
parents: 39302
diff changeset
   222
definition singleton :: "(unit \<Rightarrow> 'a) \<Rightarrow> 'a pred \<Rightarrow> 'a" where
66251
cd935b7cb3fb proper concept of code declaration wrt. atomicity and Isar declarations
haftmann
parents: 66012
diff changeset
   223
  "singleton default A = (if \<exists>!x. eval A x then THE x. eval A x else default ())" for default
32578
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   224
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   225
lemma singleton_eqI:
66251
cd935b7cb3fb proper concept of code declaration wrt. atomicity and Isar declarations
haftmann
parents: 66012
diff changeset
   226
  "\<exists>!x. eval A x \<Longrightarrow> eval A x \<Longrightarrow> singleton default A = x" for default
32578
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   227
  by (auto simp add: singleton_def)
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   228
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   229
lemma eval_singletonI:
66251
cd935b7cb3fb proper concept of code declaration wrt. atomicity and Isar declarations
haftmann
parents: 66012
diff changeset
   230
  "\<exists>!x. eval A x \<Longrightarrow> eval A (singleton default A)" for default
32578
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   231
proof -
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   232
  assume assm: "\<exists>!x. eval A x"
53374
a14d2a854c02 tuned proofs -- clarified flow of facts wrt. calculation;
wenzelm
parents: 51143
diff changeset
   233
  then obtain x where x: "eval A x" ..
60166
ff6c4ff5e7ab tuned spelling;
wenzelm
parents: 58889
diff changeset
   234
  with assm have "singleton default A = x" by (rule singleton_eqI)
53374
a14d2a854c02 tuned proofs -- clarified flow of facts wrt. calculation;
wenzelm
parents: 51143
diff changeset
   235
  with x show ?thesis by simp
32578
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   236
qed
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   237
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   238
lemma single_singleton:
66251
cd935b7cb3fb proper concept of code declaration wrt. atomicity and Isar declarations
haftmann
parents: 66012
diff changeset
   239
  "\<exists>!x. eval A x \<Longrightarrow> single (singleton default A) = A" for default
32578
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   240
proof -
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   241
  assume assm: "\<exists>!x. eval A x"
60166
ff6c4ff5e7ab tuned spelling;
wenzelm
parents: 58889
diff changeset
   242
  then have "eval A (singleton default A)"
32578
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   243
    by (rule eval_singletonI)
60166
ff6c4ff5e7ab tuned spelling;
wenzelm
parents: 58889
diff changeset
   244
  moreover from assm have "\<And>x. eval A x \<Longrightarrow> singleton default A = x"
32578
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   245
    by (rule singleton_eqI)
60166
ff6c4ff5e7ab tuned spelling;
wenzelm
parents: 58889
diff changeset
   246
  ultimately have "eval (single (singleton default A)) = eval A"
39302
d7728f65b353 renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
nipkow
parents: 39198
diff changeset
   247
    by (simp (no_asm_use) add: single_def fun_eq_iff) blast
60166
ff6c4ff5e7ab tuned spelling;
wenzelm
parents: 58889
diff changeset
   248
  then have "\<And>x. eval (single (singleton default A)) x = eval A x"
40616
c5ee1e06d795 eval simp rules for predicate type, simplify primitive proofs
haftmann
parents: 39302
diff changeset
   249
    by simp
c5ee1e06d795 eval simp rules for predicate type, simplify primitive proofs
haftmann
parents: 39302
diff changeset
   250
  then show ?thesis by (rule pred_eqI)
32578
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   251
qed
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   252
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   253
lemma singleton_undefinedI:
66251
cd935b7cb3fb proper concept of code declaration wrt. atomicity and Isar declarations
haftmann
parents: 66012
diff changeset
   254
  "\<not> (\<exists>!x. eval A x) \<Longrightarrow> singleton default A = default ()" for default
32578
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   255
  by (simp add: singleton_def)
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   256
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   257
lemma singleton_bot:
66251
cd935b7cb3fb proper concept of code declaration wrt. atomicity and Isar declarations
haftmann
parents: 66012
diff changeset
   258
  "singleton default \<bottom> = default ()" for default
32578
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   259
  by (auto simp add: bot_pred_def intro: singleton_undefinedI)
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   260
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   261
lemma singleton_single:
66251
cd935b7cb3fb proper concept of code declaration wrt. atomicity and Isar declarations
haftmann
parents: 66012
diff changeset
   262
  "singleton default (single x) = x" for default
32578
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   263
  by (auto simp add: intro: singleton_eqI singleI elim: singleE)
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   264
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   265
lemma singleton_sup_single_single:
66251
cd935b7cb3fb proper concept of code declaration wrt. atomicity and Isar declarations
haftmann
parents: 66012
diff changeset
   266
  "singleton default (single x \<squnion> single y) = (if x = y then x else default ())" for default
32578
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   267
proof (cases "x = y")
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   268
  case True then show ?thesis by (simp add: singleton_single)
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   269
next
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   270
  case False
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   271
  have "eval (single x \<squnion> single y) x"
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   272
    and "eval (single x \<squnion> single y) y"
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   273
  by (auto intro: supI1 supI2 singleI)
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   274
  with False have "\<not> (\<exists>!z. eval (single x \<squnion> single y) z)"
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   275
    by blast
60166
ff6c4ff5e7ab tuned spelling;
wenzelm
parents: 58889
diff changeset
   276
  then have "singleton default (single x \<squnion> single y) = default ()"
32578
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   277
    by (rule singleton_undefinedI)
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   278
  with False show ?thesis by simp
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   279
qed
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   280
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   281
lemma singleton_sup_aux:
60166
ff6c4ff5e7ab tuned spelling;
wenzelm
parents: 58889
diff changeset
   282
  "singleton default (A \<squnion> B) = (if A = \<bottom> then singleton default B
ff6c4ff5e7ab tuned spelling;
wenzelm
parents: 58889
diff changeset
   283
    else if B = \<bottom> then singleton default A
ff6c4ff5e7ab tuned spelling;
wenzelm
parents: 58889
diff changeset
   284
    else singleton default
66251
cd935b7cb3fb proper concept of code declaration wrt. atomicity and Isar declarations
haftmann
parents: 66012
diff changeset
   285
      (single (singleton default A) \<squnion> single (singleton default B)))" for default
32578
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   286
proof (cases "(\<exists>!x. eval A x) \<and> (\<exists>!y. eval B y)")
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   287
  case True then show ?thesis by (simp add: single_singleton)
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   288
next
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   289
  case False
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   290
  from False have A_or_B:
60166
ff6c4ff5e7ab tuned spelling;
wenzelm
parents: 58889
diff changeset
   291
    "singleton default A = default () \<or> singleton default B = default ()"
32578
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   292
    by (auto intro!: singleton_undefinedI)
60166
ff6c4ff5e7ab tuned spelling;
wenzelm
parents: 58889
diff changeset
   293
  then have rhs: "singleton default
ff6c4ff5e7ab tuned spelling;
wenzelm
parents: 58889
diff changeset
   294
    (single (singleton default A) \<squnion> single (singleton default B)) = default ()"
32578
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   295
    by (auto simp add: singleton_sup_single_single singleton_single)
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   296
  from False have not_unique:
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   297
    "\<not> (\<exists>!x. eval A x) \<or> \<not> (\<exists>!y. eval B y)" by simp
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   298
  show ?thesis proof (cases "A \<noteq> \<bottom> \<and> B \<noteq> \<bottom>")
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   299
    case True
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   300
    then obtain a b where a: "eval A a" and b: "eval B b"
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   301
      by (blast elim: not_bot)
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   302
    with True not_unique have "\<not> (\<exists>!x. eval (A \<squnion> B) x)"
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   303
      by (auto simp add: sup_pred_def bot_pred_def)
60166
ff6c4ff5e7ab tuned spelling;
wenzelm
parents: 58889
diff changeset
   304
    then have "singleton default (A \<squnion> B) = default ()" by (rule singleton_undefinedI)
32578
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   305
    with True rhs show ?thesis by simp
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   306
  next
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   307
    case False then show ?thesis by auto
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   308
  qed
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   309
qed
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   310
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   311
lemma singleton_sup:
60166
ff6c4ff5e7ab tuned spelling;
wenzelm
parents: 58889
diff changeset
   312
  "singleton default (A \<squnion> B) = (if A = \<bottom> then singleton default B
ff6c4ff5e7ab tuned spelling;
wenzelm
parents: 58889
diff changeset
   313
    else if B = \<bottom> then singleton default A
66251
cd935b7cb3fb proper concept of code declaration wrt. atomicity and Isar declarations
haftmann
parents: 66012
diff changeset
   314
    else if singleton default A = singleton default B then singleton default A else default ())" for default
60166
ff6c4ff5e7ab tuned spelling;
wenzelm
parents: 58889
diff changeset
   315
  using singleton_sup_aux [of default A B] by (simp only: singleton_sup_single_single)
32578
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   316
30328
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   317
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60166
diff changeset
   318
subsection \<open>Derived operations\<close>
30328
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   319
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   320
definition if_pred :: "bool \<Rightarrow> unit pred" where
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   321
  if_pred_eq: "if_pred b = (if b then single () else \<bottom>)"
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   322
33754
f2957bd46faf adding derived constant Predicate.holds to Predicate theory; adopting the predicate compiler
bulwahn
parents: 33622
diff changeset
   323
definition holds :: "unit pred \<Rightarrow> bool" where
f2957bd46faf adding derived constant Predicate.holds to Predicate theory; adopting the predicate compiler
bulwahn
parents: 33622
diff changeset
   324
  holds_eq: "holds P = eval P ()"
f2957bd46faf adding derived constant Predicate.holds to Predicate theory; adopting the predicate compiler
bulwahn
parents: 33622
diff changeset
   325
30328
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   326
definition not_pred :: "unit pred \<Rightarrow> unit pred" where
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   327
  not_pred_eq: "not_pred P = (if eval P () then \<bottom> else single ())"
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   328
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   329
lemma if_predI: "P \<Longrightarrow> eval (if_pred P) ()"
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   330
  unfolding if_pred_eq by (auto intro: singleI)
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   331
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   332
lemma if_predE: "eval (if_pred b) x \<Longrightarrow> (b \<Longrightarrow> x = () \<Longrightarrow> P) \<Longrightarrow> P"
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   333
  unfolding if_pred_eq by (cases b) (auto elim: botE)
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   334
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   335
lemma not_predI: "\<not> P \<Longrightarrow> eval (not_pred (Pred (\<lambda>u. P))) ()"
66012
59bf29d2b3a1 modernized (code) setup for enumeration predicates
haftmann
parents: 62390
diff changeset
   336
  unfolding not_pred_eq by (auto intro: singleI)
30328
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   337
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   338
lemma not_predI': "\<not> eval P () \<Longrightarrow> eval (not_pred P) ()"
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   339
  unfolding not_pred_eq by (auto intro: singleI)
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   340
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   341
lemma not_predE: "eval (not_pred (Pred (\<lambda>u. P))) x \<Longrightarrow> (\<not> P \<Longrightarrow> thesis) \<Longrightarrow> thesis"
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   342
  unfolding not_pred_eq
62390
842917225d56 more canonical names
nipkow
parents: 62026
diff changeset
   343
  by (auto split: if_split_asm elim: botE)
30328
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   344
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   345
lemma not_predE': "eval (not_pred P) x \<Longrightarrow> (\<not> eval P x \<Longrightarrow> thesis) \<Longrightarrow> thesis"
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   346
  unfolding not_pred_eq
62390
842917225d56 more canonical names
nipkow
parents: 62026
diff changeset
   347
  by (auto split: if_split_asm elim: botE)
33754
f2957bd46faf adding derived constant Predicate.holds to Predicate theory; adopting the predicate compiler
bulwahn
parents: 33622
diff changeset
   348
lemma "f () = False \<or> f () = True"
f2957bd46faf adding derived constant Predicate.holds to Predicate theory; adopting the predicate compiler
bulwahn
parents: 33622
diff changeset
   349
by simp
30328
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   350
37549
a62f742f1d58 yields ill-typed ATP/metis proofs -- raus!
blanchet
parents: 36531
diff changeset
   351
lemma closure_of_bool_cases [no_atp]:
44007
b5e7594061ce tuned proofs
haftmann
parents: 41550
diff changeset
   352
  fixes f :: "unit \<Rightarrow> bool"
b5e7594061ce tuned proofs
haftmann
parents: 41550
diff changeset
   353
  assumes "f = (\<lambda>u. False) \<Longrightarrow> P f"
b5e7594061ce tuned proofs
haftmann
parents: 41550
diff changeset
   354
  assumes "f = (\<lambda>u. True) \<Longrightarrow> P f"
b5e7594061ce tuned proofs
haftmann
parents: 41550
diff changeset
   355
  shows "P f"
33754
f2957bd46faf adding derived constant Predicate.holds to Predicate theory; adopting the predicate compiler
bulwahn
parents: 33622
diff changeset
   356
proof -
44007
b5e7594061ce tuned proofs
haftmann
parents: 41550
diff changeset
   357
  have "f = (\<lambda>u. False) \<or> f = (\<lambda>u. True)"
33754
f2957bd46faf adding derived constant Predicate.holds to Predicate theory; adopting the predicate compiler
bulwahn
parents: 33622
diff changeset
   358
    apply (cases "f ()")
f2957bd46faf adding derived constant Predicate.holds to Predicate theory; adopting the predicate compiler
bulwahn
parents: 33622
diff changeset
   359
    apply (rule disjI2)
f2957bd46faf adding derived constant Predicate.holds to Predicate theory; adopting the predicate compiler
bulwahn
parents: 33622
diff changeset
   360
    apply (rule ext)
f2957bd46faf adding derived constant Predicate.holds to Predicate theory; adopting the predicate compiler
bulwahn
parents: 33622
diff changeset
   361
    apply (simp add: unit_eq)
f2957bd46faf adding derived constant Predicate.holds to Predicate theory; adopting the predicate compiler
bulwahn
parents: 33622
diff changeset
   362
    apply (rule disjI1)
f2957bd46faf adding derived constant Predicate.holds to Predicate theory; adopting the predicate compiler
bulwahn
parents: 33622
diff changeset
   363
    apply (rule ext)
f2957bd46faf adding derived constant Predicate.holds to Predicate theory; adopting the predicate compiler
bulwahn
parents: 33622
diff changeset
   364
    apply (simp add: unit_eq)
f2957bd46faf adding derived constant Predicate.holds to Predicate theory; adopting the predicate compiler
bulwahn
parents: 33622
diff changeset
   365
    done
41550
efa734d9b221 eliminated global prems;
wenzelm
parents: 41505
diff changeset
   366
  from this assms show ?thesis by blast
33754
f2957bd46faf adding derived constant Predicate.holds to Predicate theory; adopting the predicate compiler
bulwahn
parents: 33622
diff changeset
   367
qed
f2957bd46faf adding derived constant Predicate.holds to Predicate theory; adopting the predicate compiler
bulwahn
parents: 33622
diff changeset
   368
f2957bd46faf adding derived constant Predicate.holds to Predicate theory; adopting the predicate compiler
bulwahn
parents: 33622
diff changeset
   369
lemma unit_pred_cases:
44007
b5e7594061ce tuned proofs
haftmann
parents: 41550
diff changeset
   370
  assumes "P \<bottom>"
b5e7594061ce tuned proofs
haftmann
parents: 41550
diff changeset
   371
  assumes "P (single ())"
b5e7594061ce tuned proofs
haftmann
parents: 41550
diff changeset
   372
  shows "P Q"
44415
ce6cd1b2344b tuned specifications, syntax and proofs
haftmann
parents: 44414
diff changeset
   373
using assms unfolding bot_pred_def bot_fun_def bot_bool_def empty_def single_def proof (cases Q)
44007
b5e7594061ce tuned proofs
haftmann
parents: 41550
diff changeset
   374
  fix f
b5e7594061ce tuned proofs
haftmann
parents: 41550
diff changeset
   375
  assume "P (Pred (\<lambda>u. False))" "P (Pred (\<lambda>u. () = u))"
b5e7594061ce tuned proofs
haftmann
parents: 41550
diff changeset
   376
  then have "P (Pred f)" 
b5e7594061ce tuned proofs
haftmann
parents: 41550
diff changeset
   377
    by (cases _ f rule: closure_of_bool_cases) simp_all
b5e7594061ce tuned proofs
haftmann
parents: 41550
diff changeset
   378
  moreover assume "Q = Pred f"
b5e7594061ce tuned proofs
haftmann
parents: 41550
diff changeset
   379
  ultimately show "P Q" by simp
b5e7594061ce tuned proofs
haftmann
parents: 41550
diff changeset
   380
qed
b5e7594061ce tuned proofs
haftmann
parents: 41550
diff changeset
   381
  
33754
f2957bd46faf adding derived constant Predicate.holds to Predicate theory; adopting the predicate compiler
bulwahn
parents: 33622
diff changeset
   382
lemma holds_if_pred:
f2957bd46faf adding derived constant Predicate.holds to Predicate theory; adopting the predicate compiler
bulwahn
parents: 33622
diff changeset
   383
  "holds (if_pred b) = b"
f2957bd46faf adding derived constant Predicate.holds to Predicate theory; adopting the predicate compiler
bulwahn
parents: 33622
diff changeset
   384
unfolding if_pred_eq holds_eq
f2957bd46faf adding derived constant Predicate.holds to Predicate theory; adopting the predicate compiler
bulwahn
parents: 33622
diff changeset
   385
by (cases b) (auto intro: singleI elim: botE)
f2957bd46faf adding derived constant Predicate.holds to Predicate theory; adopting the predicate compiler
bulwahn
parents: 33622
diff changeset
   386
f2957bd46faf adding derived constant Predicate.holds to Predicate theory; adopting the predicate compiler
bulwahn
parents: 33622
diff changeset
   387
lemma if_pred_holds:
f2957bd46faf adding derived constant Predicate.holds to Predicate theory; adopting the predicate compiler
bulwahn
parents: 33622
diff changeset
   388
  "if_pred (holds P) = P"
f2957bd46faf adding derived constant Predicate.holds to Predicate theory; adopting the predicate compiler
bulwahn
parents: 33622
diff changeset
   389
unfolding if_pred_eq holds_eq
f2957bd46faf adding derived constant Predicate.holds to Predicate theory; adopting the predicate compiler
bulwahn
parents: 33622
diff changeset
   390
by (rule unit_pred_cases) (auto intro: singleI elim: botE)
f2957bd46faf adding derived constant Predicate.holds to Predicate theory; adopting the predicate compiler
bulwahn
parents: 33622
diff changeset
   391
f2957bd46faf adding derived constant Predicate.holds to Predicate theory; adopting the predicate compiler
bulwahn
parents: 33622
diff changeset
   392
lemma is_empty_holds:
f2957bd46faf adding derived constant Predicate.holds to Predicate theory; adopting the predicate compiler
bulwahn
parents: 33622
diff changeset
   393
  "is_empty P \<longleftrightarrow> \<not> holds P"
f2957bd46faf adding derived constant Predicate.holds to Predicate theory; adopting the predicate compiler
bulwahn
parents: 33622
diff changeset
   394
unfolding is_empty_def holds_eq
f2957bd46faf adding derived constant Predicate.holds to Predicate theory; adopting the predicate compiler
bulwahn
parents: 33622
diff changeset
   395
by (rule unit_pred_cases) (auto elim: botE intro: singleI)
30328
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   396
41311
de0c906dfe60 type_lifting for predicates
haftmann
parents: 41082
diff changeset
   397
definition map :: "('a \<Rightarrow> 'b) \<Rightarrow> 'a pred \<Rightarrow> 'b pred" where
67091
1393c2340eec more symbols;
wenzelm
parents: 66251
diff changeset
   398
  "map f P = P \<bind> (single \<circ> f)"
41311
de0c906dfe60 type_lifting for predicates
haftmann
parents: 41082
diff changeset
   399
de0c906dfe60 type_lifting for predicates
haftmann
parents: 41082
diff changeset
   400
lemma eval_map [simp]:
44363
53f4f8287606 avoid pred/set mixture
haftmann
parents: 44033
diff changeset
   401
  "eval (map f P) = (\<Squnion>x\<in>{x. eval P x}. (\<lambda>y. f x = y))"
44415
ce6cd1b2344b tuned specifications, syntax and proofs
haftmann
parents: 44414
diff changeset
   402
  by (auto simp add: map_def comp_def)
41311
de0c906dfe60 type_lifting for predicates
haftmann
parents: 41082
diff changeset
   403
55467
a5c9002bc54d renamed 'enriched_type' to more informative 'functor' (following the renaming of enriched type constructors to bounded natural functors)
blanchet
parents: 55416
diff changeset
   404
functor map: map
44363
53f4f8287606 avoid pred/set mixture
haftmann
parents: 44033
diff changeset
   405
  by (rule ext, rule pred_eqI, auto)+
41311
de0c906dfe60 type_lifting for predicates
haftmann
parents: 41082
diff changeset
   406
de0c906dfe60 type_lifting for predicates
haftmann
parents: 41082
diff changeset
   407
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60166
diff changeset
   408
subsection \<open>Implementation\<close>
30328
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   409
58350
919149921e46 added 'extraction' plugins -- this might help 'HOL-Proofs'
blanchet
parents: 58334
diff changeset
   410
datatype (plugins only: code extraction) (dead 'a) seq =
58334
7553a1bcecb7 disable datatype 'plugins' for internal types
blanchet
parents: 58310
diff changeset
   411
  Empty
7553a1bcecb7 disable datatype 'plugins' for internal types
blanchet
parents: 58310
diff changeset
   412
| Insert "'a" "'a pred"
7553a1bcecb7 disable datatype 'plugins' for internal types
blanchet
parents: 58310
diff changeset
   413
| Join "'a pred" "'a seq"
30328
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   414
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   415
primrec pred_of_seq :: "'a seq \<Rightarrow> 'a pred" where
44414
fb25c131bd73 tuned specifications and syntax
haftmann
parents: 44363
diff changeset
   416
  "pred_of_seq Empty = \<bottom>"
fb25c131bd73 tuned specifications and syntax
haftmann
parents: 44363
diff changeset
   417
| "pred_of_seq (Insert x P) = single x \<squnion> P"
fb25c131bd73 tuned specifications and syntax
haftmann
parents: 44363
diff changeset
   418
| "pred_of_seq (Join P xq) = P \<squnion> pred_of_seq xq"
30328
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   419
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   420
definition Seq :: "(unit \<Rightarrow> 'a seq) \<Rightarrow> 'a pred" where
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   421
  "Seq f = pred_of_seq (f ())"
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   422
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   423
code_datatype Seq
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   424
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   425
primrec member :: "'a seq \<Rightarrow> 'a \<Rightarrow> bool"  where
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   426
  "member Empty x \<longleftrightarrow> False"
44414
fb25c131bd73 tuned specifications and syntax
haftmann
parents: 44363
diff changeset
   427
| "member (Insert y P) x \<longleftrightarrow> x = y \<or> eval P x"
fb25c131bd73 tuned specifications and syntax
haftmann
parents: 44363
diff changeset
   428
| "member (Join P xq) x \<longleftrightarrow> eval P x \<or> member xq x"
30328
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   429
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   430
lemma eval_member:
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   431
  "member xq = eval (pred_of_seq xq)"
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   432
proof (induct xq)
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   433
  case Empty show ?case
39302
d7728f65b353 renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
nipkow
parents: 39198
diff changeset
   434
  by (auto simp add: fun_eq_iff elim: botE)
30328
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   435
next
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   436
  case Insert show ?case
39302
d7728f65b353 renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
nipkow
parents: 39198
diff changeset
   437
  by (auto simp add: fun_eq_iff elim: supE singleE intro: supI1 supI2 singleI)
30328
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   438
next
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   439
  case Join then show ?case
39302
d7728f65b353 renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
nipkow
parents: 39198
diff changeset
   440
  by (auto simp add: fun_eq_iff elim: supE intro: supI1 supI2)
30328
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   441
qed
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   442
46038
bb2f7488a0f1 conversions from sets to predicates and vice versa; extensionality on predicates
haftmann
parents: 45970
diff changeset
   443
lemma eval_code [(* FIXME declare simp *)code]: "eval (Seq f) = member (f ())"
30328
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   444
  unfolding Seq_def by (rule sym, rule eval_member)
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   445
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   446
lemma single_code [code]:
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   447
  "single x = Seq (\<lambda>u. Insert x \<bottom>)"
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   448
  unfolding Seq_def by simp
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   449
41080
294956ff285b nice syntax for lattice INFI, SUPR;
haftmann
parents: 41075
diff changeset
   450
primrec "apply" :: "('a \<Rightarrow> 'b pred) \<Rightarrow> 'a seq \<Rightarrow> 'b seq" where
44415
ce6cd1b2344b tuned specifications, syntax and proofs
haftmann
parents: 44414
diff changeset
   451
  "apply f Empty = Empty"
62026
ea3b1b0413b4 more symbols;
wenzelm
parents: 60758
diff changeset
   452
| "apply f (Insert x P) = Join (f x) (Join (P \<bind> f) Empty)"
ea3b1b0413b4 more symbols;
wenzelm
parents: 60758
diff changeset
   453
| "apply f (Join P xq) = Join (P \<bind> f) (apply f xq)"
30328
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   454
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   455
lemma apply_bind:
62026
ea3b1b0413b4 more symbols;
wenzelm
parents: 60758
diff changeset
   456
  "pred_of_seq (apply f xq) = pred_of_seq xq \<bind> f"
30328
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   457
proof (induct xq)
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   458
  case Empty show ?case
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   459
    by (simp add: bottom_bind)
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   460
next
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   461
  case Insert show ?case
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   462
    by (simp add: single_bind sup_bind)
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   463
next
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   464
  case Join then show ?case
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   465
    by (simp add: sup_bind)
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   466
qed
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   467
  
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   468
lemma bind_code [code]:
62026
ea3b1b0413b4 more symbols;
wenzelm
parents: 60758
diff changeset
   469
  "Seq g \<bind> f = Seq (\<lambda>u. apply f (g ()))"
30328
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   470
  unfolding Seq_def by (rule sym, rule apply_bind)
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   471
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   472
lemma bot_set_code [code]:
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   473
  "\<bottom> = Seq (\<lambda>u. Empty)"
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   474
  unfolding Seq_def by simp
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   475
30376
e8cc806a3755 refined enumeration implementation
haftmann
parents: 30328
diff changeset
   476
primrec adjunct :: "'a pred \<Rightarrow> 'a seq \<Rightarrow> 'a seq" where
44415
ce6cd1b2344b tuned specifications, syntax and proofs
haftmann
parents: 44414
diff changeset
   477
  "adjunct P Empty = Join P Empty"
ce6cd1b2344b tuned specifications, syntax and proofs
haftmann
parents: 44414
diff changeset
   478
| "adjunct P (Insert x Q) = Insert x (Q \<squnion> P)"
ce6cd1b2344b tuned specifications, syntax and proofs
haftmann
parents: 44414
diff changeset
   479
| "adjunct P (Join Q xq) = Join Q (adjunct P xq)"
30376
e8cc806a3755 refined enumeration implementation
haftmann
parents: 30328
diff changeset
   480
e8cc806a3755 refined enumeration implementation
haftmann
parents: 30328
diff changeset
   481
lemma adjunct_sup:
e8cc806a3755 refined enumeration implementation
haftmann
parents: 30328
diff changeset
   482
  "pred_of_seq (adjunct P xq) = P \<squnion> pred_of_seq xq"
e8cc806a3755 refined enumeration implementation
haftmann
parents: 30328
diff changeset
   483
  by (induct xq) (simp_all add: sup_assoc sup_commute sup_left_commute)
e8cc806a3755 refined enumeration implementation
haftmann
parents: 30328
diff changeset
   484
30328
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   485
lemma sup_code [code]:
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   486
  "Seq f \<squnion> Seq g = Seq (\<lambda>u. case f ()
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   487
    of Empty \<Rightarrow> g ()
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   488
     | Insert x P \<Rightarrow> Insert x (P \<squnion> Seq g)
30376
e8cc806a3755 refined enumeration implementation
haftmann
parents: 30328
diff changeset
   489
     | Join P xq \<Rightarrow> adjunct (Seq g) (Join P xq))"
30328
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   490
proof (cases "f ()")
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   491
  case Empty
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   492
  thus ?thesis
34007
aea892559fc5 tuned lattices theory fragements; generlized some lemmas from sets to lattices
haftmann
parents: 33988
diff changeset
   493
    unfolding Seq_def by (simp add: sup_commute [of "\<bottom>"])
30328
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   494
next
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   495
  case Insert
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   496
  thus ?thesis
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   497
    unfolding Seq_def by (simp add: sup_assoc)
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   498
next
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   499
  case Join
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   500
  thus ?thesis
30376
e8cc806a3755 refined enumeration implementation
haftmann
parents: 30328
diff changeset
   501
    unfolding Seq_def
e8cc806a3755 refined enumeration implementation
haftmann
parents: 30328
diff changeset
   502
    by (simp add: adjunct_sup sup_assoc sup_commute sup_left_commute)
30328
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   503
qed
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   504
30430
42ea5d85edcc explicit code equations for some rarely used pred operations
haftmann
parents: 30378
diff changeset
   505
primrec contained :: "'a seq \<Rightarrow> 'a pred \<Rightarrow> bool" where
44415
ce6cd1b2344b tuned specifications, syntax and proofs
haftmann
parents: 44414
diff changeset
   506
  "contained Empty Q \<longleftrightarrow> True"
ce6cd1b2344b tuned specifications, syntax and proofs
haftmann
parents: 44414
diff changeset
   507
| "contained (Insert x P) Q \<longleftrightarrow> eval Q x \<and> P \<le> Q"
ce6cd1b2344b tuned specifications, syntax and proofs
haftmann
parents: 44414
diff changeset
   508
| "contained (Join P xq) Q \<longleftrightarrow> P \<le> Q \<and> contained xq Q"
30430
42ea5d85edcc explicit code equations for some rarely used pred operations
haftmann
parents: 30378
diff changeset
   509
42ea5d85edcc explicit code equations for some rarely used pred operations
haftmann
parents: 30378
diff changeset
   510
lemma single_less_eq_eval:
42ea5d85edcc explicit code equations for some rarely used pred operations
haftmann
parents: 30378
diff changeset
   511
  "single x \<le> P \<longleftrightarrow> eval P x"
44415
ce6cd1b2344b tuned specifications, syntax and proofs
haftmann
parents: 44414
diff changeset
   512
  by (auto simp add: less_eq_pred_def le_fun_def)
30430
42ea5d85edcc explicit code equations for some rarely used pred operations
haftmann
parents: 30378
diff changeset
   513
42ea5d85edcc explicit code equations for some rarely used pred operations
haftmann
parents: 30378
diff changeset
   514
lemma contained_less_eq:
42ea5d85edcc explicit code equations for some rarely used pred operations
haftmann
parents: 30378
diff changeset
   515
  "contained xq Q \<longleftrightarrow> pred_of_seq xq \<le> Q"
42ea5d85edcc explicit code equations for some rarely used pred operations
haftmann
parents: 30378
diff changeset
   516
  by (induct xq) (simp_all add: single_less_eq_eval)
42ea5d85edcc explicit code equations for some rarely used pred operations
haftmann
parents: 30378
diff changeset
   517
42ea5d85edcc explicit code equations for some rarely used pred operations
haftmann
parents: 30378
diff changeset
   518
lemma less_eq_pred_code [code]:
42ea5d85edcc explicit code equations for some rarely used pred operations
haftmann
parents: 30378
diff changeset
   519
  "Seq f \<le> Q = (case f ()
42ea5d85edcc explicit code equations for some rarely used pred operations
haftmann
parents: 30378
diff changeset
   520
   of Empty \<Rightarrow> True
42ea5d85edcc explicit code equations for some rarely used pred operations
haftmann
parents: 30378
diff changeset
   521
    | Insert x P \<Rightarrow> eval Q x \<and> P \<le> Q
42ea5d85edcc explicit code equations for some rarely used pred operations
haftmann
parents: 30378
diff changeset
   522
    | Join P xq \<Rightarrow> P \<le> Q \<and> contained xq Q)"
42ea5d85edcc explicit code equations for some rarely used pred operations
haftmann
parents: 30378
diff changeset
   523
  by (cases "f ()")
42ea5d85edcc explicit code equations for some rarely used pred operations
haftmann
parents: 30378
diff changeset
   524
    (simp_all add: Seq_def single_less_eq_eval contained_less_eq)
42ea5d85edcc explicit code equations for some rarely used pred operations
haftmann
parents: 30378
diff changeset
   525
66012
59bf29d2b3a1 modernized (code) setup for enumeration predicates
haftmann
parents: 62390
diff changeset
   526
instantiation pred :: (type) equal
59bf29d2b3a1 modernized (code) setup for enumeration predicates
haftmann
parents: 62390
diff changeset
   527
begin
59bf29d2b3a1 modernized (code) setup for enumeration predicates
haftmann
parents: 62390
diff changeset
   528
59bf29d2b3a1 modernized (code) setup for enumeration predicates
haftmann
parents: 62390
diff changeset
   529
definition equal_pred
59bf29d2b3a1 modernized (code) setup for enumeration predicates
haftmann
parents: 62390
diff changeset
   530
  where [simp]: "HOL.equal P Q \<longleftrightarrow> P = (Q :: 'a pred)"
59bf29d2b3a1 modernized (code) setup for enumeration predicates
haftmann
parents: 62390
diff changeset
   531
59bf29d2b3a1 modernized (code) setup for enumeration predicates
haftmann
parents: 62390
diff changeset
   532
instance by standard simp
59bf29d2b3a1 modernized (code) setup for enumeration predicates
haftmann
parents: 62390
diff changeset
   533
59bf29d2b3a1 modernized (code) setup for enumeration predicates
haftmann
parents: 62390
diff changeset
   534
end
59bf29d2b3a1 modernized (code) setup for enumeration predicates
haftmann
parents: 62390
diff changeset
   535
    
59bf29d2b3a1 modernized (code) setup for enumeration predicates
haftmann
parents: 62390
diff changeset
   536
lemma [code]:
59bf29d2b3a1 modernized (code) setup for enumeration predicates
haftmann
parents: 62390
diff changeset
   537
  "HOL.equal P Q \<longleftrightarrow> P \<le> Q \<and> Q \<le> P" for P Q :: "'a pred"
59bf29d2b3a1 modernized (code) setup for enumeration predicates
haftmann
parents: 62390
diff changeset
   538
  by auto
38857
97775f3e8722 renamed class/constant eq to equal; tuned some instantiations
haftmann
parents: 38651
diff changeset
   539
97775f3e8722 renamed class/constant eq to equal; tuned some instantiations
haftmann
parents: 38651
diff changeset
   540
lemma [code nbe]:
66012
59bf29d2b3a1 modernized (code) setup for enumeration predicates
haftmann
parents: 62390
diff changeset
   541
  "HOL.equal P P \<longleftrightarrow> True" for P :: "'a pred"
38857
97775f3e8722 renamed class/constant eq to equal; tuned some instantiations
haftmann
parents: 38651
diff changeset
   542
  by (fact equal_refl)
30430
42ea5d85edcc explicit code equations for some rarely used pred operations
haftmann
parents: 30378
diff changeset
   543
42ea5d85edcc explicit code equations for some rarely used pred operations
haftmann
parents: 30378
diff changeset
   544
lemma [code]:
55416
dd7992d4a61a adapted theories to 'xxx_case' to 'case_xxx'
blanchet
parents: 53943
diff changeset
   545
  "case_pred f P = f (eval P)"
66012
59bf29d2b3a1 modernized (code) setup for enumeration predicates
haftmann
parents: 62390
diff changeset
   546
  by (fact pred.case_eq_if)
30430
42ea5d85edcc explicit code equations for some rarely used pred operations
haftmann
parents: 30378
diff changeset
   547
42ea5d85edcc explicit code equations for some rarely used pred operations
haftmann
parents: 30378
diff changeset
   548
lemma [code]:
55416
dd7992d4a61a adapted theories to 'xxx_case' to 'case_xxx'
blanchet
parents: 53943
diff changeset
   549
  "rec_pred f P = f (eval P)"
30430
42ea5d85edcc explicit code equations for some rarely used pred operations
haftmann
parents: 30378
diff changeset
   550
  by (cases P) simp
30328
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   551
31105
95f66b234086 added general preprocessing of equality in predicates for code generation
bulwahn
parents: 30430
diff changeset
   552
inductive eq :: "'a \<Rightarrow> 'a \<Rightarrow> bool" where "eq x x"
95f66b234086 added general preprocessing of equality in predicates for code generation
bulwahn
parents: 30430
diff changeset
   553
95f66b234086 added general preprocessing of equality in predicates for code generation
bulwahn
parents: 30430
diff changeset
   554
lemma eq_is_eq: "eq x y \<equiv> (x = y)"
31108
haftmann
parents: 31106 30959
diff changeset
   555
  by (rule eq_reflection) (auto intro: eq.intros elim: eq.cases)
30948
7f699568a877 static compilation of enumeration type
haftmann
parents: 30430
diff changeset
   556
32578
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   557
primrec null :: "'a seq \<Rightarrow> bool" where
44415
ce6cd1b2344b tuned specifications, syntax and proofs
haftmann
parents: 44414
diff changeset
   558
  "null Empty \<longleftrightarrow> True"
ce6cd1b2344b tuned specifications, syntax and proofs
haftmann
parents: 44414
diff changeset
   559
| "null (Insert x P) \<longleftrightarrow> False"
ce6cd1b2344b tuned specifications, syntax and proofs
haftmann
parents: 44414
diff changeset
   560
| "null (Join P xq) \<longleftrightarrow> is_empty P \<and> null xq"
32578
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   561
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   562
lemma null_is_empty:
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   563
  "null xq \<longleftrightarrow> is_empty (pred_of_seq xq)"
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   564
  by (induct xq) (simp_all add: is_empty_bot not_is_empty_single is_empty_sup)
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   565
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   566
lemma is_empty_code [code]:
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   567
  "is_empty (Seq f) \<longleftrightarrow> null (f ())"
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   568
  by (simp add: null_is_empty Seq_def)
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   569
33111
db5af7b86a2f developing an executable the operator
bulwahn
parents: 33110
diff changeset
   570
primrec the_only :: "(unit \<Rightarrow> 'a) \<Rightarrow> 'a seq \<Rightarrow> 'a" where
66251
cd935b7cb3fb proper concept of code declaration wrt. atomicity and Isar declarations
haftmann
parents: 66012
diff changeset
   571
  "the_only default Empty = default ()" for default
cd935b7cb3fb proper concept of code declaration wrt. atomicity and Isar declarations
haftmann
parents: 66012
diff changeset
   572
| "the_only default (Insert x P) =
cd935b7cb3fb proper concept of code declaration wrt. atomicity and Isar declarations
haftmann
parents: 66012
diff changeset
   573
    (if is_empty P then x else let y = singleton default P in if x = y then x else default ())" for default
cd935b7cb3fb proper concept of code declaration wrt. atomicity and Isar declarations
haftmann
parents: 66012
diff changeset
   574
| "the_only default (Join P xq) =
60166
ff6c4ff5e7ab tuned spelling;
wenzelm
parents: 58889
diff changeset
   575
    (if is_empty P then the_only default xq else if null xq then singleton default P
ff6c4ff5e7ab tuned spelling;
wenzelm
parents: 58889
diff changeset
   576
       else let x = singleton default P; y = the_only default xq in
66251
cd935b7cb3fb proper concept of code declaration wrt. atomicity and Isar declarations
haftmann
parents: 66012
diff changeset
   577
       if x = y then x else default ())" for default
32578
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   578
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   579
lemma the_only_singleton:
66251
cd935b7cb3fb proper concept of code declaration wrt. atomicity and Isar declarations
haftmann
parents: 66012
diff changeset
   580
  "the_only default xq = singleton default (pred_of_seq xq)" for default
32578
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   581
  by (induct xq)
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   582
    (auto simp add: singleton_bot singleton_single is_empty_def
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   583
    null_is_empty Let_def singleton_sup)
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   584
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   585
lemma singleton_code [code]:
60166
ff6c4ff5e7ab tuned spelling;
wenzelm
parents: 58889
diff changeset
   586
  "singleton default (Seq f) =
ff6c4ff5e7ab tuned spelling;
wenzelm
parents: 58889
diff changeset
   587
    (case f () of
ff6c4ff5e7ab tuned spelling;
wenzelm
parents: 58889
diff changeset
   588
      Empty \<Rightarrow> default ()
32578
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   589
    | Insert x P \<Rightarrow> if is_empty P then x
60166
ff6c4ff5e7ab tuned spelling;
wenzelm
parents: 58889
diff changeset
   590
        else let y = singleton default P in
ff6c4ff5e7ab tuned spelling;
wenzelm
parents: 58889
diff changeset
   591
          if x = y then x else default ()
ff6c4ff5e7ab tuned spelling;
wenzelm
parents: 58889
diff changeset
   592
    | Join P xq \<Rightarrow> if is_empty P then the_only default xq
ff6c4ff5e7ab tuned spelling;
wenzelm
parents: 58889
diff changeset
   593
        else if null xq then singleton default P
ff6c4ff5e7ab tuned spelling;
wenzelm
parents: 58889
diff changeset
   594
        else let x = singleton default P; y = the_only default xq in
66251
cd935b7cb3fb proper concept of code declaration wrt. atomicity and Isar declarations
haftmann
parents: 66012
diff changeset
   595
          if x = y then x else default ())" for default
32578
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   596
  by (cases "f ()")
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   597
   (auto simp add: Seq_def the_only_singleton is_empty_def
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   598
      null_is_empty singleton_bot singleton_single singleton_sup Let_def)
22117a76f943 added emptiness check predicate and singleton projection
haftmann
parents: 32372
diff changeset
   599
44414
fb25c131bd73 tuned specifications and syntax
haftmann
parents: 44363
diff changeset
   600
definition the :: "'a pred \<Rightarrow> 'a" where
37767
a2b7a20d6ea3 dropped superfluous [code del]s
haftmann
parents: 37549
diff changeset
   601
  "the A = (THE x. eval A x)"
33111
db5af7b86a2f developing an executable the operator
bulwahn
parents: 33110
diff changeset
   602
40674
54dbe6a1c349 adhere established Collect/mem convention more closely
haftmann
parents: 40616
diff changeset
   603
lemma the_eqI:
41080
294956ff285b nice syntax for lattice INFI, SUPR;
haftmann
parents: 41075
diff changeset
   604
  "(THE x. eval P x) = x \<Longrightarrow> the P = x"
40674
54dbe6a1c349 adhere established Collect/mem convention more closely
haftmann
parents: 40616
diff changeset
   605
  by (simp add: the_def)
54dbe6a1c349 adhere established Collect/mem convention more closely
haftmann
parents: 40616
diff changeset
   606
53943
2b761d9a74f5 prefer Code.abort over code_abort
Andreas Lochbihler
parents: 53374
diff changeset
   607
lemma the_eq [code]: "the A = singleton (\<lambda>x. Code.abort (STR ''not_unique'') (\<lambda>_. the A)) A"
2b761d9a74f5 prefer Code.abort over code_abort
Andreas Lochbihler
parents: 53374
diff changeset
   608
  by (rule the_eqI) (simp add: singleton_def the_def)
33110
16f2814653ed generalizing singleton with a default value
bulwahn
parents: 33104
diff changeset
   609
36531
19f6e3b0d9b6 code_reflect: specify module name directly after keyword
haftmann
parents: 36513
diff changeset
   610
code_reflect Predicate
36513
70096cbdd4e0 avoid code_datatype antiquotation
haftmann
parents: 36176
diff changeset
   611
  datatypes pred = Seq and seq = Empty | Insert | Join
70096cbdd4e0 avoid code_datatype antiquotation
haftmann
parents: 36176
diff changeset
   612
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60166
diff changeset
   613
ML \<open>
30948
7f699568a877 static compilation of enumeration type
haftmann
parents: 30430
diff changeset
   614
signature PREDICATE =
7f699568a877 static compilation of enumeration type
haftmann
parents: 30430
diff changeset
   615
sig
51126
df86080de4cb reform of predicate compiler / quickcheck theories:
haftmann
parents: 51112
diff changeset
   616
  val anamorph: ('a -> ('b * 'a) option) -> int -> 'a -> 'b list * 'a
30948
7f699568a877 static compilation of enumeration type
haftmann
parents: 30430
diff changeset
   617
  datatype 'a pred = Seq of (unit -> 'a seq)
7f699568a877 static compilation of enumeration type
haftmann
parents: 30430
diff changeset
   618
  and 'a seq = Empty | Insert of 'a * 'a pred | Join of 'a pred * 'a seq
51126
df86080de4cb reform of predicate compiler / quickcheck theories:
haftmann
parents: 51112
diff changeset
   619
  val map: ('a -> 'b) -> 'a pred -> 'b pred
30959
458e55fd0a33 fixed compilation of predicate types in ML environment
haftmann
parents: 30948
diff changeset
   620
  val yield: 'a pred -> ('a * 'a pred) option
458e55fd0a33 fixed compilation of predicate types in ML environment
haftmann
parents: 30948
diff changeset
   621
  val yieldn: int -> 'a pred -> 'a list * 'a pred
30948
7f699568a877 static compilation of enumeration type
haftmann
parents: 30430
diff changeset
   622
end;
7f699568a877 static compilation of enumeration type
haftmann
parents: 30430
diff changeset
   623
7f699568a877 static compilation of enumeration type
haftmann
parents: 30430
diff changeset
   624
structure Predicate : PREDICATE =
7f699568a877 static compilation of enumeration type
haftmann
parents: 30430
diff changeset
   625
struct
7f699568a877 static compilation of enumeration type
haftmann
parents: 30430
diff changeset
   626
51126
df86080de4cb reform of predicate compiler / quickcheck theories:
haftmann
parents: 51112
diff changeset
   627
fun anamorph f k x =
df86080de4cb reform of predicate compiler / quickcheck theories:
haftmann
parents: 51112
diff changeset
   628
 (if k = 0 then ([], x)
df86080de4cb reform of predicate compiler / quickcheck theories:
haftmann
parents: 51112
diff changeset
   629
  else case f x
df86080de4cb reform of predicate compiler / quickcheck theories:
haftmann
parents: 51112
diff changeset
   630
   of NONE => ([], x)
df86080de4cb reform of predicate compiler / quickcheck theories:
haftmann
parents: 51112
diff changeset
   631
    | SOME (v, y) => let
df86080de4cb reform of predicate compiler / quickcheck theories:
haftmann
parents: 51112
diff changeset
   632
        val k' = k - 1;
df86080de4cb reform of predicate compiler / quickcheck theories:
haftmann
parents: 51112
diff changeset
   633
        val (vs, z) = anamorph f k' y
df86080de4cb reform of predicate compiler / quickcheck theories:
haftmann
parents: 51112
diff changeset
   634
      in (v :: vs, z) end);
df86080de4cb reform of predicate compiler / quickcheck theories:
haftmann
parents: 51112
diff changeset
   635
36513
70096cbdd4e0 avoid code_datatype antiquotation
haftmann
parents: 36176
diff changeset
   636
datatype pred = datatype Predicate.pred
70096cbdd4e0 avoid code_datatype antiquotation
haftmann
parents: 36176
diff changeset
   637
datatype seq = datatype Predicate.seq
70096cbdd4e0 avoid code_datatype antiquotation
haftmann
parents: 36176
diff changeset
   638
51126
df86080de4cb reform of predicate compiler / quickcheck theories:
haftmann
parents: 51112
diff changeset
   639
fun map f = @{code Predicate.map} f;
30959
458e55fd0a33 fixed compilation of predicate types in ML environment
haftmann
parents: 30948
diff changeset
   640
36513
70096cbdd4e0 avoid code_datatype antiquotation
haftmann
parents: 36176
diff changeset
   641
fun yield (Seq f) = next (f ())
70096cbdd4e0 avoid code_datatype antiquotation
haftmann
parents: 36176
diff changeset
   642
and next Empty = NONE
70096cbdd4e0 avoid code_datatype antiquotation
haftmann
parents: 36176
diff changeset
   643
  | next (Insert (x, P)) = SOME (x, P)
70096cbdd4e0 avoid code_datatype antiquotation
haftmann
parents: 36176
diff changeset
   644
  | next (Join (P, xq)) = (case yield P
30959
458e55fd0a33 fixed compilation of predicate types in ML environment
haftmann
parents: 30948
diff changeset
   645
     of NONE => next xq
36513
70096cbdd4e0 avoid code_datatype antiquotation
haftmann
parents: 36176
diff changeset
   646
      | SOME (x, Q) => SOME (x, Seq (fn _ => Join (Q, xq))));
30959
458e55fd0a33 fixed compilation of predicate types in ML environment
haftmann
parents: 30948
diff changeset
   647
51126
df86080de4cb reform of predicate compiler / quickcheck theories:
haftmann
parents: 51112
diff changeset
   648
fun yieldn k = anamorph yield k;
30948
7f699568a877 static compilation of enumeration type
haftmann
parents: 30430
diff changeset
   649
7f699568a877 static compilation of enumeration type
haftmann
parents: 30430
diff changeset
   650
end;
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60166
diff changeset
   651
\<close>
30948
7f699568a877 static compilation of enumeration type
haftmann
parents: 30430
diff changeset
   652
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60166
diff changeset
   653
text \<open>Conversion from and to sets\<close>
46038
bb2f7488a0f1 conversions from sets to predicates and vice versa; extensionality on predicates
haftmann
parents: 45970
diff changeset
   654
bb2f7488a0f1 conversions from sets to predicates and vice versa; extensionality on predicates
haftmann
parents: 45970
diff changeset
   655
definition pred_of_set :: "'a set \<Rightarrow> 'a pred" where
bb2f7488a0f1 conversions from sets to predicates and vice versa; extensionality on predicates
haftmann
parents: 45970
diff changeset
   656
  "pred_of_set = Pred \<circ> (\<lambda>A x. x \<in> A)"
bb2f7488a0f1 conversions from sets to predicates and vice versa; extensionality on predicates
haftmann
parents: 45970
diff changeset
   657
bb2f7488a0f1 conversions from sets to predicates and vice versa; extensionality on predicates
haftmann
parents: 45970
diff changeset
   658
lemma eval_pred_of_set [simp]:
bb2f7488a0f1 conversions from sets to predicates and vice versa; extensionality on predicates
haftmann
parents: 45970
diff changeset
   659
  "eval (pred_of_set A) x \<longleftrightarrow> x \<in>A"
bb2f7488a0f1 conversions from sets to predicates and vice versa; extensionality on predicates
haftmann
parents: 45970
diff changeset
   660
  by (simp add: pred_of_set_def)
bb2f7488a0f1 conversions from sets to predicates and vice versa; extensionality on predicates
haftmann
parents: 45970
diff changeset
   661
bb2f7488a0f1 conversions from sets to predicates and vice versa; extensionality on predicates
haftmann
parents: 45970
diff changeset
   662
definition set_of_pred :: "'a pred \<Rightarrow> 'a set" where
bb2f7488a0f1 conversions from sets to predicates and vice versa; extensionality on predicates
haftmann
parents: 45970
diff changeset
   663
  "set_of_pred = Collect \<circ> eval"
bb2f7488a0f1 conversions from sets to predicates and vice versa; extensionality on predicates
haftmann
parents: 45970
diff changeset
   664
bb2f7488a0f1 conversions from sets to predicates and vice versa; extensionality on predicates
haftmann
parents: 45970
diff changeset
   665
lemma member_set_of_pred [simp]:
bb2f7488a0f1 conversions from sets to predicates and vice versa; extensionality on predicates
haftmann
parents: 45970
diff changeset
   666
  "x \<in> set_of_pred P \<longleftrightarrow> Predicate.eval P x"
bb2f7488a0f1 conversions from sets to predicates and vice versa; extensionality on predicates
haftmann
parents: 45970
diff changeset
   667
  by (simp add: set_of_pred_def)
bb2f7488a0f1 conversions from sets to predicates and vice versa; extensionality on predicates
haftmann
parents: 45970
diff changeset
   668
bb2f7488a0f1 conversions from sets to predicates and vice versa; extensionality on predicates
haftmann
parents: 45970
diff changeset
   669
definition set_of_seq :: "'a seq \<Rightarrow> 'a set" where
bb2f7488a0f1 conversions from sets to predicates and vice versa; extensionality on predicates
haftmann
parents: 45970
diff changeset
   670
  "set_of_seq = set_of_pred \<circ> pred_of_seq"
bb2f7488a0f1 conversions from sets to predicates and vice versa; extensionality on predicates
haftmann
parents: 45970
diff changeset
   671
bb2f7488a0f1 conversions from sets to predicates and vice versa; extensionality on predicates
haftmann
parents: 45970
diff changeset
   672
lemma member_set_of_seq [simp]:
bb2f7488a0f1 conversions from sets to predicates and vice versa; extensionality on predicates
haftmann
parents: 45970
diff changeset
   673
  "x \<in> set_of_seq xq = Predicate.member xq x"
bb2f7488a0f1 conversions from sets to predicates and vice versa; extensionality on predicates
haftmann
parents: 45970
diff changeset
   674
  by (simp add: set_of_seq_def eval_member)
bb2f7488a0f1 conversions from sets to predicates and vice versa; extensionality on predicates
haftmann
parents: 45970
diff changeset
   675
bb2f7488a0f1 conversions from sets to predicates and vice versa; extensionality on predicates
haftmann
parents: 45970
diff changeset
   676
lemma of_pred_code [code]:
bb2f7488a0f1 conversions from sets to predicates and vice versa; extensionality on predicates
haftmann
parents: 45970
diff changeset
   677
  "set_of_pred (Predicate.Seq f) = (case f () of
bb2f7488a0f1 conversions from sets to predicates and vice versa; extensionality on predicates
haftmann
parents: 45970
diff changeset
   678
     Predicate.Empty \<Rightarrow> {}
bb2f7488a0f1 conversions from sets to predicates and vice versa; extensionality on predicates
haftmann
parents: 45970
diff changeset
   679
   | Predicate.Insert x P \<Rightarrow> insert x (set_of_pred P)
bb2f7488a0f1 conversions from sets to predicates and vice versa; extensionality on predicates
haftmann
parents: 45970
diff changeset
   680
   | Predicate.Join P xq \<Rightarrow> set_of_pred P \<union> set_of_seq xq)"
bb2f7488a0f1 conversions from sets to predicates and vice versa; extensionality on predicates
haftmann
parents: 45970
diff changeset
   681
  by (auto split: seq.split simp add: eval_code)
bb2f7488a0f1 conversions from sets to predicates and vice versa; extensionality on predicates
haftmann
parents: 45970
diff changeset
   682
bb2f7488a0f1 conversions from sets to predicates and vice versa; extensionality on predicates
haftmann
parents: 45970
diff changeset
   683
lemma of_seq_code [code]:
bb2f7488a0f1 conversions from sets to predicates and vice versa; extensionality on predicates
haftmann
parents: 45970
diff changeset
   684
  "set_of_seq Predicate.Empty = {}"
bb2f7488a0f1 conversions from sets to predicates and vice versa; extensionality on predicates
haftmann
parents: 45970
diff changeset
   685
  "set_of_seq (Predicate.Insert x P) = insert x (set_of_pred P)"
bb2f7488a0f1 conversions from sets to predicates and vice versa; extensionality on predicates
haftmann
parents: 45970
diff changeset
   686
  "set_of_seq (Predicate.Join P xq) = set_of_pred P \<union> set_of_seq xq"
bb2f7488a0f1 conversions from sets to predicates and vice versa; extensionality on predicates
haftmann
parents: 45970
diff changeset
   687
  by auto
bb2f7488a0f1 conversions from sets to predicates and vice versa; extensionality on predicates
haftmann
parents: 45970
diff changeset
   688
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60166
diff changeset
   689
text \<open>Lazy Evaluation of an indexed function\<close>
46664
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
   690
51143
0a2371e7ced3 two target language numeral types: integer and natural, as replacement for code_numeral;
haftmann
parents: 51126
diff changeset
   691
function iterate_upto :: "(natural \<Rightarrow> 'a) \<Rightarrow> natural \<Rightarrow> natural \<Rightarrow> 'a Predicate.pred"
46664
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
   692
where
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
   693
  "iterate_upto f n m =
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
   694
    Predicate.Seq (%u. if n > m then Predicate.Empty
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
   695
     else Predicate.Insert (f n) (iterate_upto f (n + 1) m))"
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
   696
by pat_completeness auto
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
   697
51143
0a2371e7ced3 two target language numeral types: integer and natural, as replacement for code_numeral;
haftmann
parents: 51126
diff changeset
   698
termination by (relation "measure (%(f, n, m). nat_of_natural (m + 1 - n))")
0a2371e7ced3 two target language numeral types: integer and natural, as replacement for code_numeral;
haftmann
parents: 51126
diff changeset
   699
  (auto simp add: less_natural_def)
46664
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
   700
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60166
diff changeset
   701
text \<open>Misc\<close>
46664
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
   702
47399
b72fa7bf9a10 abandoned almost redundant *_foldr lemmas
haftmann
parents: 46884
diff changeset
   703
declare Inf_set_fold [where 'a = "'a Predicate.pred", code]
b72fa7bf9a10 abandoned almost redundant *_foldr lemmas
haftmann
parents: 46884
diff changeset
   704
declare Sup_set_fold [where 'a = "'a Predicate.pred", code]
46664
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
   705
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
   706
(* FIXME: better implement conversion by bisection *)
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
   707
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
   708
lemma pred_of_set_fold_sup:
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
   709
  assumes "finite A"
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
   710
  shows "pred_of_set A = Finite_Set.fold sup bot (Predicate.single ` A)" (is "?lhs = ?rhs")
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
   711
proof (rule sym)
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
   712
  interpret comp_fun_idem "sup :: 'a Predicate.pred \<Rightarrow> 'a Predicate.pred \<Rightarrow> 'a Predicate.pred"
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
   713
    by (fact comp_fun_idem_sup)
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60166
diff changeset
   714
  from \<open>finite A\<close> show "?rhs = ?lhs" by (induct A) (auto intro!: pred_eqI)
46664
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
   715
qed
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
   716
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
   717
lemma pred_of_set_set_fold_sup:
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
   718
  "pred_of_set (set xs) = fold sup (List.map Predicate.single xs) bot"
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
   719
proof -
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
   720
  interpret comp_fun_idem "sup :: 'a Predicate.pred \<Rightarrow> 'a Predicate.pred \<Rightarrow> 'a Predicate.pred"
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
   721
    by (fact comp_fun_idem_sup)
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
   722
  show ?thesis by (simp add: pred_of_set_fold_sup fold_set_fold [symmetric])
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
   723
qed
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
   724
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
   725
lemma pred_of_set_set_foldr_sup [code]:
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
   726
  "pred_of_set (set xs) = foldr sup (List.map Predicate.single xs) bot"
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
   727
  by (simp add: pred_of_set_set_fold_sup ac_simps foldr_fold fun_eq_iff)
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
   728
30328
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   729
no_notation
62026
ea3b1b0413b4 more symbols;
wenzelm
parents: 60758
diff changeset
   730
  bind (infixl "\<bind>" 70)
30328
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   731
36176
3fe7e97ccca8 replaced generic 'hide' command by more conventional 'hide_class', 'hide_type', 'hide_const', 'hide_fact' -- frees some popular keywords;
wenzelm
parents: 36008
diff changeset
   732
hide_type (open) pred seq
3fe7e97ccca8 replaced generic 'hide' command by more conventional 'hide_class', 'hide_type', 'hide_const', 'hide_fact' -- frees some popular keywords;
wenzelm
parents: 36008
diff changeset
   733
hide_const (open) Pred eval single bind is_empty singleton if_pred not_pred holds
53943
2b761d9a74f5 prefer Code.abort over code_abort
Andreas Lochbihler
parents: 53374
diff changeset
   734
  Empty Insert Join Seq member pred_of_seq "apply" adjunct null the_only eq map the
46664
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
   735
  iterate_upto
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
   736
hide_fact (open) null_def member_def
30328
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   737
ab47f43f7581 added enumeration of predicates
haftmann
parents: 26797
diff changeset
   738
end