author | wenzelm |
Tue, 05 Aug 2014 16:21:27 +0200 | |
changeset 57864 | 7cf01ece66e4 |
parent 55997 | 9dc5ce83202c |
child 58002 | 0ed1e999a0fb |
permissions | -rw-r--r-- |
18140
691c64d615a5
Explicit data structures for some Isar language elements.
wenzelm
parents:
diff
changeset
|
1 |
(* Title: Pure/Isar/element.ML |
691c64d615a5
Explicit data structures for some Isar language elements.
wenzelm
parents:
diff
changeset
|
2 |
Author: Makarius |
691c64d615a5
Explicit data structures for some Isar language elements.
wenzelm
parents:
diff
changeset
|
3 |
|
19777 | 4 |
Explicit data structures for some Isar language elements, with derived |
5 |
logical operations. |
|
18140
691c64d615a5
Explicit data structures for some Isar language elements.
wenzelm
parents:
diff
changeset
|
6 |
*) |
691c64d615a5
Explicit data structures for some Isar language elements.
wenzelm
parents:
diff
changeset
|
7 |
|
691c64d615a5
Explicit data structures for some Isar language elements.
wenzelm
parents:
diff
changeset
|
8 |
signature ELEMENT = |
691c64d615a5
Explicit data structures for some Isar language elements.
wenzelm
parents:
diff
changeset
|
9 |
sig |
19259 | 10 |
datatype ('typ, 'term) stmt = |
28084
a05ca48ef263
type Attrib.binding abbreviates Name.binding without attributes;
wenzelm
parents:
28079
diff
changeset
|
11 |
Shows of (Attrib.binding * ('term * 'term list) list) list | |
29578 | 12 |
Obtains of (binding * ((binding * 'typ option) list * 'term list)) list |
26336
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
25739
diff
changeset
|
13 |
type statement = (string, string) stmt |
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
25739
diff
changeset
|
14 |
type statement_i = (typ, term) stmt |
18140
691c64d615a5
Explicit data structures for some Isar language elements.
wenzelm
parents:
diff
changeset
|
15 |
datatype ('typ, 'term, 'fact) ctxt = |
29578 | 16 |
Fixes of (binding * 'typ option * mixfix) list | |
18140
691c64d615a5
Explicit data structures for some Isar language elements.
wenzelm
parents:
diff
changeset
|
17 |
Constrains of (string * 'typ) list | |
28084
a05ca48ef263
type Attrib.binding abbreviates Name.binding without attributes;
wenzelm
parents:
28079
diff
changeset
|
18 |
Assumes of (Attrib.binding * ('term * 'term list) list) list | |
a05ca48ef263
type Attrib.binding abbreviates Name.binding without attributes;
wenzelm
parents:
28079
diff
changeset
|
19 |
Defines of (Attrib.binding * ('term * 'term list)) list | |
a05ca48ef263
type Attrib.binding abbreviates Name.binding without attributes;
wenzelm
parents:
28079
diff
changeset
|
20 |
Notes of string * (Attrib.binding * ('fact * Attrib.src list) list) list |
26336
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
25739
diff
changeset
|
21 |
type context = (string, string, Facts.ref) ctxt |
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
25739
diff
changeset
|
22 |
type context_i = (typ, term, thm list) ctxt |
29603 | 23 |
val map_ctxt: {binding: binding -> binding, typ: 'typ -> 'a, term: 'term -> 'b, |
24 |
pattern: 'term -> 'b, fact: 'fact -> 'c, attrib: Attrib.src -> Attrib.src} -> |
|
25 |
('typ, 'term, 'fact) ctxt -> ('a, 'b, 'c) ctxt |
|
21528 | 26 |
val map_ctxt_attrib: (Attrib.src -> Attrib.src) -> |
27 |
('typ, 'term, 'fact) ctxt -> ('typ, 'term, 'fact) ctxt |
|
45290 | 28 |
val transform_ctxt: morphism -> context_i -> context_i |
45601 | 29 |
val transform_facts: morphism -> |
30 |
(Attrib.binding * (thm list * Args.src list) list) list -> |
|
31 |
(Attrib.binding * (thm list * Args.src list) list) list |
|
19777 | 32 |
val pretty_stmt: Proof.context -> statement_i -> Pretty.T list |
33 |
val pretty_ctxt: Proof.context -> context_i -> Pretty.T list |
|
34 |
val pretty_statement: Proof.context -> string -> thm -> Pretty.T |
|
35 |
type witness |
|
29578 | 36 |
val prove_witness: Proof.context -> term -> tactic -> witness |
37 |
val witness_proof: (witness list list -> Proof.context -> Proof.context) -> |
|
38 |
term list list -> Proof.context -> Proof.state |
|
39 |
val witness_proof_eqs: (witness list list -> thm list -> Proof.context -> Proof.context) -> |
|
40 |
term list list -> term list -> Proof.context -> Proof.state |
|
41 |
val witness_local_proof: (witness list list -> Proof.state -> Proof.state) -> |
|
42 |
string -> term list list -> Proof.context -> bool -> Proof.state -> Proof.state |
|
38108 | 43 |
val witness_local_proof_eqs: (witness list list -> thm list -> Proof.state -> Proof.state) -> |
44 |
string -> term list list -> term list -> Proof.context -> bool -> Proof.state -> |
|
45 |
Proof.state |
|
45290 | 46 |
val transform_witness: morphism -> witness -> witness |
54883
dd04a8b654fc
proper context for norm_hhf and derived operations;
wenzelm
parents:
54742
diff
changeset
|
47 |
val conclude_witness: Proof.context -> witness -> thm |
22658
263d42253f53
Experimental interpretation code for definitions.
ballarin
parents:
22568
diff
changeset
|
48 |
val pretty_witness: Proof.context -> witness -> Pretty.T |
21481 | 49 |
val instT_morphism: theory -> typ Symtab.table -> morphism |
50 |
val inst_morphism: theory -> typ Symtab.table * term Symtab.table -> morphism |
|
51 |
val satisfy_morphism: witness list -> morphism |
|
36674
d95f39448121
eq_morphism is always optional: avoid trivial morphism for empty list of equations
haftmann
parents:
36323
diff
changeset
|
52 |
val eq_morphism: theory -> thm list -> morphism option |
30775
71f777103225
added Element.init, which unifies former activate_elem in element.ML and init_elem in locale.ML;
wenzelm
parents:
30763
diff
changeset
|
53 |
val init: context_i -> Context.generic -> Context.generic |
57864
7cf01ece66e4
clarified Element.init vs. Element.init' -- the latter also avoids redundant warnings due to declatations when preparing locale expressions / interpretations;
wenzelm
parents:
55997
diff
changeset
|
54 |
val init': context_i -> Context.generic -> Context.generic |
30777
9960ff945c52
simplified Element.activate(_i): singleton version;
wenzelm
parents:
30775
diff
changeset
|
55 |
val activate_i: context_i -> Proof.context -> context_i * Proof.context |
9960ff945c52
simplified Element.activate(_i): singleton version;
wenzelm
parents:
30775
diff
changeset
|
56 |
val activate: (typ, term, Facts.ref) ctxt -> Proof.context -> context_i * Proof.context |
18140
691c64d615a5
Explicit data structures for some Isar language elements.
wenzelm
parents:
diff
changeset
|
57 |
end; |
691c64d615a5
Explicit data structures for some Isar language elements.
wenzelm
parents:
diff
changeset
|
58 |
|
691c64d615a5
Explicit data structures for some Isar language elements.
wenzelm
parents:
diff
changeset
|
59 |
structure Element: ELEMENT = |
691c64d615a5
Explicit data structures for some Isar language elements.
wenzelm
parents:
diff
changeset
|
60 |
struct |
691c64d615a5
Explicit data structures for some Isar language elements.
wenzelm
parents:
diff
changeset
|
61 |
|
19777 | 62 |
(** language elements **) |
63 |
||
64 |
(* statement *) |
|
19259 | 65 |
|
66 |
datatype ('typ, 'term) stmt = |
|
28084
a05ca48ef263
type Attrib.binding abbreviates Name.binding without attributes;
wenzelm
parents:
28079
diff
changeset
|
67 |
Shows of (Attrib.binding * ('term * 'term list) list) list | |
29578 | 68 |
Obtains of (binding * ((binding * 'typ option) list * 'term list)) list; |
19259 | 69 |
|
70 |
type statement = (string, string) stmt; |
|
71 |
type statement_i = (typ, term) stmt; |
|
72 |
||
73 |
||
19777 | 74 |
(* context *) |
18140
691c64d615a5
Explicit data structures for some Isar language elements.
wenzelm
parents:
diff
changeset
|
75 |
|
691c64d615a5
Explicit data structures for some Isar language elements.
wenzelm
parents:
diff
changeset
|
76 |
datatype ('typ, 'term, 'fact) ctxt = |
29578 | 77 |
Fixes of (binding * 'typ option * mixfix) list | |
18140
691c64d615a5
Explicit data structures for some Isar language elements.
wenzelm
parents:
diff
changeset
|
78 |
Constrains of (string * 'typ) list | |
28084
a05ca48ef263
type Attrib.binding abbreviates Name.binding without attributes;
wenzelm
parents:
28079
diff
changeset
|
79 |
Assumes of (Attrib.binding * ('term * 'term list) list) list | |
a05ca48ef263
type Attrib.binding abbreviates Name.binding without attributes;
wenzelm
parents:
28079
diff
changeset
|
80 |
Defines of (Attrib.binding * ('term * 'term list)) list | |
a05ca48ef263
type Attrib.binding abbreviates Name.binding without attributes;
wenzelm
parents:
28079
diff
changeset
|
81 |
Notes of string * (Attrib.binding * ('fact * Attrib.src list) list) list; |
18140
691c64d615a5
Explicit data structures for some Isar language elements.
wenzelm
parents:
diff
changeset
|
82 |
|
26336
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
25739
diff
changeset
|
83 |
type context = (string, string, Facts.ref) ctxt; |
18140
691c64d615a5
Explicit data structures for some Isar language elements.
wenzelm
parents:
diff
changeset
|
84 |
type context_i = (typ, term, thm list) ctxt; |
691c64d615a5
Explicit data structures for some Isar language elements.
wenzelm
parents:
diff
changeset
|
85 |
|
29603 | 86 |
fun map_ctxt {binding, typ, term, pattern, fact, attrib} = |
87 |
fn Fixes fixes => Fixes (fixes |> map (fn (x, T, mx) => (binding x, Option.map typ T, mx))) |
|
28079
955c42c8a5e4
explicit type Name.binding for higher-specification elements;
wenzelm
parents:
27865
diff
changeset
|
88 |
| Constrains xs => Constrains (xs |> map (fn (x, T) => |
42494 | 89 |
(Variable.check_name (binding (Binding.name x)), typ T))) |
18140
691c64d615a5
Explicit data structures for some Isar language elements.
wenzelm
parents:
diff
changeset
|
90 |
| Assumes asms => Assumes (asms |> map (fn ((a, atts), propps) => |
29603 | 91 |
((binding a, map attrib atts), propps |> map (fn (t, ps) => (term t, map pattern ps))))) |
18140
691c64d615a5
Explicit data structures for some Isar language elements.
wenzelm
parents:
diff
changeset
|
92 |
| Defines defs => Defines (defs |> map (fn ((a, atts), (t, ps)) => |
29603 | 93 |
((binding a, map attrib atts), (term t, map pattern ps)))) |
21440 | 94 |
| Notes (kind, facts) => Notes (kind, facts |> map (fn ((a, atts), bs) => |
28965 | 95 |
((binding a, map attrib atts), bs |> map (fn (ths, btts) => (fact ths, map attrib btts))))); |
18140
691c64d615a5
Explicit data structures for some Isar language elements.
wenzelm
parents:
diff
changeset
|
96 |
|
21528 | 97 |
fun map_ctxt_attrib attrib = |
29603 | 98 |
map_ctxt {binding = I, typ = I, term = I, pattern = I, fact = I, attrib = attrib}; |
21528 | 99 |
|
45290 | 100 |
fun transform_ctxt phi = map_ctxt |
28965 | 101 |
{binding = Morphism.binding phi, |
21481 | 102 |
typ = Morphism.typ phi, |
103 |
term = Morphism.term phi, |
|
29603 | 104 |
pattern = Morphism.term phi, |
21521 | 105 |
fact = Morphism.fact phi, |
45290 | 106 |
attrib = Args.transform_values phi}; |
18140
691c64d615a5
Explicit data structures for some Isar language elements.
wenzelm
parents:
diff
changeset
|
107 |
|
45601 | 108 |
fun transform_facts phi facts = |
109 |
Notes ("", facts) |> transform_ctxt phi |> (fn Notes (_, facts') => facts'); |
|
110 |
||
19808 | 111 |
|
18894 | 112 |
|
19259 | 113 |
(** pretty printing **) |
114 |
||
19267 | 115 |
fun pretty_items _ _ [] = [] |
116 |
| pretty_items keyword sep (x :: ys) = |
|
55763 | 117 |
Pretty.block [Pretty.keyword2 keyword, Pretty.brk 1, x] :: |
118 |
map (fn y => Pretty.block [Pretty.str " ", Pretty.keyword2 sep, Pretty.brk 1, y]) ys; |
|
19259 | 119 |
|
28862 | 120 |
fun pretty_name_atts ctxt (b, atts) sep = |
45584
41a768a431a6
do not store vacuous theorem specifications -- relevant for frugal local theory content;
wenzelm
parents:
45390
diff
changeset
|
121 |
if Attrib.is_empty_binding (b, atts) then [] |
43547
f3a8476285c6
clarified Binding.pretty/print: no quotes, only markup -- Binding.str_of is rendered obsolete;
wenzelm
parents:
42495
diff
changeset
|
122 |
else |
f3a8476285c6
clarified Binding.pretty/print: no quotes, only markup -- Binding.str_of is rendered obsolete;
wenzelm
parents:
42495
diff
changeset
|
123 |
[Pretty.block (Pretty.breaks |
f3a8476285c6
clarified Binding.pretty/print: no quotes, only markup -- Binding.str_of is rendered obsolete;
wenzelm
parents:
42495
diff
changeset
|
124 |
(Binding.pretty b :: Attrib.pretty_attribs ctxt atts @ [Pretty.str sep]))]; |
19259 | 125 |
|
126 |
||
127 |
(* pretty_stmt *) |
|
128 |
||
129 |
fun pretty_stmt ctxt = |
|
130 |
let |
|
24920 | 131 |
val prt_typ = Pretty.quote o Syntax.pretty_typ ctxt; |
132 |
val prt_term = Pretty.quote o Syntax.pretty_term ctxt; |
|
55763 | 133 |
val prt_terms = separate (Pretty.keyword2 "and") o map prt_term; |
19259 | 134 |
val prt_name_atts = pretty_name_atts ctxt; |
135 |
||
136 |
fun prt_show (a, ts) = |
|
19267 | 137 |
Pretty.block (Pretty.breaks (prt_name_atts a ":" @ prt_terms (map fst ts))); |
19259 | 138 |
|
28079
955c42c8a5e4
explicit type Name.binding for higher-specification elements;
wenzelm
parents:
27865
diff
changeset
|
139 |
fun prt_var (x, SOME T) = Pretty.block |
30223
24d975352879
renamed Binding.name_pos to Binding.make, renamed Binding.base_name to Binding.name_of, renamed Binding.map_base to Binding.map_name, added mandatory flag to Binding.qualify;
wenzelm
parents:
30219
diff
changeset
|
140 |
[Pretty.str (Binding.name_of x ^ " ::"), Pretty.brk 1, prt_typ T] |
24d975352879
renamed Binding.name_pos to Binding.make, renamed Binding.base_name to Binding.name_of, renamed Binding.map_base to Binding.map_name, added mandatory flag to Binding.qualify;
wenzelm
parents:
30219
diff
changeset
|
141 |
| prt_var (x, NONE) = Pretty.str (Binding.name_of x); |
55763 | 142 |
val prt_vars = separate (Pretty.keyword2 "and") o map prt_var; |
19259 | 143 |
|
19267 | 144 |
fun prt_obtain (_, ([], ts)) = Pretty.block (Pretty.breaks (prt_terms ts)) |
19259 | 145 |
| prt_obtain (_, (xs, ts)) = Pretty.block (Pretty.breaks |
55763 | 146 |
(prt_vars xs @ [Pretty.keyword2 "where"] @ prt_terms ts)); |
19259 | 147 |
in |
19267 | 148 |
fn Shows shows => pretty_items "shows" "and" (map prt_show shows) |
149 |
| Obtains obtains => pretty_items "obtains" "|" (map prt_obtain obtains) |
|
19259 | 150 |
end; |
151 |
||
18894 | 152 |
|
19259 | 153 |
(* pretty_ctxt *) |
154 |
||
155 |
fun pretty_ctxt ctxt = |
|
156 |
let |
|
24920 | 157 |
val prt_typ = Pretty.quote o Syntax.pretty_typ ctxt; |
158 |
val prt_term = Pretty.quote o Syntax.pretty_term ctxt; |
|
32091
30e2ffbba718
proper context for Display.pretty_thm etc. or old-style versions Display.pretty_thm_global, Display.pretty_thm_without_context etc.;
wenzelm
parents:
31794
diff
changeset
|
159 |
val prt_thm = Pretty.backquote o Display.pretty_thm ctxt; |
19259 | 160 |
val prt_name_atts = pretty_name_atts ctxt; |
161 |
||
19267 | 162 |
fun prt_mixfix NoSyn = [] |
42287
d98eb048a2e4
discontinued special treatment of structure Mixfix;
wenzelm
parents:
41581
diff
changeset
|
163 |
| prt_mixfix mx = [Pretty.brk 2, Mixfix.pretty_mixfix mx]; |
19267 | 164 |
|
30223
24d975352879
renamed Binding.name_pos to Binding.make, renamed Binding.base_name to Binding.name_of, renamed Binding.map_base to Binding.map_name, added mandatory flag to Binding.qualify;
wenzelm
parents:
30219
diff
changeset
|
165 |
fun prt_fix (x, SOME T, mx) = Pretty.block (Pretty.str (Binding.name_of x ^ " ::") :: |
28079
955c42c8a5e4
explicit type Name.binding for higher-specification elements;
wenzelm
parents:
27865
diff
changeset
|
166 |
Pretty.brk 1 :: prt_typ T :: Pretty.brk 1 :: prt_mixfix mx) |
30223
24d975352879
renamed Binding.name_pos to Binding.make, renamed Binding.base_name to Binding.name_of, renamed Binding.map_base to Binding.map_name, added mandatory flag to Binding.qualify;
wenzelm
parents:
30219
diff
changeset
|
167 |
| prt_fix (x, NONE, mx) = Pretty.block (Pretty.str (Binding.name_of x) :: |
28079
955c42c8a5e4
explicit type Name.binding for higher-specification elements;
wenzelm
parents:
27865
diff
changeset
|
168 |
Pretty.brk 1 :: prt_mixfix mx); |
28965 | 169 |
fun prt_constrain (x, T) = prt_fix (Binding.name x, SOME T, NoSyn); |
18894 | 170 |
|
19259 | 171 |
fun prt_asm (a, ts) = |
172 |
Pretty.block (Pretty.breaks (prt_name_atts a ":" @ map (prt_term o fst) ts)); |
|
173 |
fun prt_def (a, (t, _)) = |
|
174 |
Pretty.block (Pretty.breaks (prt_name_atts a ":" @ [prt_term t])); |
|
175 |
||
176 |
fun prt_fact (ths, []) = map prt_thm ths |
|
177 |
| prt_fact (ths, atts) = Pretty.enclose "(" ")" |
|
21032 | 178 |
(Pretty.breaks (map prt_thm ths)) :: Attrib.pretty_attribs ctxt atts; |
19259 | 179 |
fun prt_note (a, ths) = |
19482
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
wenzelm
parents:
19466
diff
changeset
|
180 |
Pretty.block (Pretty.breaks (flat (prt_name_atts a "=" :: map prt_fact ths))); |
19259 | 181 |
in |
19267 | 182 |
fn Fixes fixes => pretty_items "fixes" "and" (map prt_fix fixes) |
183 |
| Constrains xs => pretty_items "constrains" "and" (map prt_constrain xs) |
|
184 |
| Assumes asms => pretty_items "assumes" "and" (map prt_asm asms) |
|
185 |
| Defines defs => pretty_items "defines" "and" (map prt_def defs) |
|
21440 | 186 |
| Notes ("", facts) => pretty_items "notes" "and" (map prt_note facts) |
187 |
| Notes (kind, facts) => pretty_items ("notes " ^ kind) "and" (map prt_note facts) |
|
19259 | 188 |
end; |
18894 | 189 |
|
19267 | 190 |
|
191 |
(* pretty_statement *) |
|
192 |
||
193 |
local |
|
194 |
||
41581
72a02e3dec7e
clarified pretty_statement: more robust treatment of fixes and conclusion of elimination (e.g. for classical rule);
wenzelm
parents:
41425
diff
changeset
|
195 |
fun standard_elim th = |
72a02e3dec7e
clarified pretty_statement: more robust treatment of fixes and conclusion of elimination (e.g. for classical rule);
wenzelm
parents:
41425
diff
changeset
|
196 |
(case Object_Logic.elim_concl th of |
72a02e3dec7e
clarified pretty_statement: more robust treatment of fixes and conclusion of elimination (e.g. for classical rule);
wenzelm
parents:
41425
diff
changeset
|
197 |
SOME C => |
72a02e3dec7e
clarified pretty_statement: more robust treatment of fixes and conclusion of elimination (e.g. for classical rule);
wenzelm
parents:
41425
diff
changeset
|
198 |
let |
72a02e3dec7e
clarified pretty_statement: more robust treatment of fixes and conclusion of elimination (e.g. for classical rule);
wenzelm
parents:
41425
diff
changeset
|
199 |
val cert = Thm.cterm_of (Thm.theory_of_thm th); |
72a02e3dec7e
clarified pretty_statement: more robust treatment of fixes and conclusion of elimination (e.g. for classical rule);
wenzelm
parents:
41425
diff
changeset
|
200 |
val thesis = Var ((Auto_Bind.thesisN, Thm.maxidx_of th + 1), fastype_of C); |
72a02e3dec7e
clarified pretty_statement: more robust treatment of fixes and conclusion of elimination (e.g. for classical rule);
wenzelm
parents:
41425
diff
changeset
|
201 |
val th' = Thm.instantiate ([], [(cert C, cert thesis)]) th; |
72a02e3dec7e
clarified pretty_statement: more robust treatment of fixes and conclusion of elimination (e.g. for classical rule);
wenzelm
parents:
41425
diff
changeset
|
202 |
in (th', true) end |
72a02e3dec7e
clarified pretty_statement: more robust treatment of fixes and conclusion of elimination (e.g. for classical rule);
wenzelm
parents:
41425
diff
changeset
|
203 |
| NONE => (th, false)); |
72a02e3dec7e
clarified pretty_statement: more robust treatment of fixes and conclusion of elimination (e.g. for classical rule);
wenzelm
parents:
41425
diff
changeset
|
204 |
|
19267 | 205 |
fun thm_name kind th prts = |
206 |
let val head = |
|
27865
27a8ad9612a3
moved basic thm operations from structure PureThy to Thm (cf. more_thm.ML);
wenzelm
parents:
26721
diff
changeset
|
207 |
if Thm.has_name_hint th then |
55763 | 208 |
Pretty.block [Pretty.keyword1 kind, |
30364
577edc39b501
moved basic algebra of long names from structure NameSpace to Long_Name;
wenzelm
parents:
30280
diff
changeset
|
209 |
Pretty.brk 1, Pretty.str (Long_Name.base_name (Thm.get_name_hint th) ^ ":")] |
55763 | 210 |
else Pretty.keyword1 kind |
19267 | 211 |
in Pretty.block (Pretty.fbreaks (head :: prts)) end; |
212 |
||
213 |
fun obtain prop ctxt = |
|
214 |
let |
|
41581
72a02e3dec7e
clarified pretty_statement: more robust treatment of fixes and conclusion of elimination (e.g. for classical rule);
wenzelm
parents:
41425
diff
changeset
|
215 |
val ((ps, prop'), ctxt') = Variable.focus prop ctxt; |
42488
4638622bcaa1
reorganized fixes as specialized (global) name space;
wenzelm
parents:
42360
diff
changeset
|
216 |
fun fix (x, T) = (Binding.name (Variable.revert_fixed ctxt' x), SOME T); |
42495
1af81b70cf09
clarified Variable.focus vs. Variable.focus_cterm -- eliminated clone;
wenzelm
parents:
42494
diff
changeset
|
217 |
val xs = map (fix o #2) ps; |
1af81b70cf09
clarified Variable.focus vs. Variable.focus_cterm -- eliminated clone;
wenzelm
parents:
42494
diff
changeset
|
218 |
val As = Logic.strip_imp_prems prop'; |
41581
72a02e3dec7e
clarified pretty_statement: more robust treatment of fixes and conclusion of elimination (e.g. for classical rule);
wenzelm
parents:
41425
diff
changeset
|
219 |
in ((Binding.empty, (xs, As)), ctxt') end; |
19267 | 220 |
|
221 |
in |
|
222 |
||
223 |
fun pretty_statement ctxt kind raw_th = |
|
224 |
let |
|
42360 | 225 |
val thy = Proof_Context.theory_of ctxt; |
20150 | 226 |
|
54883
dd04a8b654fc
proper context for norm_hhf and derived operations;
wenzelm
parents:
54742
diff
changeset
|
227 |
val (th, is_elim) = standard_elim (Raw_Simplifier.norm_hhf ctxt raw_th); |
41581
72a02e3dec7e
clarified pretty_statement: more robust treatment of fixes and conclusion of elimination (e.g. for classical rule);
wenzelm
parents:
41425
diff
changeset
|
228 |
val ((_, [th']), ctxt') = Variable.import true [th] (Variable.set_body true ctxt); |
20150 | 229 |
val prop = Thm.prop_of th'; |
230 |
val (prems, concl) = Logic.strip_horn prop; |
|
35625 | 231 |
val concl_term = Object_Logic.drop_judgment thy concl; |
19267 | 232 |
|
20150 | 233 |
val fixes = fold_aterms (fn v as Free (x, T) => |
234 |
if Variable.newly_fixed ctxt' ctxt x andalso not (v aconv concl_term) |
|
42488
4638622bcaa1
reorganized fixes as specialized (global) name space;
wenzelm
parents:
42360
diff
changeset
|
235 |
then insert (op =) (Variable.revert_fixed ctxt' x, T) else I | _ => I) prop [] |> rev; |
20150 | 236 |
val (assumes, cases) = take_suffix (fn prem => |
237 |
is_elim andalso concl aconv Logic.strip_assums_concl prem) prems; |
|
19267 | 238 |
in |
28965 | 239 |
pretty_ctxt ctxt' (Fixes (map (fn (x, T) => (Binding.name x, SOME T, NoSyn)) fixes)) @ |
240 |
pretty_ctxt ctxt' (Assumes (map (fn t => (Attrib.empty_binding, [(t, [])])) assumes)) @ |
|
241 |
(if null cases then pretty_stmt ctxt' (Shows [(Attrib.empty_binding, [(concl, [])])]) |
|
26716
8690e75e1395
print_statement: reset body mode, i.e. invent global frees (no need for revert_skolem);
wenzelm
parents:
26628
diff
changeset
|
242 |
else |
42495
1af81b70cf09
clarified Variable.focus vs. Variable.focus_cterm -- eliminated clone;
wenzelm
parents:
42494
diff
changeset
|
243 |
let val (clauses, ctxt'') = fold_map obtain cases ctxt' |
26716
8690e75e1395
print_statement: reset body mode, i.e. invent global frees (no need for revert_skolem);
wenzelm
parents:
26628
diff
changeset
|
244 |
in pretty_stmt ctxt'' (Obtains clauses) end) |
19267 | 245 |
end |> thm_name kind raw_th; |
246 |
||
18140
691c64d615a5
Explicit data structures for some Isar language elements.
wenzelm
parents:
diff
changeset
|
247 |
end; |
19267 | 248 |
|
19777 | 249 |
|
250 |
||
251 |
(** logical operations **) |
|
252 |
||
253 |
(* witnesses -- hypotheses as protected facts *) |
|
254 |
||
255 |
datatype witness = Witness of term * thm; |
|
256 |
||
29578 | 257 |
val mark_witness = Logic.protect; |
258 |
fun witness_prop (Witness (t, _)) = t; |
|
44058 | 259 |
fun witness_hyps (Witness (_, th)) = Thm.hyps_of th; |
19777 | 260 |
fun map_witness f (Witness witn) = Witness (f witn); |
261 |
||
45290 | 262 |
fun transform_witness phi = map_witness (fn (t, th) => (Morphism.term phi t, Morphism.thm phi th)); |
21481 | 263 |
|
20058 | 264 |
fun prove_witness ctxt t tac = |
52732 | 265 |
Witness (t, |
266 |
Thm.close_derivation |
|
267 |
(Goal.prove ctxt [] [] (mark_witness t) (fn _ => rtac Drule.protectI 1 THEN tac))); |
|
19777 | 268 |
|
29603 | 269 |
|
29578 | 270 |
local |
271 |
||
272 |
val refine_witness = |
|
30510
4120fc59dd85
unified type Proof.method and pervasive METHOD combinators;
wenzelm
parents:
30438
diff
changeset
|
273 |
Proof.refine (Method.Basic (K (RAW_METHOD |
52732 | 274 |
(K (ALLGOALS (CONJUNCTS (ALLGOALS (CONJUNCTS (TRYALL (rtac Drule.protectI)))))))))); |
25624 | 275 |
|
29578 | 276 |
fun gen_witness_proof proof after_qed wit_propss eq_props = |
277 |
let |
|
46896 | 278 |
val propss = |
279 |
(map o map) (fn prop => (mark_witness prop, [])) wit_propss @ |
|
280 |
[map (rpair []) eq_props]; |
|
29578 | 281 |
fun after_qed' thmss = |
29603 | 282 |
let val (wits, eqs) = split_last ((map o map) Thm.close_derivation thmss); |
29578 | 283 |
in after_qed ((map2 o map2) (curry Witness) wit_propss wits) eqs end; |
284 |
in proof after_qed' propss #> refine_witness #> Seq.hd end; |
|
285 |
||
38108 | 286 |
fun proof_local cmd goal_ctxt int after_qed' propss = |
45329 | 287 |
Proof.map_context (K goal_ctxt) #> |
46899
58110c1e02bc
refined 'interpret': reset facts ("this") and print_result, which merely consist of internal / protected statement;
wenzelm
parents:
46896
diff
changeset
|
288 |
Proof.local_goal (K (K ())) (K I) Proof_Context.bind_propp_i cmd NONE |
58110c1e02bc
refined 'interpret': reset facts ("this") and print_result, which merely consist of internal / protected statement;
wenzelm
parents:
46896
diff
changeset
|
289 |
after_qed' (map (pair Thm.empty_binding) propss); |
41425 | 290 |
|
29578 | 291 |
in |
292 |
||
293 |
fun witness_proof after_qed wit_propss = |
|
36323
655e2d74de3a
modernized naming conventions of main Isar proof elements;
wenzelm
parents:
35767
diff
changeset
|
294 |
gen_witness_proof (Proof.theorem NONE) (fn wits => fn _ => after_qed wits) |
29578 | 295 |
wit_propss []; |
296 |
||
36323
655e2d74de3a
modernized naming conventions of main Isar proof elements;
wenzelm
parents:
35767
diff
changeset
|
297 |
val witness_proof_eqs = gen_witness_proof (Proof.theorem NONE); |
29578 | 298 |
|
299 |
fun witness_local_proof after_qed cmd wit_propss goal_ctxt int = |
|
38108 | 300 |
gen_witness_proof (proof_local cmd goal_ctxt int) |
29578 | 301 |
(fn wits => fn _ => after_qed wits) wit_propss []; |
302 |
||
38108 | 303 |
fun witness_local_proof_eqs after_qed cmd wit_propss eq_props goal_ctxt int = |
304 |
gen_witness_proof (proof_local cmd goal_ctxt int) after_qed wit_propss eq_props; |
|
41425 | 305 |
|
29603 | 306 |
end; |
307 |
||
19777 | 308 |
|
25302 | 309 |
fun compose_witness (Witness (_, th)) r = |
310 |
let |
|
311 |
val th' = Goal.conclude th; |
|
312 |
val A = Thm.cprem_of r 1; |
|
25739 | 313 |
in |
314 |
Thm.implies_elim |
|
315 |
(Conv.gconv_rule Drule.beta_eta_conversion 1 r) |
|
316 |
(Conv.fconv_rule Drule.beta_eta_conversion |
|
317 |
(Thm.instantiate (Thm.match (Thm.cprop_of th', A)) th')) |
|
318 |
end; |
|
25302 | 319 |
|
54883
dd04a8b654fc
proper context for norm_hhf and derived operations;
wenzelm
parents:
54742
diff
changeset
|
320 |
fun conclude_witness ctxt (Witness (_, th)) = |
dd04a8b654fc
proper context for norm_hhf and derived operations;
wenzelm
parents:
54742
diff
changeset
|
321 |
Thm.close_derivation (Raw_Simplifier.norm_hhf_protect ctxt (Goal.conclude th)); |
19777 | 322 |
|
22658
263d42253f53
Experimental interpretation code for definitions.
ballarin
parents:
22568
diff
changeset
|
323 |
fun pretty_witness ctxt witn = |
24920 | 324 |
let val prt_term = Pretty.quote o Syntax.pretty_term ctxt in |
22658
263d42253f53
Experimental interpretation code for definitions.
ballarin
parents:
22568
diff
changeset
|
325 |
Pretty.block (prt_term (witness_prop witn) :: |
39166
19efc2af3e6c
turned show_hyps and show_tags into proper configuration option;
wenzelm
parents:
38709
diff
changeset
|
326 |
(if Config.get ctxt show_hyps then [Pretty.brk 2, Pretty.list "[" "]" |
22658
263d42253f53
Experimental interpretation code for definitions.
ballarin
parents:
22568
diff
changeset
|
327 |
(map prt_term (witness_hyps witn))] else [])) |
263d42253f53
Experimental interpretation code for definitions.
ballarin
parents:
22568
diff
changeset
|
328 |
end; |
263d42253f53
Experimental interpretation code for definitions.
ballarin
parents:
22568
diff
changeset
|
329 |
|
19777 | 330 |
|
331 |
(* derived rules *) |
|
332 |
||
20007 | 333 |
fun instantiate_tfrees thy subst th = |
19777 | 334 |
let |
335 |
val certT = Thm.ctyp_of thy; |
|
20007 | 336 |
val idx = Thm.maxidx_of th + 1; |
337 |
fun cert_inst (a, (S, T)) = (certT (TVar ((a, idx), S)), certT T); |
|
338 |
||
339 |
fun add_inst (a, S) insts = |
|
340 |
if AList.defined (op =) insts a then insts |
|
341 |
else (case AList.lookup (op =) subst a of NONE => insts | SOME T => (a, (S, T)) :: insts); |
|
342 |
val insts = |
|
45346
439101d8eeec
some performance tuning via Term_Subst/Same.operation;
wenzelm
parents:
45345
diff
changeset
|
343 |
(Term.fold_types o Term.fold_atyps) (fn TFree v => add_inst v | _ => I) |
20007 | 344 |
(Thm.full_prop_of th) []; |
19777 | 345 |
in |
20007 | 346 |
th |
347 |
|> Thm.generalize (map fst insts, []) idx |
|
348 |
|> Thm.instantiate (map cert_inst insts, []) |
|
19777 | 349 |
end; |
350 |
||
351 |
fun instantiate_frees thy subst = |
|
352 |
let val cert = Thm.cterm_of thy in |
|
353 |
Drule.forall_intr_list (map (cert o Free o fst) subst) #> |
|
354 |
Drule.forall_elim_list (map (cert o snd) subst) |
|
355 |
end; |
|
356 |
||
357 |
fun hyps_rule rule th = |
|
21521 | 358 |
let val {hyps, ...} = Thm.crep_thm th in |
19777 | 359 |
Drule.implies_elim_list |
360 |
(rule (Drule.implies_intr_list hyps th)) |
|
21521 | 361 |
(map (Thm.assume o Drule.cterm_rule rule) hyps) |
19777 | 362 |
end; |
363 |
||
364 |
||
365 |
(* instantiate types *) |
|
366 |
||
45346
439101d8eeec
some performance tuning via Term_Subst/Same.operation;
wenzelm
parents:
45345
diff
changeset
|
367 |
fun instT_type_same env = |
439101d8eeec
some performance tuning via Term_Subst/Same.operation;
wenzelm
parents:
45345
diff
changeset
|
368 |
if Symtab.is_empty env then Same.same |
439101d8eeec
some performance tuning via Term_Subst/Same.operation;
wenzelm
parents:
45345
diff
changeset
|
369 |
else |
439101d8eeec
some performance tuning via Term_Subst/Same.operation;
wenzelm
parents:
45345
diff
changeset
|
370 |
Term_Subst.map_atypsT_same |
439101d8eeec
some performance tuning via Term_Subst/Same.operation;
wenzelm
parents:
45345
diff
changeset
|
371 |
(fn TFree (a, _) => (case Symtab.lookup env a of SOME T => T | NONE => raise Same.SAME) |
439101d8eeec
some performance tuning via Term_Subst/Same.operation;
wenzelm
parents:
45345
diff
changeset
|
372 |
| _ => raise Same.SAME); |
19777 | 373 |
|
45346
439101d8eeec
some performance tuning via Term_Subst/Same.operation;
wenzelm
parents:
45345
diff
changeset
|
374 |
fun instT_term_same env = |
439101d8eeec
some performance tuning via Term_Subst/Same.operation;
wenzelm
parents:
45345
diff
changeset
|
375 |
if Symtab.is_empty env then Same.same |
439101d8eeec
some performance tuning via Term_Subst/Same.operation;
wenzelm
parents:
45345
diff
changeset
|
376 |
else Term_Subst.map_types_same (instT_type_same env); |
439101d8eeec
some performance tuning via Term_Subst/Same.operation;
wenzelm
parents:
45345
diff
changeset
|
377 |
|
439101d8eeec
some performance tuning via Term_Subst/Same.operation;
wenzelm
parents:
45345
diff
changeset
|
378 |
val instT_type = Same.commit o instT_type_same; |
439101d8eeec
some performance tuning via Term_Subst/Same.operation;
wenzelm
parents:
45345
diff
changeset
|
379 |
val instT_term = Same.commit o instT_term_same; |
19777 | 380 |
|
45346
439101d8eeec
some performance tuning via Term_Subst/Same.operation;
wenzelm
parents:
45345
diff
changeset
|
381 |
fun instT_subst env th = |
439101d8eeec
some performance tuning via Term_Subst/Same.operation;
wenzelm
parents:
45345
diff
changeset
|
382 |
(Thm.fold_terms o Term.fold_types o Term.fold_atyps) |
439101d8eeec
some performance tuning via Term_Subst/Same.operation;
wenzelm
parents:
45345
diff
changeset
|
383 |
(fn T as TFree (a, _) => |
439101d8eeec
some performance tuning via Term_Subst/Same.operation;
wenzelm
parents:
45345
diff
changeset
|
384 |
let val T' = the_default T (Symtab.lookup env a) |
45349
7fb63b469cd2
more uniform instT_subst vs. inst_subst: compare variable names only;
wenzelm
parents:
45346
diff
changeset
|
385 |
in if T = T' then I else insert (eq_fst (op =)) (a, T') end |
45346
439101d8eeec
some performance tuning via Term_Subst/Same.operation;
wenzelm
parents:
45345
diff
changeset
|
386 |
| _ => I) th []; |
19777 | 387 |
|
388 |
fun instT_thm thy env th = |
|
389 |
if Symtab.is_empty env then th |
|
390 |
else |
|
391 |
let val subst = instT_subst env th |
|
392 |
in if null subst then th else th |> hyps_rule (instantiate_tfrees thy subst) end; |
|
393 |
||
22672
777af26d5713
inst(T)_morphism: avoid reference to static theory value;
wenzelm
parents:
22658
diff
changeset
|
394 |
fun instT_morphism thy env = |
54740 | 395 |
Morphism.morphism "Element.instT" |
52788 | 396 |
{binding = [], |
397 |
typ = [instT_type env], |
|
398 |
term = [instT_term env], |
|
52789 | 399 |
fact = [map (instT_thm thy env)]}; |
19777 | 400 |
|
401 |
||
402 |
(* instantiate types and terms *) |
|
403 |
||
404 |
fun inst_term (envT, env) = |
|
405 |
if Symtab.is_empty env then instT_term envT |
|
406 |
else |
|
45346
439101d8eeec
some performance tuning via Term_Subst/Same.operation;
wenzelm
parents:
45345
diff
changeset
|
407 |
instT_term envT #> |
439101d8eeec
some performance tuning via Term_Subst/Same.operation;
wenzelm
parents:
45345
diff
changeset
|
408 |
Same.commit (Term_Subst.map_aterms_same |
439101d8eeec
some performance tuning via Term_Subst/Same.operation;
wenzelm
parents:
45345
diff
changeset
|
409 |
(fn Free (x, _) => (case Symtab.lookup env x of SOME t => t | NONE => raise Same.SAME) |
439101d8eeec
some performance tuning via Term_Subst/Same.operation;
wenzelm
parents:
45345
diff
changeset
|
410 |
| _ => raise Same.SAME)) #> |
439101d8eeec
some performance tuning via Term_Subst/Same.operation;
wenzelm
parents:
45345
diff
changeset
|
411 |
Envir.beta_norm; |
19777 | 412 |
|
45349
7fb63b469cd2
more uniform instT_subst vs. inst_subst: compare variable names only;
wenzelm
parents:
45346
diff
changeset
|
413 |
fun inst_subst (envT, env) th = |
7fb63b469cd2
more uniform instT_subst vs. inst_subst: compare variable names only;
wenzelm
parents:
45346
diff
changeset
|
414 |
(Thm.fold_terms o Term.fold_aterms) |
7fb63b469cd2
more uniform instT_subst vs. inst_subst: compare variable names only;
wenzelm
parents:
45346
diff
changeset
|
415 |
(fn Free (x, T) => |
7fb63b469cd2
more uniform instT_subst vs. inst_subst: compare variable names only;
wenzelm
parents:
45346
diff
changeset
|
416 |
let |
7fb63b469cd2
more uniform instT_subst vs. inst_subst: compare variable names only;
wenzelm
parents:
45346
diff
changeset
|
417 |
val T' = instT_type envT T; |
7fb63b469cd2
more uniform instT_subst vs. inst_subst: compare variable names only;
wenzelm
parents:
45346
diff
changeset
|
418 |
val t = Free (x, T'); |
7fb63b469cd2
more uniform instT_subst vs. inst_subst: compare variable names only;
wenzelm
parents:
45346
diff
changeset
|
419 |
val t' = the_default t (Symtab.lookup env x); |
7fb63b469cd2
more uniform instT_subst vs. inst_subst: compare variable names only;
wenzelm
parents:
45346
diff
changeset
|
420 |
in if t aconv t' then I else insert (eq_fst (op =)) ((x, T'), t') end |
7fb63b469cd2
more uniform instT_subst vs. inst_subst: compare variable names only;
wenzelm
parents:
45346
diff
changeset
|
421 |
| _ => I) th []; |
7fb63b469cd2
more uniform instT_subst vs. inst_subst: compare variable names only;
wenzelm
parents:
45346
diff
changeset
|
422 |
|
19777 | 423 |
fun inst_thm thy (envT, env) th = |
424 |
if Symtab.is_empty env then instT_thm thy envT th |
|
425 |
else |
|
426 |
let |
|
427 |
val substT = instT_subst envT th; |
|
45349
7fb63b469cd2
more uniform instT_subst vs. inst_subst: compare variable names only;
wenzelm
parents:
45346
diff
changeset
|
428 |
val subst = inst_subst (envT, env) th; |
19777 | 429 |
in |
430 |
if null substT andalso null subst then th |
|
431 |
else th |> hyps_rule |
|
432 |
(instantiate_tfrees thy substT #> |
|
433 |
instantiate_frees thy subst #> |
|
22900 | 434 |
Conv.fconv_rule (Thm.beta_conversion true)) |
19777 | 435 |
end; |
436 |
||
45346
439101d8eeec
some performance tuning via Term_Subst/Same.operation;
wenzelm
parents:
45345
diff
changeset
|
437 |
fun inst_morphism thy (envT, env) = |
54740 | 438 |
Morphism.morphism "Element.inst" |
52788 | 439 |
{binding = [], |
440 |
typ = [instT_type envT], |
|
441 |
term = [inst_term (envT, env)], |
|
52789 | 442 |
fact = [map (inst_thm thy (envT, env))]}; |
19777 | 443 |
|
444 |
||
445 |
(* satisfy hypotheses *) |
|
446 |
||
45346
439101d8eeec
some performance tuning via Term_Subst/Same.operation;
wenzelm
parents:
45345
diff
changeset
|
447 |
fun satisfy_thm witns thm = |
439101d8eeec
some performance tuning via Term_Subst/Same.operation;
wenzelm
parents:
45345
diff
changeset
|
448 |
thm |> fold (fn hyp => |
19777 | 449 |
(case find_first (fn Witness (t, _) => Thm.term_of hyp aconv t) witns of |
450 |
NONE => I |
|
25302 | 451 |
| SOME w => Thm.implies_intr hyp #> compose_witness w)) (#hyps (Thm.crep_thm thm)); |
19777 | 452 |
|
54740 | 453 |
val satisfy_morphism = Morphism.thm_morphism "Element.satisfy" o satisfy_thm; |
20264 | 454 |
|
455 |
||
29525 | 456 |
(* rewriting with equalities *) |
457 |
||
46856 | 458 |
fun eq_morphism _ [] = NONE |
459 |
| eq_morphism thy thms = |
|
54742
7a86358a3c0b
proper context for basic Simplifier operations: rewrite_rule, rewrite_goals_rule, rewrite_goals_tac etc.;
wenzelm
parents:
54740
diff
changeset
|
460 |
let |
7a86358a3c0b
proper context for basic Simplifier operations: rewrite_rule, rewrite_goals_rule, rewrite_goals_tac etc.;
wenzelm
parents:
54740
diff
changeset
|
461 |
(* FIXME proper context!? *) |
7a86358a3c0b
proper context for basic Simplifier operations: rewrite_rule, rewrite_goals_rule, rewrite_goals_tac etc.;
wenzelm
parents:
54740
diff
changeset
|
462 |
fun rewrite th = rewrite_rule (Proof_Context.init_global (Thm.theory_of_thm th)) thms th; |
7a86358a3c0b
proper context for basic Simplifier operations: rewrite_rule, rewrite_goals_rule, rewrite_goals_tac etc.;
wenzelm
parents:
54740
diff
changeset
|
463 |
val phi = |
7a86358a3c0b
proper context for basic Simplifier operations: rewrite_rule, rewrite_goals_rule, rewrite_goals_tac etc.;
wenzelm
parents:
54740
diff
changeset
|
464 |
Morphism.morphism "Element.eq_morphism" |
7a86358a3c0b
proper context for basic Simplifier operations: rewrite_rule, rewrite_goals_rule, rewrite_goals_tac etc.;
wenzelm
parents:
54740
diff
changeset
|
465 |
{binding = [], |
7a86358a3c0b
proper context for basic Simplifier operations: rewrite_rule, rewrite_goals_rule, rewrite_goals_tac etc.;
wenzelm
parents:
54740
diff
changeset
|
466 |
typ = [], |
7a86358a3c0b
proper context for basic Simplifier operations: rewrite_rule, rewrite_goals_rule, rewrite_goals_tac etc.;
wenzelm
parents:
54740
diff
changeset
|
467 |
term = [Raw_Simplifier.rewrite_term thy thms []], |
7a86358a3c0b
proper context for basic Simplifier operations: rewrite_rule, rewrite_goals_rule, rewrite_goals_tac etc.;
wenzelm
parents:
54740
diff
changeset
|
468 |
fact = [map rewrite]}; |
7a86358a3c0b
proper context for basic Simplifier operations: rewrite_rule, rewrite_goals_rule, rewrite_goals_tac etc.;
wenzelm
parents:
54740
diff
changeset
|
469 |
in SOME phi end; |
29525 | 470 |
|
471 |
||
29218 | 472 |
|
30775
71f777103225
added Element.init, which unifies former activate_elem in element.ML and init_elem in locale.ML;
wenzelm
parents:
30763
diff
changeset
|
473 |
(** activate in context **) |
28832 | 474 |
|
30775
71f777103225
added Element.init, which unifies former activate_elem in element.ML and init_elem in locale.ML;
wenzelm
parents:
30763
diff
changeset
|
475 |
(* init *) |
28832 | 476 |
|
57864
7cf01ece66e4
clarified Element.init vs. Element.init' -- the latter also avoids redundant warnings due to declatations when preparing locale expressions / interpretations;
wenzelm
parents:
55997
diff
changeset
|
477 |
fun init (Fixes fixes) = Context.map_proof (Proof_Context.add_fixes fixes #> #2) |
7cf01ece66e4
clarified Element.init vs. Element.init' -- the latter also avoids redundant warnings due to declatations when preparing locale expressions / interpretations;
wenzelm
parents:
55997
diff
changeset
|
478 |
| init (Constrains _) = I |
7cf01ece66e4
clarified Element.init vs. Element.init' -- the latter also avoids redundant warnings due to declatations when preparing locale expressions / interpretations;
wenzelm
parents:
55997
diff
changeset
|
479 |
| init (Assumes asms) = Context.map_proof (fn ctxt => |
28832 | 480 |
let |
47815 | 481 |
val asms' = Attrib.map_specs (map (Attrib.attribute ctxt)) asms; |
30775
71f777103225
added Element.init, which unifies former activate_elem in element.ML and init_elem in locale.ML;
wenzelm
parents:
30763
diff
changeset
|
482 |
val (_, ctxt') = ctxt |
71f777103225
added Element.init, which unifies former activate_elem in element.ML and init_elem in locale.ML;
wenzelm
parents:
30763
diff
changeset
|
483 |
|> fold Variable.auto_fixes (maps (map #1 o #2) asms') |
42360 | 484 |
|> Proof_Context.add_assms_i Assumption.assume_export asms'; |
30775
71f777103225
added Element.init, which unifies former activate_elem in element.ML and init_elem in locale.ML;
wenzelm
parents:
30763
diff
changeset
|
485 |
in ctxt' end) |
57864
7cf01ece66e4
clarified Element.init vs. Element.init' -- the latter also avoids redundant warnings due to declatations when preparing locale expressions / interpretations;
wenzelm
parents:
55997
diff
changeset
|
486 |
| init (Defines defs) = Context.map_proof (fn ctxt => |
28832 | 487 |
let |
47815 | 488 |
val defs' = Attrib.map_specs (map (Attrib.attribute ctxt)) defs; |
49750
444cfaa331c9
clarified Element.init vs. Element.activate: refrain from hard-wiring Thm.def_binding_optional to avoid duplicate facts;
wenzelm
parents:
47815
diff
changeset
|
489 |
val asms = defs' |> map (fn (b, (t, ps)) => |
444cfaa331c9
clarified Element.init vs. Element.activate: refrain from hard-wiring Thm.def_binding_optional to avoid duplicate facts;
wenzelm
parents:
47815
diff
changeset
|
490 |
let val (_, t') = Local_Defs.cert_def ctxt t (* FIXME adapt ps? *) |
444cfaa331c9
clarified Element.init vs. Element.activate: refrain from hard-wiring Thm.def_binding_optional to avoid duplicate facts;
wenzelm
parents:
47815
diff
changeset
|
491 |
in (t', (b, [(t', ps)])) end); |
30775
71f777103225
added Element.init, which unifies former activate_elem in element.ML and init_elem in locale.ML;
wenzelm
parents:
30763
diff
changeset
|
492 |
val (_, ctxt') = ctxt |
71f777103225
added Element.init, which unifies former activate_elem in element.ML and init_elem in locale.ML;
wenzelm
parents:
30763
diff
changeset
|
493 |
|> fold Variable.auto_fixes (map #1 asms) |
42360 | 494 |
|> Proof_Context.add_assms_i Local_Defs.def_export (map #2 asms); |
30775
71f777103225
added Element.init, which unifies former activate_elem in element.ML and init_elem in locale.ML;
wenzelm
parents:
30763
diff
changeset
|
495 |
in ctxt' end) |
57864
7cf01ece66e4
clarified Element.init vs. Element.init' -- the latter also avoids redundant warnings due to declatations when preparing locale expressions / interpretations;
wenzelm
parents:
55997
diff
changeset
|
496 |
| init (Notes (kind, facts)) = Attrib.generic_notes kind facts #> #2; |
54993
625370769fc0
check_hyps for attribute application (still inactive, due to non-compliant tools);
wenzelm
parents:
54883
diff
changeset
|
497 |
|
57864
7cf01ece66e4
clarified Element.init vs. Element.init' -- the latter also avoids redundant warnings due to declatations when preparing locale expressions / interpretations;
wenzelm
parents:
55997
diff
changeset
|
498 |
fun init' elem context = |
54993
625370769fc0
check_hyps for attribute application (still inactive, due to non-compliant tools);
wenzelm
parents:
54883
diff
changeset
|
499 |
context |
57864
7cf01ece66e4
clarified Element.init vs. Element.init' -- the latter also avoids redundant warnings due to declatations when preparing locale expressions / interpretations;
wenzelm
parents:
55997
diff
changeset
|
500 |
|> Context.mapping I (Thm.unchecked_hyps #> Context_Position.not_really) |
7cf01ece66e4
clarified Element.init vs. Element.init' -- the latter also avoids redundant warnings due to declatations when preparing locale expressions / interpretations;
wenzelm
parents:
55997
diff
changeset
|
501 |
|> init elem |
7cf01ece66e4
clarified Element.init vs. Element.init' -- the latter also avoids redundant warnings due to declatations when preparing locale expressions / interpretations;
wenzelm
parents:
55997
diff
changeset
|
502 |
|> Context.mapping I (fn ctxt => |
7cf01ece66e4
clarified Element.init vs. Element.init' -- the latter also avoids redundant warnings due to declatations when preparing locale expressions / interpretations;
wenzelm
parents:
55997
diff
changeset
|
503 |
let val ctxt0 = Context.proof_of context |
7cf01ece66e4
clarified Element.init vs. Element.init' -- the latter also avoids redundant warnings due to declatations when preparing locale expressions / interpretations;
wenzelm
parents:
55997
diff
changeset
|
504 |
in ctxt |> Context_Position.restore_visible ctxt0 |> Thm.restore_hyps ctxt0 end); |
30775
71f777103225
added Element.init, which unifies former activate_elem in element.ML and init_elem in locale.ML;
wenzelm
parents:
30763
diff
changeset
|
505 |
|
71f777103225
added Element.init, which unifies former activate_elem in element.ML and init_elem in locale.ML;
wenzelm
parents:
30763
diff
changeset
|
506 |
|
71f777103225
added Element.init, which unifies former activate_elem in element.ML and init_elem in locale.ML;
wenzelm
parents:
30763
diff
changeset
|
507 |
(* activate *) |
71f777103225
added Element.init, which unifies former activate_elem in element.ML and init_elem in locale.ML;
wenzelm
parents:
30763
diff
changeset
|
508 |
|
30777
9960ff945c52
simplified Element.activate(_i): singleton version;
wenzelm
parents:
30775
diff
changeset
|
509 |
fun activate_i elem ctxt = |
28832 | 510 |
let |
49750
444cfaa331c9
clarified Element.init vs. Element.activate: refrain from hard-wiring Thm.def_binding_optional to avoid duplicate facts;
wenzelm
parents:
47815
diff
changeset
|
511 |
val elem' = |
55914
c5b752d549e3
clarified init_assignable: make double-sure that initial values are reset;
wenzelm
parents:
55763
diff
changeset
|
512 |
(case map_ctxt_attrib Args.init_assignable elem of |
49750
444cfaa331c9
clarified Element.init vs. Element.activate: refrain from hard-wiring Thm.def_binding_optional to avoid duplicate facts;
wenzelm
parents:
47815
diff
changeset
|
513 |
Defines defs => |
444cfaa331c9
clarified Element.init vs. Element.activate: refrain from hard-wiring Thm.def_binding_optional to avoid duplicate facts;
wenzelm
parents:
47815
diff
changeset
|
514 |
Defines (defs |> map (fn ((a, atts), (t, ps)) => |
444cfaa331c9
clarified Element.init vs. Element.activate: refrain from hard-wiring Thm.def_binding_optional to avoid duplicate facts;
wenzelm
parents:
47815
diff
changeset
|
515 |
((Thm.def_binding_optional (Binding.name (#1 (#1 (Local_Defs.cert_def ctxt t)))) a, atts), |
444cfaa331c9
clarified Element.init vs. Element.activate: refrain from hard-wiring Thm.def_binding_optional to avoid duplicate facts;
wenzelm
parents:
47815
diff
changeset
|
516 |
(t, ps)))) |
444cfaa331c9
clarified Element.init vs. Element.activate: refrain from hard-wiring Thm.def_binding_optional to avoid duplicate facts;
wenzelm
parents:
47815
diff
changeset
|
517 |
| e => e); |
30777
9960ff945c52
simplified Element.activate(_i): singleton version;
wenzelm
parents:
30775
diff
changeset
|
518 |
val ctxt' = Context.proof_map (init elem') ctxt; |
9960ff945c52
simplified Element.activate(_i): singleton version;
wenzelm
parents:
30775
diff
changeset
|
519 |
in (map_ctxt_attrib Args.closure elem', ctxt') end; |
28832 | 520 |
|
30777
9960ff945c52
simplified Element.activate(_i): singleton version;
wenzelm
parents:
30775
diff
changeset
|
521 |
fun activate raw_elem ctxt = |
9960ff945c52
simplified Element.activate(_i): singleton version;
wenzelm
parents:
30775
diff
changeset
|
522 |
let val elem = raw_elem |> map_ctxt |
43842
f035d867fb41
Element.activate: leave check of binding where actually applied to the context -- allow internal qualifications, or non-identifier fact names like "assumes *: A" (see also 1183951365de);
wenzelm
parents:
43837
diff
changeset
|
523 |
{binding = I, |
29603 | 524 |
typ = I, |
525 |
term = I, |
|
526 |
pattern = I, |
|
42360 | 527 |
fact = Proof_Context.get_fact ctxt, |
55997
9dc5ce83202c
modernized Attrib.check_name/check_src similar to methods (see also a989bdaf8121);
wenzelm
parents:
55914
diff
changeset
|
528 |
attrib = Attrib.check_src ctxt} |
30777
9960ff945c52
simplified Element.activate(_i): singleton version;
wenzelm
parents:
30775
diff
changeset
|
529 |
in activate_i elem ctxt end; |
28832 | 530 |
|
19267 | 531 |
end; |