| author | wenzelm | 
| Tue, 13 Jan 2015 21:46:09 +0100 | |
| changeset 59362 | 41f1645a4f63 | 
| parent 58889 | 5b7a9633cfa8 | 
| child 59940 | 087d81f5213e | 
| permissions | -rw-r--r-- | 
| 13403 | 1  | 
(* Title: HOL/Extraction.thy  | 
2  | 
Author: Stefan Berghofer, TU Muenchen  | 
|
3  | 
*)  | 
|
4  | 
||
| 58889 | 5  | 
section {* Program extraction for HOL *}
 | 
| 13403 | 6  | 
|
| 15131 | 7  | 
theory Extraction  | 
| 
58112
 
8081087096ad
renamed modules defining old datatypes, as a step towards having 'datatype_new' take 'datatype's place
 
blanchet 
parents: 
55642 
diff
changeset
 | 
8  | 
imports Option  | 
| 15131 | 9  | 
begin  | 
| 13403 | 10  | 
|
| 48891 | 11  | 
ML_file "Tools/rewrite_hol_proof.ML"  | 
12  | 
||
| 13403 | 13  | 
subsection {* Setup *}
 | 
14  | 
||
| 16121 | 15  | 
setup {*
 | 
| 18708 | 16  | 
Extraction.add_types  | 
| 29930 | 17  | 
      [("bool", ([], NONE))] #>
 | 
| 18708 | 18  | 
Extraction.set_preprocessor (fn thy =>  | 
| 13403 | 19  | 
Proofterm.rewrite_proof_notypes  | 
| 
28797
 
9dcd32ee5dbe
rewrite_proof: simplified simprocs (no name required);
 
wenzelm 
parents: 
27982 
diff
changeset
 | 
20  | 
([], RewriteHOLProof.elim_cong :: ProofRewriteRules.rprocs true) o  | 
| 17203 | 21  | 
Proofterm.rewrite_proof thy  | 
| 
37233
 
b78f31ca4675
Adapted to new format of proof terms containing explicit proofs of class membership.
 
berghofe 
parents: 
34913 
diff
changeset
 | 
22  | 
(RewriteHOLProof.rews,  | 
| 
 
b78f31ca4675
Adapted to new format of proof terms containing explicit proofs of class membership.
 
berghofe 
parents: 
34913 
diff
changeset
 | 
23  | 
ProofRewriteRules.rprocs true @ [ProofRewriteRules.expand_of_class thy]) o  | 
| 27982 | 24  | 
      ProofRewriteRules.elim_vars (curry Const @{const_name default}))
 | 
| 13403 | 25  | 
*}  | 
26  | 
||
27  | 
lemmas [extraction_expand] =  | 
|
| 22281 | 28  | 
meta_spec atomize_eq atomize_all atomize_imp atomize_conj  | 
| 13403 | 29  | 
allE rev_mp conjE Eq_TrueI Eq_FalseI eqTrueI eqTrueE eq_cong2  | 
| 
20941
 
beedcae49096
added eq_True eq_False True_implies_equals to extraction_expand
 
haftmann 
parents: 
18708 
diff
changeset
 | 
30  | 
notE' impE' impE iffE imp_cong simp_thms eq_True eq_False  | 
| 18456 | 31  | 
induct_forall_eq induct_implies_eq induct_equal_eq induct_conj_eq  | 
| 34913 | 32  | 
induct_atomize induct_atomize' induct_rulify induct_rulify'  | 
33  | 
induct_rulify_fallback induct_trueI  | 
|
| 25424 | 34  | 
True_implies_equals TrueE  | 
| 13403 | 35  | 
|
| 
33704
 
6aeb8454efc1
add_expand_thm: explicit indication of is_def instead of fragile heuristic, tuned signature;
 
wenzelm 
parents: 
30235 
diff
changeset
 | 
36  | 
lemmas [extraction_expand_def] =  | 
| 
 
6aeb8454efc1
add_expand_thm: explicit indication of is_def instead of fragile heuristic, tuned signature;
 
wenzelm 
parents: 
30235 
diff
changeset
 | 
37  | 
induct_forall_def induct_implies_def induct_equal_def induct_conj_def  | 
| 34913 | 38  | 
induct_true_def induct_false_def  | 
| 
33704
 
6aeb8454efc1
add_expand_thm: explicit indication of is_def instead of fragile heuristic, tuned signature;
 
wenzelm 
parents: 
30235 
diff
changeset
 | 
39  | 
|
| 
58350
 
919149921e46
added 'extraction' plugins -- this might help 'HOL-Proofs'
 
blanchet 
parents: 
58343 
diff
changeset
 | 
40  | 
datatype (plugins only: code extraction) sumbool = Left | Right  | 
| 13403 | 41  | 
|
42  | 
subsection {* Type of extracted program *}
 | 
|
43  | 
||
44  | 
extract_type  | 
|
45  | 
"typeof (Trueprop P) \<equiv> typeof P"  | 
|
46  | 
||
47  | 
  "typeof P \<equiv> Type (TYPE(Null)) \<Longrightarrow> typeof Q \<equiv> Type (TYPE('Q)) \<Longrightarrow>
 | 
|
48  | 
     typeof (P \<longrightarrow> Q) \<equiv> Type (TYPE('Q))"
 | 
|
49  | 
||
50  | 
"typeof Q \<equiv> Type (TYPE(Null)) \<Longrightarrow> typeof (P \<longrightarrow> Q) \<equiv> Type (TYPE(Null))"  | 
|
51  | 
||
52  | 
  "typeof P \<equiv> Type (TYPE('P)) \<Longrightarrow> typeof Q \<equiv> Type (TYPE('Q)) \<Longrightarrow>
 | 
|
53  | 
     typeof (P \<longrightarrow> Q) \<equiv> Type (TYPE('P \<Rightarrow> 'Q))"
 | 
|
54  | 
||
55  | 
"(\<lambda>x. typeof (P x)) \<equiv> (\<lambda>x. Type (TYPE(Null))) \<Longrightarrow>  | 
|
56  | 
typeof (\<forall>x. P x) \<equiv> Type (TYPE(Null))"  | 
|
57  | 
||
58  | 
  "(\<lambda>x. typeof (P x)) \<equiv> (\<lambda>x. Type (TYPE('P))) \<Longrightarrow>
 | 
|
59  | 
     typeof (\<forall>x::'a. P x) \<equiv> Type (TYPE('a \<Rightarrow> 'P))"
 | 
|
60  | 
||
61  | 
"(\<lambda>x. typeof (P x)) \<equiv> (\<lambda>x. Type (TYPE(Null))) \<Longrightarrow>  | 
|
62  | 
     typeof (\<exists>x::'a. P x) \<equiv> Type (TYPE('a))"
 | 
|
63  | 
||
64  | 
  "(\<lambda>x. typeof (P x)) \<equiv> (\<lambda>x. Type (TYPE('P))) \<Longrightarrow>
 | 
|
65  | 
     typeof (\<exists>x::'a. P x) \<equiv> Type (TYPE('a \<times> 'P))"
 | 
|
66  | 
||
67  | 
"typeof P \<equiv> Type (TYPE(Null)) \<Longrightarrow> typeof Q \<equiv> Type (TYPE(Null)) \<Longrightarrow>  | 
|
68  | 
typeof (P \<or> Q) \<equiv> Type (TYPE(sumbool))"  | 
|
69  | 
||
70  | 
  "typeof P \<equiv> Type (TYPE(Null)) \<Longrightarrow> typeof Q \<equiv> Type (TYPE('Q)) \<Longrightarrow>
 | 
|
71  | 
     typeof (P \<or> Q) \<equiv> Type (TYPE('Q option))"
 | 
|
72  | 
||
73  | 
  "typeof P \<equiv> Type (TYPE('P)) \<Longrightarrow> typeof Q \<equiv> Type (TYPE(Null)) \<Longrightarrow>
 | 
|
74  | 
     typeof (P \<or> Q) \<equiv> Type (TYPE('P option))"
 | 
|
75  | 
||
76  | 
  "typeof P \<equiv> Type (TYPE('P)) \<Longrightarrow> typeof Q \<equiv> Type (TYPE('Q)) \<Longrightarrow>
 | 
|
77  | 
     typeof (P \<or> Q) \<equiv> Type (TYPE('P + 'Q))"
 | 
|
78  | 
||
79  | 
  "typeof P \<equiv> Type (TYPE(Null)) \<Longrightarrow> typeof Q \<equiv> Type (TYPE('Q)) \<Longrightarrow>
 | 
|
80  | 
     typeof (P \<and> Q) \<equiv> Type (TYPE('Q))"
 | 
|
81  | 
||
82  | 
  "typeof P \<equiv> Type (TYPE('P)) \<Longrightarrow> typeof Q \<equiv> Type (TYPE(Null)) \<Longrightarrow>
 | 
|
83  | 
     typeof (P \<and> Q) \<equiv> Type (TYPE('P))"
 | 
|
84  | 
||
85  | 
  "typeof P \<equiv> Type (TYPE('P)) \<Longrightarrow> typeof Q \<equiv> Type (TYPE('Q)) \<Longrightarrow>
 | 
|
86  | 
     typeof (P \<and> Q) \<equiv> Type (TYPE('P \<times> 'Q))"
 | 
|
87  | 
||
88  | 
"typeof (P = Q) \<equiv> typeof ((P \<longrightarrow> Q) \<and> (Q \<longrightarrow> P))"  | 
|
89  | 
||
90  | 
"typeof (x \<in> P) \<equiv> typeof P"  | 
|
91  | 
||
92  | 
subsection {* Realizability *}
 | 
|
93  | 
||
94  | 
realizability  | 
|
95  | 
"(realizes t (Trueprop P)) \<equiv> (Trueprop (realizes t P))"  | 
|
96  | 
||
97  | 
"(typeof P) \<equiv> (Type (TYPE(Null))) \<Longrightarrow>  | 
|
98  | 
(realizes t (P \<longrightarrow> Q)) \<equiv> (realizes Null P \<longrightarrow> realizes t Q)"  | 
|
99  | 
||
100  | 
  "(typeof P) \<equiv> (Type (TYPE('P))) \<Longrightarrow>
 | 
|
101  | 
(typeof Q) \<equiv> (Type (TYPE(Null))) \<Longrightarrow>  | 
|
102  | 
(realizes t (P \<longrightarrow> Q)) \<equiv> (\<forall>x::'P. realizes x P \<longrightarrow> realizes Null Q)"  | 
|
103  | 
||
104  | 
"(realizes t (P \<longrightarrow> Q)) \<equiv> (\<forall>x. realizes x P \<longrightarrow> realizes (t x) Q)"  | 
|
105  | 
||
106  | 
"(\<lambda>x. typeof (P x)) \<equiv> (\<lambda>x. Type (TYPE(Null))) \<Longrightarrow>  | 
|
107  | 
(realizes t (\<forall>x. P x)) \<equiv> (\<forall>x. realizes Null (P x))"  | 
|
108  | 
||
109  | 
"(realizes t (\<forall>x. P x)) \<equiv> (\<forall>x. realizes (t x) (P x))"  | 
|
110  | 
||
111  | 
"(\<lambda>x. typeof (P x)) \<equiv> (\<lambda>x. Type (TYPE(Null))) \<Longrightarrow>  | 
|
112  | 
(realizes t (\<exists>x. P x)) \<equiv> (realizes Null (P t))"  | 
|
113  | 
||
114  | 
"(realizes t (\<exists>x. P x)) \<equiv> (realizes (snd t) (P (fst t)))"  | 
|
115  | 
||
116  | 
"(typeof P) \<equiv> (Type (TYPE(Null))) \<Longrightarrow>  | 
|
117  | 
(typeof Q) \<equiv> (Type (TYPE(Null))) \<Longrightarrow>  | 
|
118  | 
(realizes t (P \<or> Q)) \<equiv>  | 
|
119  | 
(case t of Left \<Rightarrow> realizes Null P | Right \<Rightarrow> realizes Null Q)"  | 
|
120  | 
||
121  | 
"(typeof P) \<equiv> (Type (TYPE(Null))) \<Longrightarrow>  | 
|
122  | 
(realizes t (P \<or> Q)) \<equiv>  | 
|
123  | 
(case t of None \<Rightarrow> realizes Null P | Some q \<Rightarrow> realizes q Q)"  | 
|
124  | 
||
125  | 
"(typeof Q) \<equiv> (Type (TYPE(Null))) \<Longrightarrow>  | 
|
126  | 
(realizes t (P \<or> Q)) \<equiv>  | 
|
127  | 
(case t of None \<Rightarrow> realizes Null Q | Some p \<Rightarrow> realizes p P)"  | 
|
128  | 
||
129  | 
"(realizes t (P \<or> Q)) \<equiv>  | 
|
130  | 
(case t of Inl p \<Rightarrow> realizes p P | Inr q \<Rightarrow> realizes q Q)"  | 
|
131  | 
||
132  | 
"(typeof P) \<equiv> (Type (TYPE(Null))) \<Longrightarrow>  | 
|
133  | 
(realizes t (P \<and> Q)) \<equiv> (realizes Null P \<and> realizes t Q)"  | 
|
134  | 
||
135  | 
"(typeof Q) \<equiv> (Type (TYPE(Null))) \<Longrightarrow>  | 
|
136  | 
(realizes t (P \<and> Q)) \<equiv> (realizes t P \<and> realizes Null Q)"  | 
|
137  | 
||
138  | 
"(realizes t (P \<and> Q)) \<equiv> (realizes (fst t) P \<and> realizes (snd t) Q)"  | 
|
139  | 
||
140  | 
"typeof P \<equiv> Type (TYPE(Null)) \<Longrightarrow>  | 
|
141  | 
realizes t (\<not> P) \<equiv> \<not> realizes Null P"  | 
|
142  | 
||
143  | 
  "typeof P \<equiv> Type (TYPE('P)) \<Longrightarrow>
 | 
|
144  | 
realizes t (\<not> P) \<equiv> (\<forall>x::'P. \<not> realizes x P)"  | 
|
145  | 
||
146  | 
"typeof (P::bool) \<equiv> Type (TYPE(Null)) \<Longrightarrow>  | 
|
147  | 
typeof Q \<equiv> Type (TYPE(Null)) \<Longrightarrow>  | 
|
148  | 
realizes t (P = Q) \<equiv> realizes Null P = realizes Null Q"  | 
|
149  | 
||
150  | 
"(realizes t (P = Q)) \<equiv> (realizes t ((P \<longrightarrow> Q) \<and> (Q \<longrightarrow> P)))"  | 
|
151  | 
||
152  | 
subsection {* Computational content of basic inference rules *}
 | 
|
153  | 
||
154  | 
theorem disjE_realizer:  | 
|
155  | 
assumes r: "case x of Inl p \<Rightarrow> P p | Inr q \<Rightarrow> Q q"  | 
|
156  | 
and r1: "\<And>p. P p \<Longrightarrow> R (f p)" and r2: "\<And>q. Q q \<Longrightarrow> R (g q)"  | 
|
157  | 
shows "R (case x of Inl p \<Rightarrow> f p | Inr q \<Rightarrow> g q)"  | 
|
158  | 
proof (cases x)  | 
|
159  | 
case Inl  | 
|
160  | 
with r show ?thesis by simp (rule r1)  | 
|
161  | 
next  | 
|
162  | 
case Inr  | 
|
163  | 
with r show ?thesis by simp (rule r2)  | 
|
164  | 
qed  | 
|
165  | 
||
166  | 
theorem disjE_realizer2:  | 
|
167  | 
assumes r: "case x of None \<Rightarrow> P | Some q \<Rightarrow> Q q"  | 
|
168  | 
and r1: "P \<Longrightarrow> R f" and r2: "\<And>q. Q q \<Longrightarrow> R (g q)"  | 
|
169  | 
shows "R (case x of None \<Rightarrow> f | Some q \<Rightarrow> g q)"  | 
|
170  | 
proof (cases x)  | 
|
171  | 
case None  | 
|
172  | 
with r show ?thesis by simp (rule r1)  | 
|
173  | 
next  | 
|
174  | 
case Some  | 
|
175  | 
with r show ?thesis by simp (rule r2)  | 
|
176  | 
qed  | 
|
177  | 
||
178  | 
theorem disjE_realizer3:  | 
|
179  | 
assumes r: "case x of Left \<Rightarrow> P | Right \<Rightarrow> Q"  | 
|
180  | 
and r1: "P \<Longrightarrow> R f" and r2: "Q \<Longrightarrow> R g"  | 
|
181  | 
shows "R (case x of Left \<Rightarrow> f | Right \<Rightarrow> g)"  | 
|
182  | 
proof (cases x)  | 
|
183  | 
case Left  | 
|
184  | 
with r show ?thesis by simp (rule r1)  | 
|
185  | 
next  | 
|
186  | 
case Right  | 
|
187  | 
with r show ?thesis by simp (rule r2)  | 
|
188  | 
qed  | 
|
189  | 
||
190  | 
theorem conjI_realizer:  | 
|
191  | 
"P p \<Longrightarrow> Q q \<Longrightarrow> P (fst (p, q)) \<and> Q (snd (p, q))"  | 
|
192  | 
by simp  | 
|
193  | 
||
194  | 
theorem exI_realizer:  | 
|
| 
13918
 
2134ed516b1b
Tuned realizer for exE rule, to avoid blowup of extracted program.
 
berghofe 
parents: 
13725 
diff
changeset
 | 
195  | 
"P y x \<Longrightarrow> P (snd (x, y)) (fst (x, y))" by simp  | 
| 
 
2134ed516b1b
Tuned realizer for exE rule, to avoid blowup of extracted program.
 
berghofe 
parents: 
13725 
diff
changeset
 | 
196  | 
|
| 
 
2134ed516b1b
Tuned realizer for exE rule, to avoid blowup of extracted program.
 
berghofe 
parents: 
13725 
diff
changeset
 | 
197  | 
theorem exE_realizer: "P (snd p) (fst p) \<Longrightarrow>  | 
| 15393 | 198  | 
(\<And>x y. P y x \<Longrightarrow> Q (f x y)) \<Longrightarrow> Q (let (x, y) = p in f x y)"  | 
199  | 
by (cases p) (simp add: Let_def)  | 
|
| 
13918
 
2134ed516b1b
Tuned realizer for exE rule, to avoid blowup of extracted program.
 
berghofe 
parents: 
13725 
diff
changeset
 | 
200  | 
|
| 
 
2134ed516b1b
Tuned realizer for exE rule, to avoid blowup of extracted program.
 
berghofe 
parents: 
13725 
diff
changeset
 | 
201  | 
theorem exE_realizer': "P (snd p) (fst p) \<Longrightarrow>  | 
| 
 
2134ed516b1b
Tuned realizer for exE rule, to avoid blowup of extracted program.
 
berghofe 
parents: 
13725 
diff
changeset
 | 
202  | 
(\<And>x y. P y x \<Longrightarrow> Q) \<Longrightarrow> Q" by (cases p) simp  | 
| 13403 | 203  | 
|
204  | 
realizers  | 
|
| 
13725
 
12404b452034
Changed format of realizers / correctness proofs.
 
berghofe 
parents: 
13599 
diff
changeset
 | 
205  | 
impI (P, Q): "\<lambda>pq. pq"  | 
| 
52486
 
b1565e37678b
just one alternative proof syntax, which also works for Proof_Syntax.pretty_proof/Proof_Syntax.read_proof roundtrip;
 
wenzelm 
parents: 
48891 
diff
changeset
 | 
206  | 
"\<^bold>\<lambda>(c: _) (d: _) P Q pq (h: _). allI \<cdot> _ \<bullet> c \<bullet> (\<^bold>\<lambda>x. impI \<cdot> _ \<cdot> _ \<bullet> (h \<cdot> x))"  | 
| 13403 | 207  | 
|
208  | 
impI (P): "Null"  | 
|
| 
52486
 
b1565e37678b
just one alternative proof syntax, which also works for Proof_Syntax.pretty_proof/Proof_Syntax.read_proof roundtrip;
 
wenzelm 
parents: 
48891 
diff
changeset
 | 
209  | 
"\<^bold>\<lambda>(c: _) P Q (h: _). allI \<cdot> _ \<bullet> c \<bullet> (\<^bold>\<lambda>x. impI \<cdot> _ \<cdot> _ \<bullet> (h \<cdot> x))"  | 
| 13403 | 210  | 
|
| 
52486
 
b1565e37678b
just one alternative proof syntax, which also works for Proof_Syntax.pretty_proof/Proof_Syntax.read_proof roundtrip;
 
wenzelm 
parents: 
48891 
diff
changeset
 | 
211  | 
impI (Q): "\<lambda>q. q" "\<^bold>\<lambda>(c: _) P Q q. impI \<cdot> _ \<cdot> _"  | 
| 13403 | 212  | 
|
| 
13725
 
12404b452034
Changed format of realizers / correctness proofs.
 
berghofe 
parents: 
13599 
diff
changeset
 | 
213  | 
impI: "Null" "impI"  | 
| 13403 | 214  | 
|
| 
13725
 
12404b452034
Changed format of realizers / correctness proofs.
 
berghofe 
parents: 
13599 
diff
changeset
 | 
215  | 
mp (P, Q): "\<lambda>pq. pq"  | 
| 
52486
 
b1565e37678b
just one alternative proof syntax, which also works for Proof_Syntax.pretty_proof/Proof_Syntax.read_proof roundtrip;
 
wenzelm 
parents: 
48891 
diff
changeset
 | 
216  | 
"\<^bold>\<lambda>(c: _) (d: _) P Q pq (h: _) p. mp \<cdot> _ \<cdot> _ \<bullet> (spec \<cdot> _ \<cdot> p \<bullet> c \<bullet> h)"  | 
| 13403 | 217  | 
|
218  | 
mp (P): "Null"  | 
|
| 
52486
 
b1565e37678b
just one alternative proof syntax, which also works for Proof_Syntax.pretty_proof/Proof_Syntax.read_proof roundtrip;
 
wenzelm 
parents: 
48891 
diff
changeset
 | 
219  | 
"\<^bold>\<lambda>(c: _) P Q (h: _) p. mp \<cdot> _ \<cdot> _ \<bullet> (spec \<cdot> _ \<cdot> p \<bullet> c \<bullet> h)"  | 
| 13403 | 220  | 
|
| 
52486
 
b1565e37678b
just one alternative proof syntax, which also works for Proof_Syntax.pretty_proof/Proof_Syntax.read_proof roundtrip;
 
wenzelm 
parents: 
48891 
diff
changeset
 | 
221  | 
mp (Q): "\<lambda>q. q" "\<^bold>\<lambda>(c: _) P Q q. mp \<cdot> _ \<cdot> _"  | 
| 13403 | 222  | 
|
| 
13725
 
12404b452034
Changed format of realizers / correctness proofs.
 
berghofe 
parents: 
13599 
diff
changeset
 | 
223  | 
mp: "Null" "mp"  | 
| 13403 | 224  | 
|
| 
52486
 
b1565e37678b
just one alternative proof syntax, which also works for Proof_Syntax.pretty_proof/Proof_Syntax.read_proof roundtrip;
 
wenzelm 
parents: 
48891 
diff
changeset
 | 
225  | 
allI (P): "\<lambda>p. p" "\<^bold>\<lambda>(c: _) P (d: _) p. allI \<cdot> _ \<bullet> d"  | 
| 13403 | 226  | 
|
| 
13725
 
12404b452034
Changed format of realizers / correctness proofs.
 
berghofe 
parents: 
13599 
diff
changeset
 | 
227  | 
allI: "Null" "allI"  | 
| 13403 | 228  | 
|
| 
52486
 
b1565e37678b
just one alternative proof syntax, which also works for Proof_Syntax.pretty_proof/Proof_Syntax.read_proof roundtrip;
 
wenzelm 
parents: 
48891 
diff
changeset
 | 
229  | 
spec (P): "\<lambda>x p. p x" "\<^bold>\<lambda>(c: _) P x (d: _) p. spec \<cdot> _ \<cdot> x \<bullet> d"  | 
| 13403 | 230  | 
|
| 
13725
 
12404b452034
Changed format of realizers / correctness proofs.
 
berghofe 
parents: 
13599 
diff
changeset
 | 
231  | 
spec: "Null" "spec"  | 
| 13403 | 232  | 
|
| 
52486
 
b1565e37678b
just one alternative proof syntax, which also works for Proof_Syntax.pretty_proof/Proof_Syntax.read_proof roundtrip;
 
wenzelm 
parents: 
48891 
diff
changeset
 | 
233  | 
exI (P): "\<lambda>x p. (x, p)" "\<^bold>\<lambda>(c: _) P x (d: _) p. exI_realizer \<cdot> P \<cdot> p \<cdot> x \<bullet> c \<bullet> d"  | 
| 13403 | 234  | 
|
| 
52486
 
b1565e37678b
just one alternative proof syntax, which also works for Proof_Syntax.pretty_proof/Proof_Syntax.read_proof roundtrip;
 
wenzelm 
parents: 
48891 
diff
changeset
 | 
235  | 
exI: "\<lambda>x. x" "\<^bold>\<lambda>P x (c: _) (h: _). h"  | 
| 13403 | 236  | 
|
| 15393 | 237  | 
exE (P, Q): "\<lambda>p pq. let (x, y) = p in pq x y"  | 
| 
52486
 
b1565e37678b
just one alternative proof syntax, which also works for Proof_Syntax.pretty_proof/Proof_Syntax.read_proof roundtrip;
 
wenzelm 
parents: 
48891 
diff
changeset
 | 
238  | 
"\<^bold>\<lambda>(c: _) (d: _) P Q (e: _) p (h: _) pq. exE_realizer \<cdot> P \<cdot> p \<cdot> Q \<cdot> pq \<bullet> c \<bullet> e \<bullet> d \<bullet> h"  | 
| 13403 | 239  | 
|
240  | 
exE (P): "Null"  | 
|
| 
52486
 
b1565e37678b
just one alternative proof syntax, which also works for Proof_Syntax.pretty_proof/Proof_Syntax.read_proof roundtrip;
 
wenzelm 
parents: 
48891 
diff
changeset
 | 
241  | 
"\<^bold>\<lambda>(c: _) P Q (d: _) p. exE_realizer' \<cdot> _ \<cdot> _ \<cdot> _ \<bullet> c \<bullet> d"  | 
| 13403 | 242  | 
|
| 
13725
 
12404b452034
Changed format of realizers / correctness proofs.
 
berghofe 
parents: 
13599 
diff
changeset
 | 
243  | 
exE (Q): "\<lambda>x pq. pq x"  | 
| 
52486
 
b1565e37678b
just one alternative proof syntax, which also works for Proof_Syntax.pretty_proof/Proof_Syntax.read_proof roundtrip;
 
wenzelm 
parents: 
48891 
diff
changeset
 | 
244  | 
"\<^bold>\<lambda>(c: _) P Q (d: _) x (h1: _) pq (h2: _). h2 \<cdot> x \<bullet> h1"  | 
| 13403 | 245  | 
|
246  | 
exE: "Null"  | 
|
| 
52486
 
b1565e37678b
just one alternative proof syntax, which also works for Proof_Syntax.pretty_proof/Proof_Syntax.read_proof roundtrip;
 
wenzelm 
parents: 
48891 
diff
changeset
 | 
247  | 
"\<^bold>\<lambda>P Q (c: _) x (h1: _) (h2: _). h2 \<cdot> x \<bullet> h1"  | 
| 13403 | 248  | 
|
| 
13725
 
12404b452034
Changed format of realizers / correctness proofs.
 
berghofe 
parents: 
13599 
diff
changeset
 | 
249  | 
conjI (P, Q): "Pair"  | 
| 
52486
 
b1565e37678b
just one alternative proof syntax, which also works for Proof_Syntax.pretty_proof/Proof_Syntax.read_proof roundtrip;
 
wenzelm 
parents: 
48891 
diff
changeset
 | 
250  | 
"\<^bold>\<lambda>(c: _) (d: _) P Q p (h: _) q. conjI_realizer \<cdot> P \<cdot> p \<cdot> Q \<cdot> q \<bullet> c \<bullet> d \<bullet> h"  | 
| 13403 | 251  | 
|
| 
13725
 
12404b452034
Changed format of realizers / correctness proofs.
 
berghofe 
parents: 
13599 
diff
changeset
 | 
252  | 
conjI (P): "\<lambda>p. p"  | 
| 
52486
 
b1565e37678b
just one alternative proof syntax, which also works for Proof_Syntax.pretty_proof/Proof_Syntax.read_proof roundtrip;
 
wenzelm 
parents: 
48891 
diff
changeset
 | 
253  | 
"\<^bold>\<lambda>(c: _) P Q p. conjI \<cdot> _ \<cdot> _"  | 
| 13403 | 254  | 
|
| 
13725
 
12404b452034
Changed format of realizers / correctness proofs.
 
berghofe 
parents: 
13599 
diff
changeset
 | 
255  | 
conjI (Q): "\<lambda>q. q"  | 
| 
52486
 
b1565e37678b
just one alternative proof syntax, which also works for Proof_Syntax.pretty_proof/Proof_Syntax.read_proof roundtrip;
 
wenzelm 
parents: 
48891 
diff
changeset
 | 
256  | 
"\<^bold>\<lambda>(c: _) P Q (h: _) q. conjI \<cdot> _ \<cdot> _ \<bullet> h"  | 
| 13403 | 257  | 
|
| 
13725
 
12404b452034
Changed format of realizers / correctness proofs.
 
berghofe 
parents: 
13599 
diff
changeset
 | 
258  | 
conjI: "Null" "conjI"  | 
| 13403 | 259  | 
|
| 
13725
 
12404b452034
Changed format of realizers / correctness proofs.
 
berghofe 
parents: 
13599 
diff
changeset
 | 
260  | 
conjunct1 (P, Q): "fst"  | 
| 
52486
 
b1565e37678b
just one alternative proof syntax, which also works for Proof_Syntax.pretty_proof/Proof_Syntax.read_proof roundtrip;
 
wenzelm 
parents: 
48891 
diff
changeset
 | 
261  | 
"\<^bold>\<lambda>(c: _) (d: _) P Q pq. conjunct1 \<cdot> _ \<cdot> _"  | 
| 13403 | 262  | 
|
| 
13725
 
12404b452034
Changed format of realizers / correctness proofs.
 
berghofe 
parents: 
13599 
diff
changeset
 | 
263  | 
conjunct1 (P): "\<lambda>p. p"  | 
| 
52486
 
b1565e37678b
just one alternative proof syntax, which also works for Proof_Syntax.pretty_proof/Proof_Syntax.read_proof roundtrip;
 
wenzelm 
parents: 
48891 
diff
changeset
 | 
264  | 
"\<^bold>\<lambda>(c: _) P Q p. conjunct1 \<cdot> _ \<cdot> _"  | 
| 13403 | 265  | 
|
266  | 
conjunct1 (Q): "Null"  | 
|
| 
52486
 
b1565e37678b
just one alternative proof syntax, which also works for Proof_Syntax.pretty_proof/Proof_Syntax.read_proof roundtrip;
 
wenzelm 
parents: 
48891 
diff
changeset
 | 
267  | 
"\<^bold>\<lambda>(c: _) P Q q. conjunct1 \<cdot> _ \<cdot> _"  | 
| 13403 | 268  | 
|
| 
13725
 
12404b452034
Changed format of realizers / correctness proofs.
 
berghofe 
parents: 
13599 
diff
changeset
 | 
269  | 
conjunct1: "Null" "conjunct1"  | 
| 13403 | 270  | 
|
| 
13725
 
12404b452034
Changed format of realizers / correctness proofs.
 
berghofe 
parents: 
13599 
diff
changeset
 | 
271  | 
conjunct2 (P, Q): "snd"  | 
| 
52486
 
b1565e37678b
just one alternative proof syntax, which also works for Proof_Syntax.pretty_proof/Proof_Syntax.read_proof roundtrip;
 
wenzelm 
parents: 
48891 
diff
changeset
 | 
272  | 
"\<^bold>\<lambda>(c: _) (d: _) P Q pq. conjunct2 \<cdot> _ \<cdot> _"  | 
| 13403 | 273  | 
|
274  | 
conjunct2 (P): "Null"  | 
|
| 
52486
 
b1565e37678b
just one alternative proof syntax, which also works for Proof_Syntax.pretty_proof/Proof_Syntax.read_proof roundtrip;
 
wenzelm 
parents: 
48891 
diff
changeset
 | 
275  | 
"\<^bold>\<lambda>(c: _) P Q p. conjunct2 \<cdot> _ \<cdot> _"  | 
| 13403 | 276  | 
|
| 
13725
 
12404b452034
Changed format of realizers / correctness proofs.
 
berghofe 
parents: 
13599 
diff
changeset
 | 
277  | 
conjunct2 (Q): "\<lambda>p. p"  | 
| 
52486
 
b1565e37678b
just one alternative proof syntax, which also works for Proof_Syntax.pretty_proof/Proof_Syntax.read_proof roundtrip;
 
wenzelm 
parents: 
48891 
diff
changeset
 | 
278  | 
"\<^bold>\<lambda>(c: _) P Q p. conjunct2 \<cdot> _ \<cdot> _"  | 
| 13403 | 279  | 
|
| 
13725
 
12404b452034
Changed format of realizers / correctness proofs.
 
berghofe 
parents: 
13599 
diff
changeset
 | 
280  | 
conjunct2: "Null" "conjunct2"  | 
| 
 
12404b452034
Changed format of realizers / correctness proofs.
 
berghofe 
parents: 
13599 
diff
changeset
 | 
281  | 
|
| 
 
12404b452034
Changed format of realizers / correctness proofs.
 
berghofe 
parents: 
13599 
diff
changeset
 | 
282  | 
disjI1 (P, Q): "Inl"  | 
| 
55642
 
63beb38e9258
adapted to renaming of datatype 'cases' and 'recs' to 'case' and 'rec'
 
blanchet 
parents: 
55404 
diff
changeset
 | 
283  | 
"\<^bold>\<lambda>(c: _) (d: _) P Q p. iffD2 \<cdot> _ \<cdot> _ \<bullet> (sum.case_1 \<cdot> P \<cdot> _ \<cdot> p \<bullet> arity_type_bool \<bullet> c \<bullet> d)"  | 
| 13403 | 284  | 
|
| 
13725
 
12404b452034
Changed format of realizers / correctness proofs.
 
berghofe 
parents: 
13599 
diff
changeset
 | 
285  | 
disjI1 (P): "Some"  | 
| 
55642
 
63beb38e9258
adapted to renaming of datatype 'cases' and 'recs' to 'case' and 'rec'
 
blanchet 
parents: 
55404 
diff
changeset
 | 
286  | 
"\<^bold>\<lambda>(c: _) P Q p. iffD2 \<cdot> _ \<cdot> _ \<bullet> (option.case_2 \<cdot> _ \<cdot> P \<cdot> p \<bullet> arity_type_bool \<bullet> c)"  | 
| 13403 | 287  | 
|
| 
13725
 
12404b452034
Changed format of realizers / correctness proofs.
 
berghofe 
parents: 
13599 
diff
changeset
 | 
288  | 
disjI1 (Q): "None"  | 
| 
55642
 
63beb38e9258
adapted to renaming of datatype 'cases' and 'recs' to 'case' and 'rec'
 
blanchet 
parents: 
55404 
diff
changeset
 | 
289  | 
"\<^bold>\<lambda>(c: _) P Q. iffD2 \<cdot> _ \<cdot> _ \<bullet> (option.case_1 \<cdot> _ \<cdot> _ \<bullet> arity_type_bool \<bullet> c)"  | 
| 13403 | 290  | 
|
| 
13725
 
12404b452034
Changed format of realizers / correctness proofs.
 
berghofe 
parents: 
13599 
diff
changeset
 | 
291  | 
disjI1: "Left"  | 
| 
55642
 
63beb38e9258
adapted to renaming of datatype 'cases' and 'recs' to 'case' and 'rec'
 
blanchet 
parents: 
55404 
diff
changeset
 | 
292  | 
"\<^bold>\<lambda>P Q. iffD2 \<cdot> _ \<cdot> _ \<bullet> (sumbool.case_1 \<cdot> _ \<cdot> _ \<bullet> arity_type_bool)"  | 
| 13403 | 293  | 
|
| 
13725
 
12404b452034
Changed format of realizers / correctness proofs.
 
berghofe 
parents: 
13599 
diff
changeset
 | 
294  | 
disjI2 (P, Q): "Inr"  | 
| 
55642
 
63beb38e9258
adapted to renaming of datatype 'cases' and 'recs' to 'case' and 'rec'
 
blanchet 
parents: 
55404 
diff
changeset
 | 
295  | 
"\<^bold>\<lambda>(d: _) (c: _) Q P q. iffD2 \<cdot> _ \<cdot> _ \<bullet> (sum.case_2 \<cdot> _ \<cdot> Q \<cdot> q \<bullet> arity_type_bool \<bullet> c \<bullet> d)"  | 
| 13403 | 296  | 
|
| 
13725
 
12404b452034
Changed format of realizers / correctness proofs.
 
berghofe 
parents: 
13599 
diff
changeset
 | 
297  | 
disjI2 (P): "None"  | 
| 
55642
 
63beb38e9258
adapted to renaming of datatype 'cases' and 'recs' to 'case' and 'rec'
 
blanchet 
parents: 
55404 
diff
changeset
 | 
298  | 
"\<^bold>\<lambda>(c: _) Q P. iffD2 \<cdot> _ \<cdot> _ \<bullet> (option.case_1 \<cdot> _ \<cdot> _ \<bullet> arity_type_bool \<bullet> c)"  | 
| 13403 | 299  | 
|
| 
13725
 
12404b452034
Changed format of realizers / correctness proofs.
 
berghofe 
parents: 
13599 
diff
changeset
 | 
300  | 
disjI2 (Q): "Some"  | 
| 
55642
 
63beb38e9258
adapted to renaming of datatype 'cases' and 'recs' to 'case' and 'rec'
 
blanchet 
parents: 
55404 
diff
changeset
 | 
301  | 
"\<^bold>\<lambda>(c: _) Q P q. iffD2 \<cdot> _ \<cdot> _ \<bullet> (option.case_2 \<cdot> _ \<cdot> Q \<cdot> q \<bullet> arity_type_bool \<bullet> c)"  | 
| 13403 | 302  | 
|
| 
13725
 
12404b452034
Changed format of realizers / correctness proofs.
 
berghofe 
parents: 
13599 
diff
changeset
 | 
303  | 
disjI2: "Right"  | 
| 
55642
 
63beb38e9258
adapted to renaming of datatype 'cases' and 'recs' to 'case' and 'rec'
 
blanchet 
parents: 
55404 
diff
changeset
 | 
304  | 
"\<^bold>\<lambda>Q P. iffD2 \<cdot> _ \<cdot> _ \<bullet> (sumbool.case_2 \<cdot> _ \<cdot> _ \<bullet> arity_type_bool)"  | 
| 13403 | 305  | 
|
| 
13725
 
12404b452034
Changed format of realizers / correctness proofs.
 
berghofe 
parents: 
13599 
diff
changeset
 | 
306  | 
disjE (P, Q, R): "\<lambda>pq pr qr.  | 
| 13403 | 307  | 
(case pq of Inl p \<Rightarrow> pr p | Inr q \<Rightarrow> qr q)"  | 
| 
52486
 
b1565e37678b
just one alternative proof syntax, which also works for Proof_Syntax.pretty_proof/Proof_Syntax.read_proof roundtrip;
 
wenzelm 
parents: 
48891 
diff
changeset
 | 
308  | 
"\<^bold>\<lambda>(c: _) (d: _) (e: _) P Q R pq (h1: _) pr (h2: _) qr.  | 
| 
37233
 
b78f31ca4675
Adapted to new format of proof terms containing explicit proofs of class membership.
 
berghofe 
parents: 
34913 
diff
changeset
 | 
309  | 
disjE_realizer \<cdot> _ \<cdot> _ \<cdot> pq \<cdot> R \<cdot> pr \<cdot> qr \<bullet> c \<bullet> d \<bullet> e \<bullet> h1 \<bullet> h2"  | 
| 13403 | 310  | 
|
| 
13725
 
12404b452034
Changed format of realizers / correctness proofs.
 
berghofe 
parents: 
13599 
diff
changeset
 | 
311  | 
disjE (Q, R): "\<lambda>pq pr qr.  | 
| 13403 | 312  | 
(case pq of None \<Rightarrow> pr | Some q \<Rightarrow> qr q)"  | 
| 
52486
 
b1565e37678b
just one alternative proof syntax, which also works for Proof_Syntax.pretty_proof/Proof_Syntax.read_proof roundtrip;
 
wenzelm 
parents: 
48891 
diff
changeset
 | 
313  | 
"\<^bold>\<lambda>(c: _) (d: _) P Q R pq (h1: _) pr (h2: _) qr.  | 
| 
37233
 
b78f31ca4675
Adapted to new format of proof terms containing explicit proofs of class membership.
 
berghofe 
parents: 
34913 
diff
changeset
 | 
314  | 
disjE_realizer2 \<cdot> _ \<cdot> _ \<cdot> pq \<cdot> R \<cdot> pr \<cdot> qr \<bullet> c \<bullet> d \<bullet> h1 \<bullet> h2"  | 
| 13403 | 315  | 
|
| 
13725
 
12404b452034
Changed format of realizers / correctness proofs.
 
berghofe 
parents: 
13599 
diff
changeset
 | 
316  | 
disjE (P, R): "\<lambda>pq pr qr.  | 
| 13403 | 317  | 
(case pq of None \<Rightarrow> qr | Some p \<Rightarrow> pr p)"  | 
| 
52486
 
b1565e37678b
just one alternative proof syntax, which also works for Proof_Syntax.pretty_proof/Proof_Syntax.read_proof roundtrip;
 
wenzelm 
parents: 
48891 
diff
changeset
 | 
318  | 
"\<^bold>\<lambda>(c: _) (d: _) P Q R pq (h1: _) pr (h2: _) qr (h3: _).  | 
| 
37233
 
b78f31ca4675
Adapted to new format of proof terms containing explicit proofs of class membership.
 
berghofe 
parents: 
34913 
diff
changeset
 | 
319  | 
disjE_realizer2 \<cdot> _ \<cdot> _ \<cdot> pq \<cdot> R \<cdot> qr \<cdot> pr \<bullet> c \<bullet> d \<bullet> h1 \<bullet> h3 \<bullet> h2"  | 
| 13403 | 320  | 
|
| 
13725
 
12404b452034
Changed format of realizers / correctness proofs.
 
berghofe 
parents: 
13599 
diff
changeset
 | 
321  | 
disjE (R): "\<lambda>pq pr qr.  | 
| 13403 | 322  | 
(case pq of Left \<Rightarrow> pr | Right \<Rightarrow> qr)"  | 
| 
52486
 
b1565e37678b
just one alternative proof syntax, which also works for Proof_Syntax.pretty_proof/Proof_Syntax.read_proof roundtrip;
 
wenzelm 
parents: 
48891 
diff
changeset
 | 
323  | 
"\<^bold>\<lambda>(c: _) P Q R pq (h1: _) pr (h2: _) qr.  | 
| 
37233
 
b78f31ca4675
Adapted to new format of proof terms containing explicit proofs of class membership.
 
berghofe 
parents: 
34913 
diff
changeset
 | 
324  | 
disjE_realizer3 \<cdot> _ \<cdot> _ \<cdot> pq \<cdot> R \<cdot> pr \<cdot> qr \<bullet> c \<bullet> h1 \<bullet> h2"  | 
| 13403 | 325  | 
|
326  | 
disjE (P, Q): "Null"  | 
|
| 
52486
 
b1565e37678b
just one alternative proof syntax, which also works for Proof_Syntax.pretty_proof/Proof_Syntax.read_proof roundtrip;
 
wenzelm 
parents: 
48891 
diff
changeset
 | 
327  | 
"\<^bold>\<lambda>(c: _) (d: _) P Q R pq. disjE_realizer \<cdot> _ \<cdot> _ \<cdot> pq \<cdot> (\<lambda>x. R) \<cdot> _ \<cdot> _ \<bullet> c \<bullet> d \<bullet> arity_type_bool"  | 
| 13403 | 328  | 
|
329  | 
disjE (Q): "Null"  | 
|
| 
52486
 
b1565e37678b
just one alternative proof syntax, which also works for Proof_Syntax.pretty_proof/Proof_Syntax.read_proof roundtrip;
 
wenzelm 
parents: 
48891 
diff
changeset
 | 
330  | 
"\<^bold>\<lambda>(c: _) P Q R pq. disjE_realizer2 \<cdot> _ \<cdot> _ \<cdot> pq \<cdot> (\<lambda>x. R) \<cdot> _ \<cdot> _ \<bullet> c \<bullet> arity_type_bool"  | 
| 13403 | 331  | 
|
332  | 
disjE (P): "Null"  | 
|
| 
52486
 
b1565e37678b
just one alternative proof syntax, which also works for Proof_Syntax.pretty_proof/Proof_Syntax.read_proof roundtrip;
 
wenzelm 
parents: 
48891 
diff
changeset
 | 
333  | 
"\<^bold>\<lambda>(c: _) P Q R pq (h1: _) (h2: _) (h3: _).  | 
| 
37233
 
b78f31ca4675
Adapted to new format of proof terms containing explicit proofs of class membership.
 
berghofe 
parents: 
34913 
diff
changeset
 | 
334  | 
disjE_realizer2 \<cdot> _ \<cdot> _ \<cdot> pq \<cdot> (\<lambda>x. R) \<cdot> _ \<cdot> _ \<bullet> c \<bullet> arity_type_bool \<bullet> h1 \<bullet> h3 \<bullet> h2"  | 
| 13403 | 335  | 
|
336  | 
disjE: "Null"  | 
|
| 
52486
 
b1565e37678b
just one alternative proof syntax, which also works for Proof_Syntax.pretty_proof/Proof_Syntax.read_proof roundtrip;
 
wenzelm 
parents: 
48891 
diff
changeset
 | 
337  | 
"\<^bold>\<lambda>P Q R pq. disjE_realizer3 \<cdot> _ \<cdot> _ \<cdot> pq \<cdot> (\<lambda>x. R) \<cdot> _ \<cdot> _ \<bullet> arity_type_bool"  | 
| 13403 | 338  | 
|
| 27982 | 339  | 
FalseE (P): "default"  | 
| 
52486
 
b1565e37678b
just one alternative proof syntax, which also works for Proof_Syntax.pretty_proof/Proof_Syntax.read_proof roundtrip;
 
wenzelm 
parents: 
48891 
diff
changeset
 | 
340  | 
"\<^bold>\<lambda>(c: _) P. FalseE \<cdot> _"  | 
| 13403 | 341  | 
|
| 
13725
 
12404b452034
Changed format of realizers / correctness proofs.
 
berghofe 
parents: 
13599 
diff
changeset
 | 
342  | 
FalseE: "Null" "FalseE"  | 
| 13403 | 343  | 
|
344  | 
notI (P): "Null"  | 
|
| 
52486
 
b1565e37678b
just one alternative proof syntax, which also works for Proof_Syntax.pretty_proof/Proof_Syntax.read_proof roundtrip;
 
wenzelm 
parents: 
48891 
diff
changeset
 | 
345  | 
"\<^bold>\<lambda>(c: _) P (h: _). allI \<cdot> _ \<bullet> c \<bullet> (\<^bold>\<lambda>x. notI \<cdot> _ \<bullet> (h \<cdot> x))"  | 
| 13403 | 346  | 
|
| 
13725
 
12404b452034
Changed format of realizers / correctness proofs.
 
berghofe 
parents: 
13599 
diff
changeset
 | 
347  | 
notI: "Null" "notI"  | 
| 13403 | 348  | 
|
| 27982 | 349  | 
notE (P, R): "\<lambda>p. default"  | 
| 
52486
 
b1565e37678b
just one alternative proof syntax, which also works for Proof_Syntax.pretty_proof/Proof_Syntax.read_proof roundtrip;
 
wenzelm 
parents: 
48891 
diff
changeset
 | 
350  | 
"\<^bold>\<lambda>(c: _) (d: _) P R (h: _) p. notE \<cdot> _ \<cdot> _ \<bullet> (spec \<cdot> _ \<cdot> p \<bullet> c \<bullet> h)"  | 
| 13403 | 351  | 
|
352  | 
notE (P): "Null"  | 
|
| 
52486
 
b1565e37678b
just one alternative proof syntax, which also works for Proof_Syntax.pretty_proof/Proof_Syntax.read_proof roundtrip;
 
wenzelm 
parents: 
48891 
diff
changeset
 | 
353  | 
"\<^bold>\<lambda>(c: _) P R (h: _) p. notE \<cdot> _ \<cdot> _ \<bullet> (spec \<cdot> _ \<cdot> p \<bullet> c \<bullet> h)"  | 
| 13403 | 354  | 
|
| 27982 | 355  | 
notE (R): "default"  | 
| 
52486
 
b1565e37678b
just one alternative proof syntax, which also works for Proof_Syntax.pretty_proof/Proof_Syntax.read_proof roundtrip;
 
wenzelm 
parents: 
48891 
diff
changeset
 | 
356  | 
"\<^bold>\<lambda>(c: _) P R. notE \<cdot> _ \<cdot> _"  | 
| 13403 | 357  | 
|
| 
13725
 
12404b452034
Changed format of realizers / correctness proofs.
 
berghofe 
parents: 
13599 
diff
changeset
 | 
358  | 
notE: "Null" "notE"  | 
| 13403 | 359  | 
|
| 
13725
 
12404b452034
Changed format of realizers / correctness proofs.
 
berghofe 
parents: 
13599 
diff
changeset
 | 
360  | 
subst (P): "\<lambda>s t ps. ps"  | 
| 
52486
 
b1565e37678b
just one alternative proof syntax, which also works for Proof_Syntax.pretty_proof/Proof_Syntax.read_proof roundtrip;
 
wenzelm 
parents: 
48891 
diff
changeset
 | 
361  | 
"\<^bold>\<lambda>(c: _) s t P (d: _) (h: _) ps. subst \<cdot> s \<cdot> t \<cdot> P ps \<bullet> d \<bullet> h"  | 
| 13403 | 362  | 
|
| 
13725
 
12404b452034
Changed format of realizers / correctness proofs.
 
berghofe 
parents: 
13599 
diff
changeset
 | 
363  | 
subst: "Null" "subst"  | 
| 
 
12404b452034
Changed format of realizers / correctness proofs.
 
berghofe 
parents: 
13599 
diff
changeset
 | 
364  | 
|
| 
 
12404b452034
Changed format of realizers / correctness proofs.
 
berghofe 
parents: 
13599 
diff
changeset
 | 
365  | 
iffD1 (P, Q): "fst"  | 
| 
52486
 
b1565e37678b
just one alternative proof syntax, which also works for Proof_Syntax.pretty_proof/Proof_Syntax.read_proof roundtrip;
 
wenzelm 
parents: 
48891 
diff
changeset
 | 
366  | 
"\<^bold>\<lambda>(d: _) (c: _) Q P pq (h: _) p.  | 
| 
37233
 
b78f31ca4675
Adapted to new format of proof terms containing explicit proofs of class membership.
 
berghofe 
parents: 
34913 
diff
changeset
 | 
367  | 
mp \<cdot> _ \<cdot> _ \<bullet> (spec \<cdot> _ \<cdot> p \<bullet> d \<bullet> (conjunct1 \<cdot> _ \<cdot> _ \<bullet> h))"  | 
| 13403 | 368  | 
|
| 
13725
 
12404b452034
Changed format of realizers / correctness proofs.
 
berghofe 
parents: 
13599 
diff
changeset
 | 
369  | 
iffD1 (P): "\<lambda>p. p"  | 
| 
52486
 
b1565e37678b
just one alternative proof syntax, which also works for Proof_Syntax.pretty_proof/Proof_Syntax.read_proof roundtrip;
 
wenzelm 
parents: 
48891 
diff
changeset
 | 
370  | 
"\<^bold>\<lambda>(c: _) Q P p (h: _). mp \<cdot> _ \<cdot> _ \<bullet> (conjunct1 \<cdot> _ \<cdot> _ \<bullet> h)"  | 
| 13403 | 371  | 
|
372  | 
iffD1 (Q): "Null"  | 
|
| 
52486
 
b1565e37678b
just one alternative proof syntax, which also works for Proof_Syntax.pretty_proof/Proof_Syntax.read_proof roundtrip;
 
wenzelm 
parents: 
48891 
diff
changeset
 | 
373  | 
"\<^bold>\<lambda>(c: _) Q P q1 (h: _) q2.  | 
| 
37233
 
b78f31ca4675
Adapted to new format of proof terms containing explicit proofs of class membership.
 
berghofe 
parents: 
34913 
diff
changeset
 | 
374  | 
mp \<cdot> _ \<cdot> _ \<bullet> (spec \<cdot> _ \<cdot> q2 \<bullet> c \<bullet> (conjunct1 \<cdot> _ \<cdot> _ \<bullet> h))"  | 
| 13403 | 375  | 
|
| 
13725
 
12404b452034
Changed format of realizers / correctness proofs.
 
berghofe 
parents: 
13599 
diff
changeset
 | 
376  | 
iffD1: "Null" "iffD1"  | 
| 13403 | 377  | 
|
| 
13725
 
12404b452034
Changed format of realizers / correctness proofs.
 
berghofe 
parents: 
13599 
diff
changeset
 | 
378  | 
iffD2 (P, Q): "snd"  | 
| 
52486
 
b1565e37678b
just one alternative proof syntax, which also works for Proof_Syntax.pretty_proof/Proof_Syntax.read_proof roundtrip;
 
wenzelm 
parents: 
48891 
diff
changeset
 | 
379  | 
"\<^bold>\<lambda>(c: _) (d: _) P Q pq (h: _) q.  | 
| 
37233
 
b78f31ca4675
Adapted to new format of proof terms containing explicit proofs of class membership.
 
berghofe 
parents: 
34913 
diff
changeset
 | 
380  | 
mp \<cdot> _ \<cdot> _ \<bullet> (spec \<cdot> _ \<cdot> q \<bullet> d \<bullet> (conjunct2 \<cdot> _ \<cdot> _ \<bullet> h))"  | 
| 13403 | 381  | 
|
| 
13725
 
12404b452034
Changed format of realizers / correctness proofs.
 
berghofe 
parents: 
13599 
diff
changeset
 | 
382  | 
iffD2 (P): "\<lambda>p. p"  | 
| 
52486
 
b1565e37678b
just one alternative proof syntax, which also works for Proof_Syntax.pretty_proof/Proof_Syntax.read_proof roundtrip;
 
wenzelm 
parents: 
48891 
diff
changeset
 | 
383  | 
"\<^bold>\<lambda>(c: _) P Q p (h: _). mp \<cdot> _ \<cdot> _ \<bullet> (conjunct2 \<cdot> _ \<cdot> _ \<bullet> h)"  | 
| 13403 | 384  | 
|
385  | 
iffD2 (Q): "Null"  | 
|
| 
52486
 
b1565e37678b
just one alternative proof syntax, which also works for Proof_Syntax.pretty_proof/Proof_Syntax.read_proof roundtrip;
 
wenzelm 
parents: 
48891 
diff
changeset
 | 
386  | 
"\<^bold>\<lambda>(c: _) P Q q1 (h: _) q2.  | 
| 
37233
 
b78f31ca4675
Adapted to new format of proof terms containing explicit proofs of class membership.
 
berghofe 
parents: 
34913 
diff
changeset
 | 
387  | 
mp \<cdot> _ \<cdot> _ \<bullet> (spec \<cdot> _ \<cdot> q2 \<bullet> c \<bullet> (conjunct2 \<cdot> _ \<cdot> _ \<bullet> h))"  | 
| 13403 | 388  | 
|
| 
13725
 
12404b452034
Changed format of realizers / correctness proofs.
 
berghofe 
parents: 
13599 
diff
changeset
 | 
389  | 
iffD2: "Null" "iffD2"  | 
| 13403 | 390  | 
|
| 
13725
 
12404b452034
Changed format of realizers / correctness proofs.
 
berghofe 
parents: 
13599 
diff
changeset
 | 
391  | 
iffI (P, Q): "Pair"  | 
| 
52486
 
b1565e37678b
just one alternative proof syntax, which also works for Proof_Syntax.pretty_proof/Proof_Syntax.read_proof roundtrip;
 
wenzelm 
parents: 
48891 
diff
changeset
 | 
392  | 
"\<^bold>\<lambda>(c: _) (d: _) P Q pq (h1 : _) qp (h2 : _). conjI_realizer \<cdot>  | 
| 
13725
 
12404b452034
Changed format of realizers / correctness proofs.
 
berghofe 
parents: 
13599 
diff
changeset
 | 
393  | 
(\<lambda>pq. \<forall>x. P x \<longrightarrow> Q (pq x)) \<cdot> pq \<cdot>  | 
| 
 
12404b452034
Changed format of realizers / correctness proofs.
 
berghofe 
parents: 
13599 
diff
changeset
 | 
394  | 
(\<lambda>qp. \<forall>x. Q x \<longrightarrow> P (qp x)) \<cdot> qp \<bullet>  | 
| 
37233
 
b78f31ca4675
Adapted to new format of proof terms containing explicit proofs of class membership.
 
berghofe 
parents: 
34913 
diff
changeset
 | 
395  | 
(arity_type_fun \<bullet> c \<bullet> d) \<bullet>  | 
| 
 
b78f31ca4675
Adapted to new format of proof terms containing explicit proofs of class membership.
 
berghofe 
parents: 
34913 
diff
changeset
 | 
396  | 
(arity_type_fun \<bullet> d \<bullet> c) \<bullet>  | 
| 
52486
 
b1565e37678b
just one alternative proof syntax, which also works for Proof_Syntax.pretty_proof/Proof_Syntax.read_proof roundtrip;
 
wenzelm 
parents: 
48891 
diff
changeset
 | 
397  | 
(allI \<cdot> _ \<bullet> c \<bullet> (\<^bold>\<lambda>x. impI \<cdot> _ \<cdot> _ \<bullet> (h1 \<cdot> x))) \<bullet>  | 
| 
 
b1565e37678b
just one alternative proof syntax, which also works for Proof_Syntax.pretty_proof/Proof_Syntax.read_proof roundtrip;
 
wenzelm 
parents: 
48891 
diff
changeset
 | 
398  | 
(allI \<cdot> _ \<bullet> d \<bullet> (\<^bold>\<lambda>x. impI \<cdot> _ \<cdot> _ \<bullet> (h2 \<cdot> x)))"  | 
| 13403 | 399  | 
|
| 
13725
 
12404b452034
Changed format of realizers / correctness proofs.
 
berghofe 
parents: 
13599 
diff
changeset
 | 
400  | 
iffI (P): "\<lambda>p. p"  | 
| 
52486
 
b1565e37678b
just one alternative proof syntax, which also works for Proof_Syntax.pretty_proof/Proof_Syntax.read_proof roundtrip;
 
wenzelm 
parents: 
48891 
diff
changeset
 | 
401  | 
"\<^bold>\<lambda>(c: _) P Q (h1 : _) p (h2 : _). conjI \<cdot> _ \<cdot> _ \<bullet>  | 
| 
 
b1565e37678b
just one alternative proof syntax, which also works for Proof_Syntax.pretty_proof/Proof_Syntax.read_proof roundtrip;
 
wenzelm 
parents: 
48891 
diff
changeset
 | 
402  | 
(allI \<cdot> _ \<bullet> c \<bullet> (\<^bold>\<lambda>x. impI \<cdot> _ \<cdot> _ \<bullet> (h1 \<cdot> x))) \<bullet>  | 
| 13403 | 403  | 
(impI \<cdot> _ \<cdot> _ \<bullet> h2)"  | 
404  | 
||
| 
13725
 
12404b452034
Changed format of realizers / correctness proofs.
 
berghofe 
parents: 
13599 
diff
changeset
 | 
405  | 
iffI (Q): "\<lambda>q. q"  | 
| 
52486
 
b1565e37678b
just one alternative proof syntax, which also works for Proof_Syntax.pretty_proof/Proof_Syntax.read_proof roundtrip;
 
wenzelm 
parents: 
48891 
diff
changeset
 | 
406  | 
"\<^bold>\<lambda>(c: _) P Q q (h1 : _) (h2 : _). conjI \<cdot> _ \<cdot> _ \<bullet>  | 
| 13403 | 407  | 
(impI \<cdot> _ \<cdot> _ \<bullet> h1) \<bullet>  | 
| 
52486
 
b1565e37678b
just one alternative proof syntax, which also works for Proof_Syntax.pretty_proof/Proof_Syntax.read_proof roundtrip;
 
wenzelm 
parents: 
48891 
diff
changeset
 | 
408  | 
(allI \<cdot> _ \<bullet> c \<bullet> (\<^bold>\<lambda>x. impI \<cdot> _ \<cdot> _ \<bullet> (h2 \<cdot> x)))"  | 
| 13403 | 409  | 
|
| 
13725
 
12404b452034
Changed format of realizers / correctness proofs.
 
berghofe 
parents: 
13599 
diff
changeset
 | 
410  | 
iffI: "Null" "iffI"  | 
| 13403 | 411  | 
|
412  | 
end  |