author | haftmann |
Sat, 18 Feb 2012 11:31:35 +0100 | |
changeset 46513 | 2659ee0128c2 |
parent 45601 | d5178f19b671 |
child 46728 | 85f8e3932712 |
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 |
19777 | 47 |
val conclude_witness: 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 |
29218 | 53 |
val transfer_morphism: theory -> morphism |
38108 | 54 |
val generic_note_thmss: string -> (Attrib.binding * (thm list * Attrib.src list) list) list -> |
55 |
Context.generic -> (string * thm list) list * Context.generic |
|
30775
71f777103225
added Element.init, which unifies former activate_elem in element.ML and init_elem in locale.ML;
wenzelm
parents:
30763
diff
changeset
|
56 |
val init: context_i -> Context.generic -> Context.generic |
30777
9960ff945c52
simplified Element.activate(_i): singleton version;
wenzelm
parents:
30775
diff
changeset
|
57 |
val activate_i: context_i -> Proof.context -> context_i * Proof.context |
9960ff945c52
simplified Element.activate(_i): singleton version;
wenzelm
parents:
30775
diff
changeset
|
58 |
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
|
59 |
end; |
691c64d615a5
Explicit data structures for some Isar language elements.
wenzelm
parents:
diff
changeset
|
60 |
|
691c64d615a5
Explicit data structures for some Isar language elements.
wenzelm
parents:
diff
changeset
|
61 |
structure Element: ELEMENT = |
691c64d615a5
Explicit data structures for some Isar language elements.
wenzelm
parents:
diff
changeset
|
62 |
struct |
691c64d615a5
Explicit data structures for some Isar language elements.
wenzelm
parents:
diff
changeset
|
63 |
|
19777 | 64 |
(** language elements **) |
65 |
||
66 |
(* statement *) |
|
19259 | 67 |
|
68 |
datatype ('typ, 'term) stmt = |
|
28084
a05ca48ef263
type Attrib.binding abbreviates Name.binding without attributes;
wenzelm
parents:
28079
diff
changeset
|
69 |
Shows of (Attrib.binding * ('term * 'term list) list) list | |
29578 | 70 |
Obtains of (binding * ((binding * 'typ option) list * 'term list)) list; |
19259 | 71 |
|
72 |
type statement = (string, string) stmt; |
|
73 |
type statement_i = (typ, term) stmt; |
|
74 |
||
75 |
||
19777 | 76 |
(* context *) |
18140
691c64d615a5
Explicit data structures for some Isar language elements.
wenzelm
parents:
diff
changeset
|
77 |
|
691c64d615a5
Explicit data structures for some Isar language elements.
wenzelm
parents:
diff
changeset
|
78 |
datatype ('typ, 'term, 'fact) ctxt = |
29578 | 79 |
Fixes of (binding * 'typ option * mixfix) list | |
18140
691c64d615a5
Explicit data structures for some Isar language elements.
wenzelm
parents:
diff
changeset
|
80 |
Constrains of (string * 'typ) list | |
28084
a05ca48ef263
type Attrib.binding abbreviates Name.binding without attributes;
wenzelm
parents:
28079
diff
changeset
|
81 |
Assumes of (Attrib.binding * ('term * 'term list) list) list | |
a05ca48ef263
type Attrib.binding abbreviates Name.binding without attributes;
wenzelm
parents:
28079
diff
changeset
|
82 |
Defines of (Attrib.binding * ('term * 'term list)) list | |
a05ca48ef263
type Attrib.binding abbreviates Name.binding without attributes;
wenzelm
parents:
28079
diff
changeset
|
83 |
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
|
84 |
|
26336
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
25739
diff
changeset
|
85 |
type context = (string, string, Facts.ref) ctxt; |
18140
691c64d615a5
Explicit data structures for some Isar language elements.
wenzelm
parents:
diff
changeset
|
86 |
type context_i = (typ, term, thm list) ctxt; |
691c64d615a5
Explicit data structures for some Isar language elements.
wenzelm
parents:
diff
changeset
|
87 |
|
29603 | 88 |
fun map_ctxt {binding, typ, term, pattern, fact, attrib} = |
89 |
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
|
90 |
| Constrains xs => Constrains (xs |> map (fn (x, T) => |
42494 | 91 |
(Variable.check_name (binding (Binding.name x)), typ T))) |
18140
691c64d615a5
Explicit data structures for some Isar language elements.
wenzelm
parents:
diff
changeset
|
92 |
| Assumes asms => Assumes (asms |> map (fn ((a, atts), propps) => |
29603 | 93 |
((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
|
94 |
| Defines defs => Defines (defs |> map (fn ((a, atts), (t, ps)) => |
29603 | 95 |
((binding a, map attrib atts), (term t, map pattern ps)))) |
21440 | 96 |
| Notes (kind, facts) => Notes (kind, facts |> map (fn ((a, atts), bs) => |
28965 | 97 |
((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
|
98 |
|
21528 | 99 |
fun map_ctxt_attrib attrib = |
29603 | 100 |
map_ctxt {binding = I, typ = I, term = I, pattern = I, fact = I, attrib = attrib}; |
21528 | 101 |
|
45290 | 102 |
fun transform_ctxt phi = map_ctxt |
28965 | 103 |
{binding = Morphism.binding phi, |
21481 | 104 |
typ = Morphism.typ phi, |
105 |
term = Morphism.term phi, |
|
29603 | 106 |
pattern = Morphism.term phi, |
21521 | 107 |
fact = Morphism.fact phi, |
45290 | 108 |
attrib = Args.transform_values phi}; |
18140
691c64d615a5
Explicit data structures for some Isar language elements.
wenzelm
parents:
diff
changeset
|
109 |
|
45601 | 110 |
fun transform_facts phi facts = |
111 |
Notes ("", facts) |> transform_ctxt phi |> (fn Notes (_, facts') => facts'); |
|
112 |
||
19808 | 113 |
|
18894 | 114 |
|
19259 | 115 |
(** pretty printing **) |
116 |
||
19267 | 117 |
fun pretty_items _ _ [] = [] |
118 |
| pretty_items keyword sep (x :: ys) = |
|
119 |
Pretty.block [Pretty.keyword keyword, Pretty.brk 1, x] :: |
|
120 |
map (fn y => Pretty.block [Pretty.str " ", Pretty.keyword sep, Pretty.brk 1, y]) ys; |
|
19259 | 121 |
|
28862 | 122 |
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
|
123 |
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
|
124 |
else |
f3a8476285c6
clarified Binding.pretty/print: no quotes, only markup -- Binding.str_of is rendered obsolete;
wenzelm
parents:
42495
diff
changeset
|
125 |
[Pretty.block (Pretty.breaks |
f3a8476285c6
clarified Binding.pretty/print: no quotes, only markup -- Binding.str_of is rendered obsolete;
wenzelm
parents:
42495
diff
changeset
|
126 |
(Binding.pretty b :: Attrib.pretty_attribs ctxt atts @ [Pretty.str sep]))]; |
19259 | 127 |
|
128 |
||
129 |
(* pretty_stmt *) |
|
130 |
||
131 |
fun pretty_stmt ctxt = |
|
132 |
let |
|
24920 | 133 |
val prt_typ = Pretty.quote o Syntax.pretty_typ ctxt; |
134 |
val prt_term = Pretty.quote o Syntax.pretty_term ctxt; |
|
19267 | 135 |
val prt_terms = separate (Pretty.keyword "and") o map prt_term; |
19259 | 136 |
val prt_name_atts = pretty_name_atts ctxt; |
137 |
||
138 |
fun prt_show (a, ts) = |
|
19267 | 139 |
Pretty.block (Pretty.breaks (prt_name_atts a ":" @ prt_terms (map fst ts))); |
19259 | 140 |
|
28079
955c42c8a5e4
explicit type Name.binding for higher-specification elements;
wenzelm
parents:
27865
diff
changeset
|
141 |
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
|
142 |
[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
|
143 |
| prt_var (x, NONE) = Pretty.str (Binding.name_of x); |
26721 | 144 |
val prt_vars = separate (Pretty.keyword "and") o map prt_var; |
19259 | 145 |
|
19267 | 146 |
fun prt_obtain (_, ([], ts)) = Pretty.block (Pretty.breaks (prt_terms ts)) |
19259 | 147 |
| prt_obtain (_, (xs, ts)) = Pretty.block (Pretty.breaks |
19585 | 148 |
(prt_vars xs @ [Pretty.keyword "where"] @ prt_terms ts)); |
19259 | 149 |
in |
19267 | 150 |
fn Shows shows => pretty_items "shows" "and" (map prt_show shows) |
151 |
| Obtains obtains => pretty_items "obtains" "|" (map prt_obtain obtains) |
|
19259 | 152 |
end; |
153 |
||
18894 | 154 |
|
19259 | 155 |
(* pretty_ctxt *) |
156 |
||
157 |
fun pretty_ctxt ctxt = |
|
158 |
let |
|
24920 | 159 |
val prt_typ = Pretty.quote o Syntax.pretty_typ ctxt; |
160 |
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
|
161 |
val prt_thm = Pretty.backquote o Display.pretty_thm ctxt; |
19259 | 162 |
val prt_name_atts = pretty_name_atts ctxt; |
163 |
||
19267 | 164 |
fun prt_mixfix NoSyn = [] |
42287
d98eb048a2e4
discontinued special treatment of structure Mixfix;
wenzelm
parents:
41581
diff
changeset
|
165 |
| prt_mixfix mx = [Pretty.brk 2, Mixfix.pretty_mixfix mx]; |
19267 | 166 |
|
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 |
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
|
168 |
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
|
169 |
| 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
|
170 |
Pretty.brk 1 :: prt_mixfix mx); |
28965 | 171 |
fun prt_constrain (x, T) = prt_fix (Binding.name x, SOME T, NoSyn); |
18894 | 172 |
|
19259 | 173 |
fun prt_asm (a, ts) = |
174 |
Pretty.block (Pretty.breaks (prt_name_atts a ":" @ map (prt_term o fst) ts)); |
|
175 |
fun prt_def (a, (t, _)) = |
|
176 |
Pretty.block (Pretty.breaks (prt_name_atts a ":" @ [prt_term t])); |
|
177 |
||
178 |
fun prt_fact (ths, []) = map prt_thm ths |
|
179 |
| prt_fact (ths, atts) = Pretty.enclose "(" ")" |
|
21032 | 180 |
(Pretty.breaks (map prt_thm ths)) :: Attrib.pretty_attribs ctxt atts; |
19259 | 181 |
fun prt_note (a, ths) = |
19482
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
wenzelm
parents:
19466
diff
changeset
|
182 |
Pretty.block (Pretty.breaks (flat (prt_name_atts a "=" :: map prt_fact ths))); |
19259 | 183 |
in |
19267 | 184 |
fn Fixes fixes => pretty_items "fixes" "and" (map prt_fix fixes) |
185 |
| Constrains xs => pretty_items "constrains" "and" (map prt_constrain xs) |
|
186 |
| Assumes asms => pretty_items "assumes" "and" (map prt_asm asms) |
|
187 |
| Defines defs => pretty_items "defines" "and" (map prt_def defs) |
|
21440 | 188 |
| Notes ("", facts) => pretty_items "notes" "and" (map prt_note facts) |
189 |
| Notes (kind, facts) => pretty_items ("notes " ^ kind) "and" (map prt_note facts) |
|
19259 | 190 |
end; |
18894 | 191 |
|
19267 | 192 |
|
193 |
(* pretty_statement *) |
|
194 |
||
195 |
local |
|
196 |
||
41581
72a02e3dec7e
clarified pretty_statement: more robust treatment of fixes and conclusion of elimination (e.g. for classical rule);
wenzelm
parents:
41425
diff
changeset
|
197 |
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
|
198 |
(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
|
199 |
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
|
200 |
let |
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 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
|
202 |
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
|
203 |
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
|
204 |
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
|
205 |
| 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
|
206 |
|
19267 | 207 |
fun thm_name kind th prts = |
208 |
let val head = |
|
27865
27a8ad9612a3
moved basic thm operations from structure PureThy to Thm (cf. more_thm.ML);
wenzelm
parents:
26721
diff
changeset
|
209 |
if Thm.has_name_hint th then |
21965
7120ef5bc378
pretty_statement: more careful handling of name_hint;
wenzelm
parents:
21646
diff
changeset
|
210 |
Pretty.block [Pretty.command kind, |
30364
577edc39b501
moved basic algebra of long names from structure NameSpace to Long_Name;
wenzelm
parents:
30280
diff
changeset
|
211 |
Pretty.brk 1, Pretty.str (Long_Name.base_name (Thm.get_name_hint th) ^ ":")] |
21965
7120ef5bc378
pretty_statement: more careful handling of name_hint;
wenzelm
parents:
21646
diff
changeset
|
212 |
else Pretty.command kind |
19267 | 213 |
in Pretty.block (Pretty.fbreaks (head :: prts)) end; |
214 |
||
215 |
fun obtain prop ctxt = |
|
216 |
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
|
217 |
val ((ps, prop'), ctxt') = Variable.focus prop ctxt; |
42488
4638622bcaa1
reorganized fixes as specialized (global) name space;
wenzelm
parents:
42360
diff
changeset
|
218 |
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
|
219 |
val xs = map (fix o #2) ps; |
1af81b70cf09
clarified Variable.focus vs. Variable.focus_cterm -- eliminated clone;
wenzelm
parents:
42494
diff
changeset
|
220 |
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
|
221 |
in ((Binding.empty, (xs, As)), ctxt') end; |
19267 | 222 |
|
223 |
in |
|
224 |
||
225 |
fun pretty_statement ctxt kind raw_th = |
|
226 |
let |
|
42360 | 227 |
val thy = Proof_Context.theory_of ctxt; |
20150 | 228 |
|
41581
72a02e3dec7e
clarified pretty_statement: more robust treatment of fixes and conclusion of elimination (e.g. for classical rule);
wenzelm
parents:
41425
diff
changeset
|
229 |
val (th, is_elim) = standard_elim (Raw_Simplifier.norm_hhf raw_th); |
72a02e3dec7e
clarified pretty_statement: more robust treatment of fixes and conclusion of elimination (e.g. for classical rule);
wenzelm
parents:
41425
diff
changeset
|
230 |
val ((_, [th']), ctxt') = Variable.import true [th] (Variable.set_body true ctxt); |
20150 | 231 |
val prop = Thm.prop_of th'; |
232 |
val (prems, concl) = Logic.strip_horn prop; |
|
35625 | 233 |
val concl_term = Object_Logic.drop_judgment thy concl; |
19267 | 234 |
|
20150 | 235 |
val fixes = fold_aterms (fn v as Free (x, T) => |
236 |
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
|
237 |
then insert (op =) (Variable.revert_fixed ctxt' x, T) else I | _ => I) prop [] |> rev; |
20150 | 238 |
val (assumes, cases) = take_suffix (fn prem => |
239 |
is_elim andalso concl aconv Logic.strip_assums_concl prem) prems; |
|
19267 | 240 |
in |
28965 | 241 |
pretty_ctxt ctxt' (Fixes (map (fn (x, T) => (Binding.name x, SOME T, NoSyn)) fixes)) @ |
242 |
pretty_ctxt ctxt' (Assumes (map (fn t => (Attrib.empty_binding, [(t, [])])) assumes)) @ |
|
243 |
(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
|
244 |
else |
42495
1af81b70cf09
clarified Variable.focus vs. Variable.focus_cterm -- eliminated clone;
wenzelm
parents:
42494
diff
changeset
|
245 |
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
|
246 |
in pretty_stmt ctxt'' (Obtains clauses) end) |
19267 | 247 |
end |> thm_name kind raw_th; |
248 |
||
18140
691c64d615a5
Explicit data structures for some Isar language elements.
wenzelm
parents:
diff
changeset
|
249 |
end; |
19267 | 250 |
|
19777 | 251 |
|
252 |
||
253 |
(** logical operations **) |
|
254 |
||
255 |
(* witnesses -- hypotheses as protected facts *) |
|
256 |
||
257 |
datatype witness = Witness of term * thm; |
|
258 |
||
29578 | 259 |
val mark_witness = Logic.protect; |
260 |
fun witness_prop (Witness (t, _)) = t; |
|
44058 | 261 |
fun witness_hyps (Witness (_, th)) = Thm.hyps_of th; |
19777 | 262 |
fun map_witness f (Witness witn) = Witness (f witn); |
263 |
||
45290 | 264 |
fun transform_witness phi = map_witness (fn (t, th) => (Morphism.term phi t, Morphism.thm phi th)); |
21481 | 265 |
|
20058 | 266 |
fun prove_witness ctxt t tac = |
29578 | 267 |
Witness (t, Thm.close_derivation (Goal.prove ctxt [] [] (mark_witness t) (fn _ => |
25202
3a539d9995fb
proven witness: proper Goal.close_result save huge amounts of resources when using proof terms;
wenzelm
parents:
24920
diff
changeset
|
268 |
Tactic.rtac Drule.protectI 1 THEN tac))); |
19777 | 269 |
|
29603 | 270 |
|
29578 | 271 |
local |
272 |
||
273 |
val refine_witness = |
|
30510
4120fc59dd85
unified type Proof.method and pervasive METHOD combinators;
wenzelm
parents:
30438
diff
changeset
|
274 |
Proof.refine (Method.Basic (K (RAW_METHOD |
29578 | 275 |
(K (ALLGOALS |
276 |
(CONJUNCTS (ALLGOALS |
|
32194 | 277 |
(CONJUNCTS (TRYALL (Tactic.rtac Drule.protectI)))))))))); |
25624 | 278 |
|
29578 | 279 |
fun gen_witness_proof proof after_qed wit_propss eq_props = |
280 |
let |
|
281 |
val propss = (map o map) (fn prop => (mark_witness prop, [])) wit_propss |
|
282 |
@ [map (rpair []) eq_props]; |
|
283 |
fun after_qed' thmss = |
|
29603 | 284 |
let val (wits, eqs) = split_last ((map o map) Thm.close_derivation thmss); |
29578 | 285 |
in after_qed ((map2 o map2) (curry Witness) wit_propss wits) eqs end; |
286 |
in proof after_qed' propss #> refine_witness #> Seq.hd end; |
|
287 |
||
38108 | 288 |
fun proof_local cmd goal_ctxt int after_qed' propss = |
45329 | 289 |
Proof.map_context (K goal_ctxt) #> |
290 |
Proof.local_goal (Proof_Display.print_results int) (K I) Proof_Context.bind_propp_i |
|
291 |
cmd NONE after_qed' (map (pair Thm.empty_binding) propss); |
|
41425 | 292 |
|
29578 | 293 |
in |
294 |
||
295 |
fun witness_proof after_qed wit_propss = |
|
36323
655e2d74de3a
modernized naming conventions of main Isar proof elements;
wenzelm
parents:
35767
diff
changeset
|
296 |
gen_witness_proof (Proof.theorem NONE) (fn wits => fn _ => after_qed wits) |
29578 | 297 |
wit_propss []; |
298 |
||
36323
655e2d74de3a
modernized naming conventions of main Isar proof elements;
wenzelm
parents:
35767
diff
changeset
|
299 |
val witness_proof_eqs = gen_witness_proof (Proof.theorem NONE); |
29578 | 300 |
|
301 |
fun witness_local_proof after_qed cmd wit_propss goal_ctxt int = |
|
38108 | 302 |
gen_witness_proof (proof_local cmd goal_ctxt int) |
29578 | 303 |
(fn wits => fn _ => after_qed wits) wit_propss []; |
304 |
||
38108 | 305 |
fun witness_local_proof_eqs after_qed cmd wit_propss eq_props goal_ctxt int = |
306 |
gen_witness_proof (proof_local cmd goal_ctxt int) after_qed wit_propss eq_props; |
|
41425 | 307 |
|
29603 | 308 |
end; |
309 |
||
19777 | 310 |
|
25302 | 311 |
fun compose_witness (Witness (_, th)) r = |
312 |
let |
|
313 |
val th' = Goal.conclude th; |
|
314 |
val A = Thm.cprem_of r 1; |
|
25739 | 315 |
in |
316 |
Thm.implies_elim |
|
317 |
(Conv.gconv_rule Drule.beta_eta_conversion 1 r) |
|
318 |
(Conv.fconv_rule Drule.beta_eta_conversion |
|
319 |
(Thm.instantiate (Thm.match (Thm.cprop_of th', A)) th')) |
|
320 |
end; |
|
25302 | 321 |
|
29578 | 322 |
fun conclude_witness (Witness (_, th)) = |
41228
e1fce873b814
renamed structure MetaSimplifier to raw_Simplifer, to emphasize its meaning;
wenzelm
parents:
39557
diff
changeset
|
323 |
Thm.close_derivation (Raw_Simplifier.norm_hhf_protect (Goal.conclude th)); |
19777 | 324 |
|
22658
263d42253f53
Experimental interpretation code for definitions.
ballarin
parents:
22568
diff
changeset
|
325 |
fun pretty_witness ctxt witn = |
24920 | 326 |
let val prt_term = Pretty.quote o Syntax.pretty_term ctxt in |
22658
263d42253f53
Experimental interpretation code for definitions.
ballarin
parents:
22568
diff
changeset
|
327 |
Pretty.block (prt_term (witness_prop witn) :: |
39166
19efc2af3e6c
turned show_hyps and show_tags into proper configuration option;
wenzelm
parents:
38709
diff
changeset
|
328 |
(if Config.get ctxt show_hyps then [Pretty.brk 2, Pretty.list "[" "]" |
22658
263d42253f53
Experimental interpretation code for definitions.
ballarin
parents:
22568
diff
changeset
|
329 |
(map prt_term (witness_hyps witn))] else [])) |
263d42253f53
Experimental interpretation code for definitions.
ballarin
parents:
22568
diff
changeset
|
330 |
end; |
263d42253f53
Experimental interpretation code for definitions.
ballarin
parents:
22568
diff
changeset
|
331 |
|
19777 | 332 |
|
333 |
(* derived rules *) |
|
334 |
||
20007 | 335 |
fun instantiate_tfrees thy subst th = |
19777 | 336 |
let |
337 |
val certT = Thm.ctyp_of thy; |
|
20007 | 338 |
val idx = Thm.maxidx_of th + 1; |
339 |
fun cert_inst (a, (S, T)) = (certT (TVar ((a, idx), S)), certT T); |
|
340 |
||
341 |
fun add_inst (a, S) insts = |
|
342 |
if AList.defined (op =) insts a then insts |
|
343 |
else (case AList.lookup (op =) subst a of NONE => insts | SOME T => (a, (S, T)) :: insts); |
|
344 |
val insts = |
|
45346
439101d8eeec
some performance tuning via Term_Subst/Same.operation;
wenzelm
parents:
45345
diff
changeset
|
345 |
(Term.fold_types o Term.fold_atyps) (fn TFree v => add_inst v | _ => I) |
20007 | 346 |
(Thm.full_prop_of th) []; |
19777 | 347 |
in |
20007 | 348 |
th |
349 |
|> Thm.generalize (map fst insts, []) idx |
|
350 |
|> Thm.instantiate (map cert_inst insts, []) |
|
19777 | 351 |
end; |
352 |
||
353 |
fun instantiate_frees thy subst = |
|
354 |
let val cert = Thm.cterm_of thy in |
|
355 |
Drule.forall_intr_list (map (cert o Free o fst) subst) #> |
|
356 |
Drule.forall_elim_list (map (cert o snd) subst) |
|
357 |
end; |
|
358 |
||
359 |
fun hyps_rule rule th = |
|
21521 | 360 |
let val {hyps, ...} = Thm.crep_thm th in |
19777 | 361 |
Drule.implies_elim_list |
362 |
(rule (Drule.implies_intr_list hyps th)) |
|
21521 | 363 |
(map (Thm.assume o Drule.cterm_rule rule) hyps) |
19777 | 364 |
end; |
365 |
||
366 |
||
367 |
(* instantiate types *) |
|
368 |
||
45346
439101d8eeec
some performance tuning via Term_Subst/Same.operation;
wenzelm
parents:
45345
diff
changeset
|
369 |
fun instT_type_same env = |
439101d8eeec
some performance tuning via Term_Subst/Same.operation;
wenzelm
parents:
45345
diff
changeset
|
370 |
if Symtab.is_empty env then Same.same |
439101d8eeec
some performance tuning via Term_Subst/Same.operation;
wenzelm
parents:
45345
diff
changeset
|
371 |
else |
439101d8eeec
some performance tuning via Term_Subst/Same.operation;
wenzelm
parents:
45345
diff
changeset
|
372 |
Term_Subst.map_atypsT_same |
439101d8eeec
some performance tuning via Term_Subst/Same.operation;
wenzelm
parents:
45345
diff
changeset
|
373 |
(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
|
374 |
| _ => raise Same.SAME); |
19777 | 375 |
|
45346
439101d8eeec
some performance tuning via Term_Subst/Same.operation;
wenzelm
parents:
45345
diff
changeset
|
376 |
fun instT_term_same env = |
439101d8eeec
some performance tuning via Term_Subst/Same.operation;
wenzelm
parents:
45345
diff
changeset
|
377 |
if Symtab.is_empty env then Same.same |
439101d8eeec
some performance tuning via Term_Subst/Same.operation;
wenzelm
parents:
45345
diff
changeset
|
378 |
else Term_Subst.map_types_same (instT_type_same env); |
439101d8eeec
some performance tuning via Term_Subst/Same.operation;
wenzelm
parents:
45345
diff
changeset
|
379 |
|
439101d8eeec
some performance tuning via Term_Subst/Same.operation;
wenzelm
parents:
45345
diff
changeset
|
380 |
val instT_type = Same.commit o instT_type_same; |
439101d8eeec
some performance tuning via Term_Subst/Same.operation;
wenzelm
parents:
45345
diff
changeset
|
381 |
val instT_term = Same.commit o instT_term_same; |
19777 | 382 |
|
45346
439101d8eeec
some performance tuning via Term_Subst/Same.operation;
wenzelm
parents:
45345
diff
changeset
|
383 |
fun instT_subst env th = |
439101d8eeec
some performance tuning via Term_Subst/Same.operation;
wenzelm
parents:
45345
diff
changeset
|
384 |
(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
|
385 |
(fn T as TFree (a, _) => |
439101d8eeec
some performance tuning via Term_Subst/Same.operation;
wenzelm
parents:
45345
diff
changeset
|
386 |
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
|
387 |
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
|
388 |
| _ => I) th []; |
19777 | 389 |
|
390 |
fun instT_thm thy env th = |
|
391 |
if Symtab.is_empty env then th |
|
392 |
else |
|
393 |
let val subst = instT_subst env th |
|
394 |
in if null subst then th else th |> hyps_rule (instantiate_tfrees thy subst) end; |
|
395 |
||
22672
777af26d5713
inst(T)_morphism: avoid reference to static theory value;
wenzelm
parents:
22658
diff
changeset
|
396 |
fun instT_morphism thy env = |
24137
8d7896398147
replaced Theory.self_ref by Theory.check_thy, which now produces a checked ref;
wenzelm
parents:
23414
diff
changeset
|
397 |
let val thy_ref = Theory.check_thy thy in |
22672
777af26d5713
inst(T)_morphism: avoid reference to static theory value;
wenzelm
parents:
22658
diff
changeset
|
398 |
Morphism.morphism |
45295 | 399 |
{binding = [], |
45289
25e9e7f527b4
slightly more explicit/syntactic modelling of morphisms;
wenzelm
parents:
44058
diff
changeset
|
400 |
typ = [instT_type env], |
25e9e7f527b4
slightly more explicit/syntactic modelling of morphisms;
wenzelm
parents:
44058
diff
changeset
|
401 |
term = [instT_term env], |
25e9e7f527b4
slightly more explicit/syntactic modelling of morphisms;
wenzelm
parents:
44058
diff
changeset
|
402 |
fact = [map (fn th => instT_thm (Theory.deref thy_ref) env th)]} |
22672
777af26d5713
inst(T)_morphism: avoid reference to static theory value;
wenzelm
parents:
22658
diff
changeset
|
403 |
end; |
19777 | 404 |
|
405 |
||
406 |
(* instantiate types and terms *) |
|
407 |
||
408 |
fun inst_term (envT, env) = |
|
409 |
if Symtab.is_empty env then instT_term envT |
|
410 |
else |
|
45346
439101d8eeec
some performance tuning via Term_Subst/Same.operation;
wenzelm
parents:
45345
diff
changeset
|
411 |
instT_term envT #> |
439101d8eeec
some performance tuning via Term_Subst/Same.operation;
wenzelm
parents:
45345
diff
changeset
|
412 |
Same.commit (Term_Subst.map_aterms_same |
439101d8eeec
some performance tuning via Term_Subst/Same.operation;
wenzelm
parents:
45345
diff
changeset
|
413 |
(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
|
414 |
| _ => raise Same.SAME)) #> |
439101d8eeec
some performance tuning via Term_Subst/Same.operation;
wenzelm
parents:
45345
diff
changeset
|
415 |
Envir.beta_norm; |
19777 | 416 |
|
45349
7fb63b469cd2
more uniform instT_subst vs. inst_subst: compare variable names only;
wenzelm
parents:
45346
diff
changeset
|
417 |
fun inst_subst (envT, env) th = |
7fb63b469cd2
more uniform instT_subst vs. inst_subst: compare variable names only;
wenzelm
parents:
45346
diff
changeset
|
418 |
(Thm.fold_terms o Term.fold_aterms) |
7fb63b469cd2
more uniform instT_subst vs. inst_subst: compare variable names only;
wenzelm
parents:
45346
diff
changeset
|
419 |
(fn Free (x, T) => |
7fb63b469cd2
more uniform instT_subst vs. inst_subst: compare variable names only;
wenzelm
parents:
45346
diff
changeset
|
420 |
let |
7fb63b469cd2
more uniform instT_subst vs. inst_subst: compare variable names only;
wenzelm
parents:
45346
diff
changeset
|
421 |
val T' = instT_type envT T; |
7fb63b469cd2
more uniform instT_subst vs. inst_subst: compare variable names only;
wenzelm
parents:
45346
diff
changeset
|
422 |
val t = Free (x, T'); |
7fb63b469cd2
more uniform instT_subst vs. inst_subst: compare variable names only;
wenzelm
parents:
45346
diff
changeset
|
423 |
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
|
424 |
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
|
425 |
| _ => I) th []; |
7fb63b469cd2
more uniform instT_subst vs. inst_subst: compare variable names only;
wenzelm
parents:
45346
diff
changeset
|
426 |
|
19777 | 427 |
fun inst_thm thy (envT, env) th = |
428 |
if Symtab.is_empty env then instT_thm thy envT th |
|
429 |
else |
|
430 |
let |
|
431 |
val substT = instT_subst envT th; |
|
45349
7fb63b469cd2
more uniform instT_subst vs. inst_subst: compare variable names only;
wenzelm
parents:
45346
diff
changeset
|
432 |
val subst = inst_subst (envT, env) th; |
19777 | 433 |
in |
434 |
if null substT andalso null subst then th |
|
435 |
else th |> hyps_rule |
|
436 |
(instantiate_tfrees thy substT #> |
|
437 |
instantiate_frees thy subst #> |
|
22900 | 438 |
Conv.fconv_rule (Thm.beta_conversion true)) |
19777 | 439 |
end; |
440 |
||
45346
439101d8eeec
some performance tuning via Term_Subst/Same.operation;
wenzelm
parents:
45345
diff
changeset
|
441 |
fun inst_morphism thy (envT, env) = |
24137
8d7896398147
replaced Theory.self_ref by Theory.check_thy, which now produces a checked ref;
wenzelm
parents:
23414
diff
changeset
|
442 |
let val thy_ref = Theory.check_thy thy in |
22672
777af26d5713
inst(T)_morphism: avoid reference to static theory value;
wenzelm
parents:
22658
diff
changeset
|
443 |
Morphism.morphism |
45289
25e9e7f527b4
slightly more explicit/syntactic modelling of morphisms;
wenzelm
parents:
44058
diff
changeset
|
444 |
{binding = [], |
45346
439101d8eeec
some performance tuning via Term_Subst/Same.operation;
wenzelm
parents:
45345
diff
changeset
|
445 |
typ = [instT_type envT], |
439101d8eeec
some performance tuning via Term_Subst/Same.operation;
wenzelm
parents:
45345
diff
changeset
|
446 |
term = [inst_term (envT, env)], |
439101d8eeec
some performance tuning via Term_Subst/Same.operation;
wenzelm
parents:
45345
diff
changeset
|
447 |
fact = [map (fn th => inst_thm (Theory.deref thy_ref) (envT, env) th)]} |
22672
777af26d5713
inst(T)_morphism: avoid reference to static theory value;
wenzelm
parents:
22658
diff
changeset
|
448 |
end; |
19777 | 449 |
|
450 |
||
451 |
(* satisfy hypotheses *) |
|
452 |
||
45346
439101d8eeec
some performance tuning via Term_Subst/Same.operation;
wenzelm
parents:
45345
diff
changeset
|
453 |
fun satisfy_thm witns thm = |
439101d8eeec
some performance tuning via Term_Subst/Same.operation;
wenzelm
parents:
45345
diff
changeset
|
454 |
thm |> fold (fn hyp => |
19777 | 455 |
(case find_first (fn Witness (t, _) => Thm.term_of hyp aconv t) witns of |
456 |
NONE => I |
|
25302 | 457 |
| SOME w => Thm.implies_intr hyp #> compose_witness w)) (#hyps (Thm.crep_thm thm)); |
19777 | 458 |
|
29603 | 459 |
val satisfy_morphism = Morphism.thm_morphism o satisfy_thm; |
20264 | 460 |
|
461 |
||
29525 | 462 |
(* rewriting with equalities *) |
463 |
||
36674
d95f39448121
eq_morphism is always optional: avoid trivial morphism for empty list of equations
haftmann
parents:
36323
diff
changeset
|
464 |
fun eq_morphism thy thms = if null thms then NONE else SOME (Morphism.morphism |
45289
25e9e7f527b4
slightly more explicit/syntactic modelling of morphisms;
wenzelm
parents:
44058
diff
changeset
|
465 |
{binding = [], |
25e9e7f527b4
slightly more explicit/syntactic modelling of morphisms;
wenzelm
parents:
44058
diff
changeset
|
466 |
typ = [], |
25e9e7f527b4
slightly more explicit/syntactic modelling of morphisms;
wenzelm
parents:
44058
diff
changeset
|
467 |
term = [Raw_Simplifier.rewrite_term thy thms []], |
25e9e7f527b4
slightly more explicit/syntactic modelling of morphisms;
wenzelm
parents:
44058
diff
changeset
|
468 |
fact = [map (Raw_Simplifier.rewrite_rule thms)]}); |
29525 | 469 |
|
470 |
||
29218 | 471 |
(* transfer to theory using closure *) |
472 |
||
473 |
fun transfer_morphism thy = |
|
29603 | 474 |
let val thy_ref = Theory.check_thy thy |
38709 | 475 |
in Morphism.thm_morphism (fn th => Thm.transfer (Theory.deref thy_ref) th) end; |
29603 | 476 |
|
29218 | 477 |
|
478 |
||
30775
71f777103225
added Element.init, which unifies former activate_elem in element.ML and init_elem in locale.ML;
wenzelm
parents:
30763
diff
changeset
|
479 |
(** activate in context **) |
28832 | 480 |
|
30775
71f777103225
added Element.init, which unifies former activate_elem in element.ML and init_elem in locale.ML;
wenzelm
parents:
30763
diff
changeset
|
481 |
(* init *) |
28832 | 482 |
|
38108 | 483 |
fun generic_note_thmss kind facts context = |
484 |
let |
|
45390
e29521ef9059
tuned signature -- avoid spurious Thm.mixed_attribute;
wenzelm
parents:
45349
diff
changeset
|
485 |
val facts' = |
e29521ef9059
tuned signature -- avoid spurious Thm.mixed_attribute;
wenzelm
parents:
45349
diff
changeset
|
486 |
Attrib.map_facts (map (Attrib.attribute_i (Context.theory_of context))) facts; |
38108 | 487 |
in |
488 |
context |> Context.mapping_result |
|
39557
fe5722fce758
renamed structure PureThy to Pure_Thy and moved most content to Global_Theory, to emphasize that this is global-only;
wenzelm
parents:
39166
diff
changeset
|
489 |
(Global_Theory.note_thmss kind facts') |
42360 | 490 |
(Proof_Context.note_thmss kind facts') |
38108 | 491 |
end; |
492 |
||
42360 | 493 |
fun init (Fixes fixes) = Context.map_proof (Proof_Context.add_fixes fixes #> #2) |
30775
71f777103225
added Element.init, which unifies former activate_elem in element.ML and init_elem in locale.ML;
wenzelm
parents:
30763
diff
changeset
|
494 |
| init (Constrains _) = I |
71f777103225
added Element.init, which unifies former activate_elem in element.ML and init_elem in locale.ML;
wenzelm
parents:
30763
diff
changeset
|
495 |
| init (Assumes asms) = Context.map_proof (fn ctxt => |
28832 | 496 |
let |
45390
e29521ef9059
tuned signature -- avoid spurious Thm.mixed_attribute;
wenzelm
parents:
45349
diff
changeset
|
497 |
val asms' = |
e29521ef9059
tuned signature -- avoid spurious Thm.mixed_attribute;
wenzelm
parents:
45349
diff
changeset
|
498 |
Attrib.map_specs (map (Attrib.attribute_i (Proof_Context.theory_of 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
|
499 |
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
|
500 |
|> fold Variable.auto_fixes (maps (map #1 o #2) asms') |
42360 | 501 |
|> 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
|
502 |
in ctxt' end) |
71f777103225
added Element.init, which unifies former activate_elem in element.ML and init_elem in locale.ML;
wenzelm
parents:
30763
diff
changeset
|
503 |
| init (Defines defs) = Context.map_proof (fn ctxt => |
28832 | 504 |
let |
45390
e29521ef9059
tuned signature -- avoid spurious Thm.mixed_attribute;
wenzelm
parents:
45349
diff
changeset
|
505 |
val defs' = |
e29521ef9059
tuned signature -- avoid spurious Thm.mixed_attribute;
wenzelm
parents:
45349
diff
changeset
|
506 |
Attrib.map_specs (map (Attrib.attribute_i (Proof_Context.theory_of ctxt))) defs; |
28832 | 507 |
val asms = defs' |> map (fn ((name, atts), (t, ps)) => |
35624 | 508 |
let val ((c, _), t') = Local_Defs.cert_def ctxt t (* FIXME adapt ps? *) |
30434 | 509 |
in (t', ((Thm.def_binding_optional (Binding.name c) name, atts), [(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
|
510 |
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
|
511 |
|> fold Variable.auto_fixes (map #1 asms) |
42360 | 512 |
|> 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
|
513 |
in ctxt' end) |
38108 | 514 |
| init (Notes (kind, facts)) = generic_note_thmss kind facts #> #2; |
30775
71f777103225
added Element.init, which unifies former activate_elem in element.ML and init_elem in locale.ML;
wenzelm
parents:
30763
diff
changeset
|
515 |
|
71f777103225
added Element.init, which unifies former activate_elem in element.ML and init_elem in locale.ML;
wenzelm
parents:
30763
diff
changeset
|
516 |
|
71f777103225
added Element.init, which unifies former activate_elem in element.ML and init_elem in locale.ML;
wenzelm
parents:
30763
diff
changeset
|
517 |
(* activate *) |
71f777103225
added Element.init, which unifies former activate_elem in element.ML and init_elem in locale.ML;
wenzelm
parents:
30763
diff
changeset
|
518 |
|
30777
9960ff945c52
simplified Element.activate(_i): singleton version;
wenzelm
parents:
30775
diff
changeset
|
519 |
fun activate_i elem ctxt = |
28832 | 520 |
let |
30777
9960ff945c52
simplified Element.activate(_i): singleton version;
wenzelm
parents:
30775
diff
changeset
|
521 |
val elem' = map_ctxt_attrib Args.assignable elem; |
9960ff945c52
simplified Element.activate(_i): singleton version;
wenzelm
parents:
30775
diff
changeset
|
522 |
val ctxt' = Context.proof_map (init elem') ctxt; |
9960ff945c52
simplified Element.activate(_i): singleton version;
wenzelm
parents:
30775
diff
changeset
|
523 |
in (map_ctxt_attrib Args.closure elem', ctxt') end; |
28832 | 524 |
|
30777
9960ff945c52
simplified Element.activate(_i): singleton version;
wenzelm
parents:
30775
diff
changeset
|
525 |
fun activate raw_elem ctxt = |
9960ff945c52
simplified Element.activate(_i): singleton version;
wenzelm
parents:
30775
diff
changeset
|
526 |
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
|
527 |
{binding = I, |
29603 | 528 |
typ = I, |
529 |
term = I, |
|
530 |
pattern = I, |
|
42360 | 531 |
fact = Proof_Context.get_fact ctxt, |
532 |
attrib = Attrib.intern_src (Proof_Context.theory_of ctxt)} |
|
30777
9960ff945c52
simplified Element.activate(_i): singleton version;
wenzelm
parents:
30775
diff
changeset
|
533 |
in activate_i elem ctxt end; |
28832 | 534 |
|
19267 | 535 |
end; |