author | wenzelm |
Sun, 21 Feb 2021 00:49:09 +0100 | |
changeset 73265 | 76c9fcf80f96 |
parent 70475 | 98b6da301e13 |
child 74561 | 8e6c973003c8 |
permissions | -rw-r--r-- |
404
dd3d3d6467db
axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff
changeset
|
1 |
(* Title: Pure/axclass.ML |
dd3d3d6467db
axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff
changeset
|
2 |
Author: Markus Wenzel, TU Muenchen |
dd3d3d6467db
axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff
changeset
|
3 |
|
24964 | 4 |
Type classes defined as predicates, associated with a record of |
36417 | 5 |
parameters. Proven class relations and type arities. |
404
dd3d3d6467db
axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff
changeset
|
6 |
*) |
dd3d3d6467db
axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff
changeset
|
7 |
|
51685
385ef6706252
more standard module name Axclass (according to file name);
wenzelm
parents:
51671
diff
changeset
|
8 |
signature AXCLASS = |
3938 | 9 |
sig |
36427 | 10 |
type info = {def: thm, intro: thm, axioms: thm list, params: (string * typ) list} |
11 |
val get_info: theory -> class -> info |
|
12 |
val class_of_param: theory -> string -> class option |
|
13 |
val instance_name: string * class -> string |
|
14 |
val param_of_inst: theory -> string * string -> string |
|
15 |
val inst_of_param: theory -> string -> (string * string) option |
|
63073
413184c7a2a2
clarified context, notably for internal use of Simplifier;
wenzelm
parents:
62897
diff
changeset
|
16 |
val unoverload: Proof.context -> thm -> thm |
413184c7a2a2
clarified context, notably for internal use of Simplifier;
wenzelm
parents:
62897
diff
changeset
|
17 |
val overload: Proof.context -> thm -> thm |
413184c7a2a2
clarified context, notably for internal use of Simplifier;
wenzelm
parents:
62897
diff
changeset
|
18 |
val unoverload_conv: Proof.context -> conv |
413184c7a2a2
clarified context, notably for internal use of Simplifier;
wenzelm
parents:
62897
diff
changeset
|
19 |
val overload_conv: Proof.context -> conv |
36427 | 20 |
val lookup_inst_param: Consts.T -> ((string * string) * 'a) list -> string * typ -> 'a option |
21 |
val unoverload_const: theory -> string * typ -> string |
|
22 |
val cert_classrel: theory -> class * class -> class * class |
|
23 |
val read_classrel: theory -> xstring * xstring -> class * class |
|
24 |
val declare_overloaded: string * typ -> theory -> term * theory |
|
25 |
val define_overloaded: binding -> string * term -> theory -> thm * theory |
|
37246 | 26 |
val add_classrel: thm -> theory -> theory |
27 |
val add_arity: thm -> theory -> theory |
|
51671 | 28 |
val prove_classrel: class * class -> (Proof.context -> tactic) -> theory -> theory |
29 |
val prove_arity: string * sort list * sort -> (Proof.context -> tactic) -> theory -> theory |
|
36427 | 30 |
val define_class: binding * class list -> string list -> |
31 |
(Thm.binding * term list) list -> theory -> class * theory |
|
56941
952833323c99
tuned signature to make axiomatizations more easy to spot in the source, via "add_axioms" or "axiomatization";
wenzelm
parents:
56144
diff
changeset
|
32 |
val classrel_axiomatization: (class * class) list -> theory -> theory |
952833323c99
tuned signature to make axiomatizations more easy to spot in the source, via "add_axioms" or "axiomatization";
wenzelm
parents:
56144
diff
changeset
|
33 |
val arity_axiomatization: arity -> theory -> theory |
952833323c99
tuned signature to make axiomatizations more easy to spot in the source, via "add_axioms" or "axiomatization";
wenzelm
parents:
56144
diff
changeset
|
34 |
val class_axiomatization: binding * class list -> theory -> theory |
3938 | 35 |
end; |
404
dd3d3d6467db
axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff
changeset
|
36 |
|
51685
385ef6706252
more standard module name Axclass (according to file name);
wenzelm
parents:
51671
diff
changeset
|
37 |
structure Axclass: AXCLASS = |
404
dd3d3d6467db
axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff
changeset
|
38 |
struct |
dd3d3d6467db
axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff
changeset
|
39 |
|
19405 | 40 |
(** theory data **) |
423 | 41 |
|
36329
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents:
36328
diff
changeset
|
42 |
(* axclass info *) |
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents:
36328
diff
changeset
|
43 |
|
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents:
36328
diff
changeset
|
44 |
type info = |
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents:
36328
diff
changeset
|
45 |
{def: thm, |
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents:
36328
diff
changeset
|
46 |
intro: thm, |
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents:
36328
diff
changeset
|
47 |
axioms: thm list, |
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents:
36328
diff
changeset
|
48 |
params: (string * typ) list}; |
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents:
36328
diff
changeset
|
49 |
|
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents:
36328
diff
changeset
|
50 |
fun make_axclass (def, intro, axioms, params): info = |
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents:
36328
diff
changeset
|
51 |
{def = def, intro = intro, axioms = axioms, params = params}; |
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents:
36328
diff
changeset
|
52 |
|
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents:
36328
diff
changeset
|
53 |
|
19405 | 54 |
(* class parameters (canonical order) *) |
423 | 55 |
|
19405 | 56 |
type param = string * class; |
423 | 57 |
|
42389 | 58 |
fun add_param ctxt ((x, c): param) params = |
19405 | 59 |
(case AList.lookup (op =) params x of |
60 |
NONE => (x, c) :: params |
|
42383
0ae4ad40d7b5
simplified pretty printing context, which is only required for certain kernel operations;
wenzelm
parents:
42375
diff
changeset
|
61 |
| SOME c' => |
42389 | 62 |
error ("Duplicate class parameter " ^ quote x ^ " for " ^ Syntax.string_of_sort ctxt [c] ^ |
63 |
(if c = c' then "" else " and " ^ Syntax.string_of_sort ctxt [c']))); |
|
423 | 64 |
|
25597
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
65 |
|
19511 | 66 |
(* setup data *) |
19392 | 67 |
|
36329
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents:
36328
diff
changeset
|
68 |
datatype data = Data of |
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents:
36328
diff
changeset
|
69 |
{axclasses: info Symtab.table, |
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents:
36328
diff
changeset
|
70 |
params: param list, |
70475
98b6da301e13
backed out changeset 1b8858f4c393: odd problems e.g. in CAVA_LTL_Modelchecker;
wenzelm
parents:
70469
diff
changeset
|
71 |
(*arity theorems with theory name*) |
36329
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents:
36328
diff
changeset
|
72 |
inst_params: |
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents:
36328
diff
changeset
|
73 |
(string * thm) Symtab.table Symtab.table * |
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents:
36328
diff
changeset
|
74 |
(*constant name ~> type constructor ~> (constant name, equation)*) |
50764
2bbc7ae80634
more precise and complete transitive closure of proven_classrel, using existing Sorts.classes_of which is already closed;
wenzelm
parents:
50760
diff
changeset
|
75 |
(string * string) Symtab.table (*constant name ~> (constant name, type constructor)*)}; |
36329
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents:
36328
diff
changeset
|
76 |
|
70475
98b6da301e13
backed out changeset 1b8858f4c393: odd problems e.g. in CAVA_LTL_Modelchecker;
wenzelm
parents:
70469
diff
changeset
|
77 |
fun make_data (axclasses, params, inst_params) = |
98b6da301e13
backed out changeset 1b8858f4c393: odd problems e.g. in CAVA_LTL_Modelchecker;
wenzelm
parents:
70469
diff
changeset
|
78 |
Data {axclasses = axclasses, params = params, inst_params = inst_params}; |
36329
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents:
36328
diff
changeset
|
79 |
|
61262
7bd1eb4b056e
tuned signature: eliminated pointless type Context.pretty;
wenzelm
parents:
61256
diff
changeset
|
80 |
structure Data = Theory_Data' |
22846 | 81 |
( |
36329
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents:
36328
diff
changeset
|
82 |
type T = data; |
70475
98b6da301e13
backed out changeset 1b8858f4c393: odd problems e.g. in CAVA_LTL_Modelchecker;
wenzelm
parents:
70469
diff
changeset
|
83 |
val empty = make_data (Symtab.empty, [], (Symtab.empty, Symtab.empty)); |
19574 | 84 |
val extend = I; |
61262
7bd1eb4b056e
tuned signature: eliminated pointless type Context.pretty;
wenzelm
parents:
61256
diff
changeset
|
85 |
fun merge old_thys |
70475
98b6da301e13
backed out changeset 1b8858f4c393: odd problems e.g. in CAVA_LTL_Modelchecker;
wenzelm
parents:
70469
diff
changeset
|
86 |
(Data {axclasses = axclasses1, params = params1, inst_params = inst_params1}, |
98b6da301e13
backed out changeset 1b8858f4c393: odd problems e.g. in CAVA_LTL_Modelchecker;
wenzelm
parents:
70469
diff
changeset
|
87 |
Data {axclasses = axclasses2, params = params2, inst_params = inst_params2}) = |
36325 | 88 |
let |
61262
7bd1eb4b056e
tuned signature: eliminated pointless type Context.pretty;
wenzelm
parents:
61256
diff
changeset
|
89 |
val old_ctxt = Syntax.init_pretty_global (fst old_thys); |
42389 | 90 |
|
36329
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents:
36328
diff
changeset
|
91 |
val axclasses' = Symtab.merge (K true) (axclasses1, axclasses2); |
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents:
36328
diff
changeset
|
92 |
val params' = |
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents:
36328
diff
changeset
|
93 |
if null params1 then params2 |
42389 | 94 |
else |
61262
7bd1eb4b056e
tuned signature: eliminated pointless type Context.pretty;
wenzelm
parents:
61256
diff
changeset
|
95 |
fold_rev (fn p => if member (op =) params1 p then I else add_param old_ctxt p) |
42389 | 96 |
params2 params1; |
70475
98b6da301e13
backed out changeset 1b8858f4c393: odd problems e.g. in CAVA_LTL_Modelchecker;
wenzelm
parents:
70469
diff
changeset
|
97 |
|
36329
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents:
36328
diff
changeset
|
98 |
val inst_params' = |
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents:
36328
diff
changeset
|
99 |
(Symtab.join (K (Symtab.merge (K true))) (#1 inst_params1, #1 inst_params2), |
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents:
36328
diff
changeset
|
100 |
Symtab.merge (K true) (#2 inst_params1, #2 inst_params2)); |
70475
98b6da301e13
backed out changeset 1b8858f4c393: odd problems e.g. in CAVA_LTL_Modelchecker;
wenzelm
parents:
70469
diff
changeset
|
101 |
in make_data (axclasses', params', inst_params') end; |
22846 | 102 |
); |
6379 | 103 |
|
36329
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents:
36328
diff
changeset
|
104 |
fun map_data f = |
70475
98b6da301e13
backed out changeset 1b8858f4c393: odd problems e.g. in CAVA_LTL_Modelchecker;
wenzelm
parents:
70469
diff
changeset
|
105 |
Data.map (fn Data {axclasses, params, inst_params} => |
98b6da301e13
backed out changeset 1b8858f4c393: odd problems e.g. in CAVA_LTL_Modelchecker;
wenzelm
parents:
70469
diff
changeset
|
106 |
make_data (f (axclasses, params, inst_params))); |
36329
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents:
36328
diff
changeset
|
107 |
|
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents:
36328
diff
changeset
|
108 |
fun map_axclasses f = |
70475
98b6da301e13
backed out changeset 1b8858f4c393: odd problems e.g. in CAVA_LTL_Modelchecker;
wenzelm
parents:
70469
diff
changeset
|
109 |
map_data (fn (axclasses, params, inst_params) => |
98b6da301e13
backed out changeset 1b8858f4c393: odd problems e.g. in CAVA_LTL_Modelchecker;
wenzelm
parents:
70469
diff
changeset
|
110 |
(f axclasses, params, inst_params)); |
36329
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents:
36328
diff
changeset
|
111 |
|
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents:
36328
diff
changeset
|
112 |
fun map_params f = |
70475
98b6da301e13
backed out changeset 1b8858f4c393: odd problems e.g. in CAVA_LTL_Modelchecker;
wenzelm
parents:
70469
diff
changeset
|
113 |
map_data (fn (axclasses, params, inst_params) => |
98b6da301e13
backed out changeset 1b8858f4c393: odd problems e.g. in CAVA_LTL_Modelchecker;
wenzelm
parents:
70469
diff
changeset
|
114 |
(axclasses, f params, inst_params)); |
36329
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents:
36328
diff
changeset
|
115 |
|
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents:
36328
diff
changeset
|
116 |
fun map_inst_params f = |
70475
98b6da301e13
backed out changeset 1b8858f4c393: odd problems e.g. in CAVA_LTL_Modelchecker;
wenzelm
parents:
70469
diff
changeset
|
117 |
map_data (fn (axclasses, params, inst_params) => |
98b6da301e13
backed out changeset 1b8858f4c393: odd problems e.g. in CAVA_LTL_Modelchecker;
wenzelm
parents:
70469
diff
changeset
|
118 |
(axclasses, params, f inst_params)); |
36329
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents:
36328
diff
changeset
|
119 |
|
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents:
36328
diff
changeset
|
120 |
val rep_data = Data.get #> (fn Data args => args); |
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents:
36328
diff
changeset
|
121 |
|
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents:
36328
diff
changeset
|
122 |
val axclasses_of = #axclasses o rep_data; |
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents:
36328
diff
changeset
|
123 |
val params_of = #params o rep_data; |
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents:
36328
diff
changeset
|
124 |
val inst_params_of = #inst_params o rep_data; |
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents:
36328
diff
changeset
|
125 |
|
6379 | 126 |
|
36346 | 127 |
(* axclasses with parameters *) |
19392 | 128 |
|
24929
408becab067e
renamed AxClass.get_definition to AxClass.get_info (again);
wenzelm
parents:
24920
diff
changeset
|
129 |
fun get_info thy c = |
36329
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents:
36328
diff
changeset
|
130 |
(case Symtab.lookup (axclasses_of thy) c of |
67628 | 131 |
SOME {def, intro, axioms, params} => |
132 |
{def = Thm.transfer thy def, |
|
133 |
intro = Thm.transfer thy intro, |
|
134 |
axioms = map (Thm.transfer thy) axioms, |
|
135 |
params = params} |
|
21919 | 136 |
| NONE => error ("No such axclass: " ^ quote c)); |
6379 | 137 |
|
36327 | 138 |
fun all_params_of thy S = |
36329
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents:
36328
diff
changeset
|
139 |
let val params = params_of thy; |
36327 | 140 |
in fold (fn (x, c) => if Sign.subsort thy (S, [c]) then cons x else I) params [] end; |
19460 | 141 |
|
36329
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents:
36328
diff
changeset
|
142 |
fun class_of_param thy = AList.lookup (op =) (params_of thy); |
19460 | 143 |
|
21919 | 144 |
|
25597
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
145 |
(* maintain instance parameters *) |
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
146 |
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
147 |
fun get_inst_param thy (c, tyco) = |
36329
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents:
36328
diff
changeset
|
148 |
(case Symtab.lookup (the_default Symtab.empty (Symtab.lookup (#1 (inst_params_of thy)) c)) tyco of |
67628 | 149 |
SOME (a, th) => (a, Thm.transfer thy th) |
36327 | 150 |
| NONE => error ("No instance parameter for constant " ^ quote c ^ " on type " ^ quote tyco)); |
25597
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
151 |
|
67628 | 152 |
fun add_inst_param (c, tyco) (a, th) = |
153 |
(map_inst_params o apfst o Symtab.map_default (c, Symtab.empty)) |
|
154 |
(Symtab.update_new (tyco, (a, Thm.trim_context th))) |
|
155 |
#> (map_inst_params o apsnd) (Symtab.update_new (a, (c, tyco))); |
|
25597
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
156 |
|
36329
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents:
36328
diff
changeset
|
157 |
val inst_of_param = Symtab.lookup o #2 o inst_params_of; |
36417 | 158 |
val param_of_inst = #1 oo get_inst_param; |
25597
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
159 |
|
63073
413184c7a2a2
clarified context, notably for internal use of Simplifier;
wenzelm
parents:
62897
diff
changeset
|
160 |
fun inst_thms ctxt = |
413184c7a2a2
clarified context, notably for internal use of Simplifier;
wenzelm
parents:
62897
diff
changeset
|
161 |
Symtab.fold |
413184c7a2a2
clarified context, notably for internal use of Simplifier;
wenzelm
parents:
62897
diff
changeset
|
162 |
(Symtab.fold (cons o #2 o #2) o #2) (#1 (inst_params_of (Proof_Context.theory_of ctxt))) []; |
25597
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
163 |
|
36417 | 164 |
fun get_inst_tyco consts = try (#1 o dest_Type o the_single o Consts.typargs consts); |
25597
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
165 |
|
63073
413184c7a2a2
clarified context, notably for internal use of Simplifier;
wenzelm
parents:
62897
diff
changeset
|
166 |
fun unoverload ctxt = rewrite_rule ctxt (inst_thms ctxt); |
413184c7a2a2
clarified context, notably for internal use of Simplifier;
wenzelm
parents:
62897
diff
changeset
|
167 |
fun overload ctxt = rewrite_rule ctxt (map Thm.symmetric (inst_thms ctxt)); |
25597
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
168 |
|
63073
413184c7a2a2
clarified context, notably for internal use of Simplifier;
wenzelm
parents:
62897
diff
changeset
|
169 |
fun unoverload_conv ctxt = Raw_Simplifier.rewrite ctxt true (inst_thms ctxt); |
413184c7a2a2
clarified context, notably for internal use of Simplifier;
wenzelm
parents:
62897
diff
changeset
|
170 |
fun overload_conv ctxt = Raw_Simplifier.rewrite ctxt true (map Thm.symmetric (inst_thms ctxt)); |
25597
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
171 |
|
36327 | 172 |
fun lookup_inst_param consts params (c, T) = |
173 |
(case get_inst_tyco consts (c, T) of |
|
174 |
SOME tyco => AList.lookup (op =) params (c, tyco) |
|
175 |
| NONE => NONE); |
|
31249 | 176 |
|
25597
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
177 |
fun unoverload_const thy (c_ty as (c, _)) = |
36327 | 178 |
if is_some (class_of_param thy c) then |
179 |
(case get_inst_tyco (Sign.consts_of thy) c_ty of |
|
180 |
SOME tyco => try (param_of_inst thy) (c, tyco) |> the_default c |
|
181 |
| NONE => c) |
|
33969 | 182 |
else c; |
25597
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
183 |
|
404
dd3d3d6467db
axiomatic type class 'package' for Pure (alpha version);
wenzelm
parents:
diff
changeset
|
184 |
|
36327 | 185 |
|
19511 | 186 |
(** instances **) |
19418
03b01c9314fc
reworded add_axclass(_i): canonical specification format,
wenzelm
parents:
19405
diff
changeset
|
187 |
|
70456
c742527a25fe
clarified modules: inference kernel maintains sort algebra within the logic;
wenzelm
parents:
70455
diff
changeset
|
188 |
val classrel_prefix = "classrel_"; |
c742527a25fe
clarified modules: inference kernel maintains sort algebra within the logic;
wenzelm
parents:
70455
diff
changeset
|
189 |
val arity_prefix = "arity_"; |
c742527a25fe
clarified modules: inference kernel maintains sort algebra within the logic;
wenzelm
parents:
70455
diff
changeset
|
190 |
|
c742527a25fe
clarified modules: inference kernel maintains sort algebra within the logic;
wenzelm
parents:
70455
diff
changeset
|
191 |
fun instance_name (a, c) = Long_Name.base_name c ^ "_" ^ Long_Name.base_name a; |
c742527a25fe
clarified modules: inference kernel maintains sort algebra within the logic;
wenzelm
parents:
70455
diff
changeset
|
192 |
|
c742527a25fe
clarified modules: inference kernel maintains sort algebra within the logic;
wenzelm
parents:
70455
diff
changeset
|
193 |
|
19418
03b01c9314fc
reworded add_axclass(_i): canonical specification format,
wenzelm
parents:
19405
diff
changeset
|
194 |
(* class relations *) |
03b01c9314fc
reworded add_axclass(_i): canonical specification format,
wenzelm
parents:
19405
diff
changeset
|
195 |
|
19405 | 196 |
fun cert_classrel thy raw_rel = |
15876
a67343c6ab2a
sane interfaces for tactical instance proofs (do not expand defs of theory, proper handling of sort instances);
wenzelm
parents:
15853
diff
changeset
|
197 |
let |
26939
1035c89b4c02
moved global pretty/string_of functions from Sign to Syntax;
wenzelm
parents:
26516
diff
changeset
|
198 |
val string_of_sort = Syntax.string_of_sort_global thy; |
59058
a78612c67ec0
renamed "pairself" to "apply2", in accordance to @{apply 2};
wenzelm
parents:
56941
diff
changeset
|
199 |
val (c1, c2) = apply2 (Sign.certify_class thy) raw_rel; |
52788 | 200 |
val _ = Sign.primitive_classrel (c1, c2) thy; |
19405 | 201 |
val _ = |
19460 | 202 |
(case subtract (op =) (all_params_of thy [c1]) (all_params_of thy [c2]) of |
19405 | 203 |
[] => () |
26939
1035c89b4c02
moved global pretty/string_of functions from Sign to Syntax;
wenzelm
parents:
26516
diff
changeset
|
204 |
| xs => raise TYPE ("Class " ^ string_of_sort [c1] ^ " lacks parameter(s) " ^ |
1035c89b4c02
moved global pretty/string_of functions from Sign to Syntax;
wenzelm
parents:
26516
diff
changeset
|
205 |
commas_quote xs ^ " of " ^ string_of_sort [c2], [], [])); |
19405 | 206 |
in (c1, c2) end; |
207 |
||
208 |
fun read_classrel thy raw_rel = |
|
59058
a78612c67ec0
renamed "pairself" to "apply2", in accordance to @{apply 2};
wenzelm
parents:
56941
diff
changeset
|
209 |
cert_classrel thy (apply2 (Proof_Context.read_class (Proof_Context.init_global thy)) raw_rel) |
19405 | 210 |
handle TYPE (msg, _, _) => error msg; |
211 |
||
212 |
||
25597
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
213 |
(* declaration and definition of instances of overloaded constants *) |
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
214 |
|
35201
c2ddb9395436
axclass: more precise treatment of naming vs. binding;
wenzelm
parents:
35021
diff
changeset
|
215 |
fun inst_tyco_of thy (c, T) = |
c2ddb9395436
axclass: more precise treatment of naming vs. binding;
wenzelm
parents:
35021
diff
changeset
|
216 |
(case get_inst_tyco (Sign.consts_of thy) (c, T) of |
c2ddb9395436
axclass: more precise treatment of naming vs. binding;
wenzelm
parents:
35021
diff
changeset
|
217 |
SOME tyco => tyco |
c2ddb9395436
axclass: more precise treatment of naming vs. binding;
wenzelm
parents:
35021
diff
changeset
|
218 |
| NONE => error ("Illegal type for instantiation of class parameter: " ^ |
c2ddb9395436
axclass: more precise treatment of naming vs. binding;
wenzelm
parents:
35021
diff
changeset
|
219 |
quote (c ^ " :: " ^ Syntax.string_of_typ_global thy T))); |
31249 | 220 |
|
25597
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
221 |
fun declare_overloaded (c, T) thy = |
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
222 |
let |
35201
c2ddb9395436
axclass: more precise treatment of naming vs. binding;
wenzelm
parents:
35021
diff
changeset
|
223 |
val class = |
c2ddb9395436
axclass: more precise treatment of naming vs. binding;
wenzelm
parents:
35021
diff
changeset
|
224 |
(case class_of_param thy c of |
c2ddb9395436
axclass: more precise treatment of naming vs. binding;
wenzelm
parents:
35021
diff
changeset
|
225 |
SOME class => class |
c2ddb9395436
axclass: more precise treatment of naming vs. binding;
wenzelm
parents:
35021
diff
changeset
|
226 |
| NONE => error ("Not a class parameter: " ^ quote c)); |
31249 | 227 |
val tyco = inst_tyco_of thy (c, T); |
25597
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
228 |
val name_inst = instance_name (tyco, class) ^ "_inst"; |
36417 | 229 |
val c' = instance_name (tyco, c); |
25597
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
230 |
val T' = Type.strip_sorts T; |
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
231 |
in |
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
232 |
thy |
35201
c2ddb9395436
axclass: more precise treatment of naming vs. binding;
wenzelm
parents:
35021
diff
changeset
|
233 |
|> Sign.qualified_path true (Binding.name name_inst) |
42375
774df7c59508
report Name_Space.declare/define, relatively to context;
wenzelm
parents:
42360
diff
changeset
|
234 |
|> Sign.declare_const_global ((Binding.name c', T'), NoSyn) |
30344
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
wenzelm
parents:
30280
diff
changeset
|
235 |
|-> (fn const' as Const (c'', _) => |
42375
774df7c59508
report Name_Space.declare/define, relatively to context;
wenzelm
parents:
42360
diff
changeset
|
236 |
Thm.add_def_global false true |
30344
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
wenzelm
parents:
30280
diff
changeset
|
237 |
(Binding.name (Thm.def_name c'), Logic.mk_equals (Const (c, T'), const')) |
36106
19deea200358
Thm.add_axiom/add_def: return internal name of foundational axiom;
wenzelm
parents:
35961
diff
changeset
|
238 |
#>> apsnd Thm.varifyT_global |
19deea200358
Thm.add_axiom/add_def: return internal name of foundational axiom;
wenzelm
parents:
35961
diff
changeset
|
239 |
#-> (fn (_, thm) => add_inst_param (c, tyco) (c'', thm) |
59859 | 240 |
#> Global_Theory.add_thm ((Binding.concealed (Binding.name c'), thm), []) |
36417 | 241 |
#> #2 |
36106
19deea200358
Thm.add_axiom/add_def: return internal name of foundational axiom;
wenzelm
parents:
35961
diff
changeset
|
242 |
#> pair (Const (c, T)))) |
35201
c2ddb9395436
axclass: more precise treatment of naming vs. binding;
wenzelm
parents:
35021
diff
changeset
|
243 |
||> Sign.restore_naming thy |
25597
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
244 |
end; |
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
245 |
|
30519
c05c0199826f
coherent binding policy with primitive target operations
haftmann
parents:
30469
diff
changeset
|
246 |
fun define_overloaded b (c, t) thy = |
25597
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
247 |
let |
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
248 |
val T = Term.fastype_of t; |
31249 | 249 |
val tyco = inst_tyco_of thy (c, T); |
25597
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
250 |
val (c', eq) = get_inst_param thy (c, tyco); |
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
251 |
val prop = Logic.mk_equals (Const (c', T), t); |
36417 | 252 |
val b' = Thm.def_binding_optional (Binding.name (instance_name (tyco, c))) b; |
25597
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
253 |
in |
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
254 |
thy |
42375
774df7c59508
report Name_Space.declare/define, relatively to context;
wenzelm
parents:
42360
diff
changeset
|
255 |
|> Thm.add_def_global false false (b', prop) |
38383 | 256 |
|>> (fn (_, thm) => Drule.transitive_thm OF [eq, thm]) |
25597
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
257 |
end; |
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
258 |
|
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25486
diff
changeset
|
259 |
|
30951
a6e26a248f03
formal declaration of undefined parameters after class instantiation
haftmann
parents:
30519
diff
changeset
|
260 |
(* primitive rules *) |
a6e26a248f03
formal declaration of undefined parameters after class instantiation
haftmann
parents:
30519
diff
changeset
|
261 |
|
37249 | 262 |
fun add_classrel raw_th thy = |
30951
a6e26a248f03
formal declaration of undefined parameters after class instantiation
haftmann
parents:
30519
diff
changeset
|
263 |
let |
31948
ea8c8bf47ce3
add_classrel/arity: strip_shyps of stored result;
wenzelm
parents:
31944
diff
changeset
|
264 |
val th = Thm.strip_shyps (Thm.transfer thy raw_th); |
ea8c8bf47ce3
add_classrel/arity: strip_shyps of stored result;
wenzelm
parents:
31944
diff
changeset
|
265 |
val prop = Thm.plain_prop_of th; |
30951
a6e26a248f03
formal declaration of undefined parameters after class instantiation
haftmann
parents:
30519
diff
changeset
|
266 |
fun err () = raise THM ("add_classrel: malformed class relation", 0, [th]); |
a6e26a248f03
formal declaration of undefined parameters after class instantiation
haftmann
parents:
30519
diff
changeset
|
267 |
val rel = Logic.dest_classrel prop handle TERM _ => err (); |
a6e26a248f03
formal declaration of undefined parameters after class instantiation
haftmann
parents:
30519
diff
changeset
|
268 |
val (c1, c2) = cert_classrel thy rel handle TYPE _ => err (); |
56144
27167f903c6d
conceal somewhat obscure internal facts, e.g. relevant for 'print_theorems', 'find_theorems';
wenzelm
parents:
55385
diff
changeset
|
269 |
val binding = |
59859 | 270 |
Binding.concealed (Binding.name (prefix classrel_prefix (Logic.name_classrel (c1, c2)))); |
70456
c742527a25fe
clarified modules: inference kernel maintains sort algebra within the logic;
wenzelm
parents:
70455
diff
changeset
|
271 |
in thy |> Global_Theory.store_thm (binding, th) |-> Thm.add_classrel end; |
30951
a6e26a248f03
formal declaration of undefined parameters after class instantiation
haftmann
parents:
30519
diff
changeset
|
272 |
|
37249 | 273 |
fun add_arity raw_th thy = |
30951
a6e26a248f03
formal declaration of undefined parameters after class instantiation
haftmann
parents:
30519
diff
changeset
|
274 |
let |
31948
ea8c8bf47ce3
add_classrel/arity: strip_shyps of stored result;
wenzelm
parents:
31944
diff
changeset
|
275 |
val th = Thm.strip_shyps (Thm.transfer thy raw_th); |
ea8c8bf47ce3
add_classrel/arity: strip_shyps of stored result;
wenzelm
parents:
31944
diff
changeset
|
276 |
val prop = Thm.plain_prop_of th; |
30951
a6e26a248f03
formal declaration of undefined parameters after class instantiation
haftmann
parents:
30519
diff
changeset
|
277 |
fun err () = raise THM ("add_arity: malformed type arity", 0, [th]); |
37232
c10fb22a5e0c
classrel and arity theorems are now stored under proper name in theory. add_arity and
berghofe
parents:
36935
diff
changeset
|
278 |
val arity as (t, Ss, c) = Logic.dest_arity prop handle TERM _ => err (); |
c10fb22a5e0c
classrel and arity theorems are now stored under proper name in theory. add_arity and
berghofe
parents:
36935
diff
changeset
|
279 |
|
56144
27167f903c6d
conceal somewhat obscure internal facts, e.g. relevant for 'print_theorems', 'find_theorems';
wenzelm
parents:
55385
diff
changeset
|
280 |
val binding = |
59859 | 281 |
Binding.concealed (Binding.name (prefix arity_prefix (Logic.name_arity arity))); |
36417 | 282 |
|
43329
84472e198515
tuned signature: Name.invent and Name.invent_names;
wenzelm
parents:
42389
diff
changeset
|
283 |
val args = Name.invent_names Name.context Name.aT Ss; |
70456
c742527a25fe
clarified modules: inference kernel maintains sort algebra within the logic;
wenzelm
parents:
70455
diff
changeset
|
284 |
val missing_params = |
c742527a25fe
clarified modules: inference kernel maintains sort algebra within the logic;
wenzelm
parents:
70455
diff
changeset
|
285 |
Sign.complete_sort thy [c] |
c742527a25fe
clarified modules: inference kernel maintains sort algebra within the logic;
wenzelm
parents:
70455
diff
changeset
|
286 |
|> maps (these o Option.map #params o try (get_info thy)) |
c742527a25fe
clarified modules: inference kernel maintains sort algebra within the logic;
wenzelm
parents:
70455
diff
changeset
|
287 |
|> filter_out (fn (const, _) => can (get_inst_param thy) (const, t)) |
c742527a25fe
clarified modules: inference kernel maintains sort algebra within the logic;
wenzelm
parents:
70455
diff
changeset
|
288 |
|> (map o apsnd o map_atyps) (K (Type (t, map TFree args))); |
30951
a6e26a248f03
formal declaration of undefined parameters after class instantiation
haftmann
parents:
30519
diff
changeset
|
289 |
in |
70456
c742527a25fe
clarified modules: inference kernel maintains sort algebra within the logic;
wenzelm
parents:
70455
diff
changeset
|
290 |
thy |
c742527a25fe
clarified modules: inference kernel maintains sort algebra within the logic;
wenzelm
parents:
70455
diff
changeset
|
291 |
|> Global_Theory.store_thm (binding, th) |
c742527a25fe
clarified modules: inference kernel maintains sort algebra within the logic;
wenzelm
parents:
70455
diff
changeset
|
292 |
|-> Thm.add_arity |
36417 | 293 |
|> fold (#2 oo declare_overloaded) missing_params |
30951
a6e26a248f03
formal declaration of undefined parameters after class instantiation
haftmann
parents:
30519
diff
changeset
|
294 |
end; |
a6e26a248f03
formal declaration of undefined parameters after class instantiation
haftmann
parents:
30519
diff
changeset
|
295 |
|
a6e26a248f03
formal declaration of undefined parameters after class instantiation
haftmann
parents:
30519
diff
changeset
|
296 |
|
a6e26a248f03
formal declaration of undefined parameters after class instantiation
haftmann
parents:
30519
diff
changeset
|
297 |
(* tactical proofs *) |
a6e26a248f03
formal declaration of undefined parameters after class instantiation
haftmann
parents:
30519
diff
changeset
|
298 |
|
a6e26a248f03
formal declaration of undefined parameters after class instantiation
haftmann
parents:
30519
diff
changeset
|
299 |
fun prove_classrel raw_rel tac thy = |
a6e26a248f03
formal declaration of undefined parameters after class instantiation
haftmann
parents:
30519
diff
changeset
|
300 |
let |
42360 | 301 |
val ctxt = Proof_Context.init_global thy; |
30951
a6e26a248f03
formal declaration of undefined parameters after class instantiation
haftmann
parents:
30519
diff
changeset
|
302 |
val (c1, c2) = cert_classrel thy raw_rel; |
51671 | 303 |
val th = |
304 |
Goal.prove ctxt [] [] (Logic.mk_classrel (c1, c2)) (fn {context, ...} => tac context) |
|
305 |
handle ERROR msg => |
|
306 |
cat_error msg ("The error(s) above occurred while trying to prove class relation " ^ |
|
307 |
quote (Syntax.string_of_classrel ctxt [c1, c2])); |
|
30951
a6e26a248f03
formal declaration of undefined parameters after class instantiation
haftmann
parents:
30519
diff
changeset
|
308 |
in |
37249 | 309 |
thy |> add_classrel th |
30951
a6e26a248f03
formal declaration of undefined parameters after class instantiation
haftmann
parents:
30519
diff
changeset
|
310 |
end; |
a6e26a248f03
formal declaration of undefined parameters after class instantiation
haftmann
parents:
30519
diff
changeset
|
311 |
|
a6e26a248f03
formal declaration of undefined parameters after class instantiation
haftmann
parents:
30519
diff
changeset
|
312 |
fun prove_arity raw_arity tac thy = |
a6e26a248f03
formal declaration of undefined parameters after class instantiation
haftmann
parents:
30519
diff
changeset
|
313 |
let |
42360 | 314 |
val ctxt = Proof_Context.init_global thy; |
315 |
val arity = Proof_Context.cert_arity ctxt raw_arity; |
|
30951
a6e26a248f03
formal declaration of undefined parameters after class instantiation
haftmann
parents:
30519
diff
changeset
|
316 |
val props = Logic.mk_arities arity; |
51671 | 317 |
val ths = |
59564
fdc03c8daacc
Goal.prove_multi is superseded by the fully general Goal.prove_common;
wenzelm
parents:
59058
diff
changeset
|
318 |
Goal.prove_common ctxt NONE [] [] props |
51671 | 319 |
(fn {context, ...} => Goal.precise_conjunction_tac (length props) 1 THEN tac context) |
320 |
handle ERROR msg => |
|
321 |
cat_error msg ("The error(s) above occurred while trying to prove type arity " ^ |
|
322 |
quote (Syntax.string_of_arity ctxt arity)); |
|
30951
a6e26a248f03
formal declaration of undefined parameters after class instantiation
haftmann
parents:
30519
diff
changeset
|
323 |
in |
37249 | 324 |
thy |> fold add_arity ths |
30951
a6e26a248f03
formal declaration of undefined parameters after class instantiation
haftmann
parents:
30519
diff
changeset
|
325 |
end; |
a6e26a248f03
formal declaration of undefined parameters after class instantiation
haftmann
parents:
30519
diff
changeset
|
326 |
|
a6e26a248f03
formal declaration of undefined parameters after class instantiation
haftmann
parents:
30519
diff
changeset
|
327 |
|
19511 | 328 |
|
329 |
(** class definitions **) |
|
330 |
||
23421 | 331 |
fun split_defined n eq = |
332 |
let |
|
333 |
val intro = |
|
334 |
(eq RS Drule.equal_elim_rule2) |
|
335 |
|> Conjunction.curry_balanced n |
|
336 |
|> n = 0 ? Thm.eq_assumption 1; |
|
337 |
val dests = |
|
338 |
if n = 0 then [] |
|
339 |
else |
|
340 |
(eq RS Drule.equal_elim_rule1) |
|
32765 | 341 |
|> Balanced_Tree.dest (fn th => |
23421 | 342 |
(th RS Conjunction.conjunctionD1, th RS Conjunction.conjunctionD2)) n; |
343 |
in (intro, dests) end; |
|
344 |
||
24964 | 345 |
fun define_class (bclass, raw_super) raw_params raw_specs thy = |
19511 | 346 |
let |
39133
70d3915c92f0
pretty printing: prefer regular Proof.context over Pretty.pp, which is mostly for special bootstrap purposes involving theory merge, for example;
wenzelm
parents:
38383
diff
changeset
|
347 |
val ctxt = Syntax.init_pretty_global thy; |
19511 | 348 |
|
349 |
||
24964 | 350 |
(* class *) |
19511 | 351 |
|
30344
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
wenzelm
parents:
30280
diff
changeset
|
352 |
val bconst = Binding.map_name Logic.const_of_class bclass; |
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
wenzelm
parents:
30280
diff
changeset
|
353 |
val class = Sign.full_name thy bclass; |
24731 | 354 |
val super = Sign.minimize_sort thy (Sign.certify_sort thy raw_super); |
19511 | 355 |
|
24964 | 356 |
fun check_constraint (a, S) = |
357 |
if Sign.subsort thy (super, S) then () |
|
358 |
else error ("Sort constraint of type variable " ^ |
|
39134
917b4b6ba3d2
turned show_sorts/show_types into proper configuration options;
wenzelm
parents:
39133
diff
changeset
|
359 |
Syntax.string_of_typ (Config.put show_sorts true ctxt) (TFree (a, S)) ^ |
39133
70d3915c92f0
pretty printing: prefer regular Proof.context over Pretty.pp, which is mostly for special bootstrap purposes involving theory merge, for example;
wenzelm
parents:
38383
diff
changeset
|
360 |
" needs to be weaker than " ^ Syntax.string_of_sort ctxt super); |
24964 | 361 |
|
362 |
||
363 |
(* params *) |
|
364 |
||
365 |
val params = raw_params |> map (fn p => |
|
366 |
let |
|
367 |
val T = Sign.the_const_type thy p; |
|
368 |
val _ = |
|
369 |
(case Term.add_tvarsT T [] of |
|
370 |
[((a, _), S)] => check_constraint (a, S) |
|
371 |
| _ => error ("Exactly one type variable expected in class parameter " ^ quote p)); |
|
70387 | 372 |
val T' = Term.map_type_tvar (K (Term.aT [class])) T; |
24964 | 373 |
in (p, T') end); |
374 |
||
375 |
||
376 |
(* axioms *) |
|
377 |
||
19511 | 378 |
fun prep_axiom t = |
379 |
(case Term.add_tfrees t [] of |
|
24964 | 380 |
[(a, S)] => check_constraint (a, S) |
381 |
| [] => () |
|
39133
70d3915c92f0
pretty printing: prefer regular Proof.context over Pretty.pp, which is mostly for special bootstrap purposes involving theory merge, for example;
wenzelm
parents:
38383
diff
changeset
|
382 |
| _ => error ("Multiple type variables in class axiom:\n" ^ Syntax.string_of_term ctxt t); |
24964 | 383 |
t |
384 |
|> Term.map_types (Term.map_atyps (fn TFree _ => Term.aT [] | U => U)) |
|
385 |
|> Logic.close_form); |
|
19511 | 386 |
|
24681 | 387 |
val axiomss = map (map (prep_axiom o Sign.cert_prop thy) o snd) raw_specs; |
22745 | 388 |
val name_atts = map fst raw_specs; |
19511 | 389 |
|
390 |
||
391 |
(* definition *) |
|
392 |
||
35854 | 393 |
val conjs = Logic.mk_of_sort (Term.aT [], super) @ flat axiomss; |
19511 | 394 |
val class_eq = |
31943
5e960a0780a2
renamed inclass/Inclass to of_class/OfClass, in accordance to of_sort;
wenzelm
parents:
31904
diff
changeset
|
395 |
Logic.mk_equals (Logic.mk_of_class (Term.aT [], class), Logic.mk_conjunction_balanced conjs); |
19511 | 396 |
|
397 |
val ([def], def_thy) = |
|
398 |
thy |
|
399 |
|> Sign.primitive_class (bclass, super) |
|
39557
fe5722fce758
renamed structure PureThy to Pure_Thy and moved most content to Global_Theory, to emphasize that this is global-only;
wenzelm
parents:
39134
diff
changeset
|
400 |
|> Global_Theory.add_defs false [((Thm.def_binding bconst, class_eq), [])]; |
19511 | 401 |
val (raw_intro, (raw_classrel, raw_axioms)) = |
23421 | 402 |
split_defined (length conjs) def ||> chop (length super); |
19392 | 403 |
|
19418
03b01c9314fc
reworded add_axclass(_i): canonical specification format,
wenzelm
parents:
19405
diff
changeset
|
404 |
|
19511 | 405 |
(* facts *) |
406 |
||
407 |
val class_triv = Thm.class_triv def_thy class; |
|
408 |
val ([(_, [intro]), (_, classrel), (_, axioms)], facts_thy) = |
|
409 |
def_thy |
|
35201
c2ddb9395436
axclass: more precise treatment of naming vs. binding;
wenzelm
parents:
35021
diff
changeset
|
410 |
|> Sign.qualified_path true bconst |
39557
fe5722fce758
renamed structure PureThy to Pure_Thy and moved most content to Global_Theory, to emphasize that this is global-only;
wenzelm
parents:
39134
diff
changeset
|
411 |
|> Global_Theory.note_thmss "" |
36326 | 412 |
[((Binding.name "intro", []), [([Drule.export_without_context raw_intro], [])]), |
413 |
((Binding.name "super", []), [(map Drule.export_without_context raw_classrel, [])]), |
|
414 |
((Binding.name "axioms", []), |
|
35021
c839a4c670c6
renamed old-style Drule.standard to Drule.export_without_context, to emphasize that this is in no way a standard operation;
wenzelm
parents:
34259
diff
changeset
|
415 |
[(map (fn th => Drule.export_without_context (class_triv RS th)) raw_axioms, [])])] |
27691
ce171cbd4b93
PureThy: dropped note_thmss_qualified, dropped _i suffix
haftmann
parents:
27683
diff
changeset
|
416 |
||> Sign.restore_naming def_thy; |
19511 | 417 |
|
24847 | 418 |
|
19511 | 419 |
(* result *) |
420 |
||
67628 | 421 |
val axclass = |
422 |
make_axclass |
|
423 |
(Thm.trim_context def, Thm.trim_context intro, map Thm.trim_context axioms, params); |
|
70456
c742527a25fe
clarified modules: inference kernel maintains sort algebra within the logic;
wenzelm
parents:
70455
diff
changeset
|
424 |
|
19511 | 425 |
val result_thy = |
426 |
facts_thy |
|
70456
c742527a25fe
clarified modules: inference kernel maintains sort algebra within the logic;
wenzelm
parents:
70455
diff
changeset
|
427 |
|> fold (fn th => Thm.add_classrel (class_triv RS th)) classrel |
35201
c2ddb9395436
axclass: more precise treatment of naming vs. binding;
wenzelm
parents:
35021
diff
changeset
|
428 |
|> Sign.qualified_path false bconst |
39557
fe5722fce758
renamed structure PureThy to Pure_Thy and moved most content to Global_Theory, to emphasize that this is global-only;
wenzelm
parents:
39134
diff
changeset
|
429 |
|> Global_Theory.note_thmss "" (name_atts ~~ map Thm.simple_fact (unflat axiomss axioms)) |
fe5722fce758
renamed structure PureThy to Pure_Thy and moved most content to Global_Theory, to emphasize that this is global-only;
wenzelm
parents:
39134
diff
changeset
|
430 |
|> #2 |
19511 | 431 |
|> Sign.restore_naming facts_thy |
36329
85004134055c
more systematic treatment of data -- avoid slightly odd nested tuples here;
wenzelm
parents:
36328
diff
changeset
|
432 |
|> map_axclasses (Symtab.update (class, axclass)) |
42389 | 433 |
|> map_params (fold (fn (x, _) => add_param ctxt (x, class)) params); |
19511 | 434 |
|
435 |
in (class, result_thy) end; |
|
436 |
||
437 |
||
19531 | 438 |
|
19511 | 439 |
(** axiomatizations **) |
440 |
||
441 |
local |
|
442 |
||
36417 | 443 |
(*old-style axioms*) |
56941
952833323c99
tuned signature to make axiomatizations more easy to spot in the source, via "add_axioms" or "axiomatization";
wenzelm
parents:
56144
diff
changeset
|
444 |
fun add_axioms prep mk name add raw_args thy = |
20628 | 445 |
let |
446 |
val args = prep thy raw_args; |
|
447 |
val specs = mk args; |
|
448 |
val names = name args; |
|
29579 | 449 |
in |
450 |
thy |
|
42375
774df7c59508
report Name_Space.declare/define, relatively to context;
wenzelm
parents:
42360
diff
changeset
|
451 |
|> fold_map Thm.add_axiom_global (map Binding.name names ~~ specs) |
37249 | 452 |
|-> fold (add o Drule.export_without_context o snd) |
29579 | 453 |
end; |
19511 | 454 |
|
61255
15865e0c5598
eliminated separate type Theory.dep: use typeargs uniformly for consts/types;
wenzelm
parents:
61247
diff
changeset
|
455 |
fun class_const_dep c = |
61256 | 456 |
((Defs.Const, Logic.const_of_class c), [Term.aT []]); |
61255
15865e0c5598
eliminated separate type Theory.dep: use typeargs uniformly for consts/types;
wenzelm
parents:
61247
diff
changeset
|
457 |
|
55385
169e12bbf9a3
discontinued axiomatic 'classes', 'classrel', 'arities';
wenzelm
parents:
54931
diff
changeset
|
458 |
in |
169e12bbf9a3
discontinued axiomatic 'classes', 'classrel', 'arities';
wenzelm
parents:
54931
diff
changeset
|
459 |
|
56941
952833323c99
tuned signature to make axiomatizations more easy to spot in the source, via "add_axioms" or "axiomatization";
wenzelm
parents:
56144
diff
changeset
|
460 |
val classrel_axiomatization = |
952833323c99
tuned signature to make axiomatizations more easy to spot in the source, via "add_axioms" or "axiomatization";
wenzelm
parents:
56144
diff
changeset
|
461 |
add_axioms (map o cert_classrel) (map Logic.mk_classrel) |
55385
169e12bbf9a3
discontinued axiomatic 'classes', 'classrel', 'arities';
wenzelm
parents:
54931
diff
changeset
|
462 |
(map (prefix classrel_prefix o Logic.name_classrel)) add_classrel; |
169e12bbf9a3
discontinued axiomatic 'classes', 'classrel', 'arities';
wenzelm
parents:
54931
diff
changeset
|
463 |
|
56941
952833323c99
tuned signature to make axiomatizations more easy to spot in the source, via "add_axioms" or "axiomatization";
wenzelm
parents:
56144
diff
changeset
|
464 |
val arity_axiomatization = |
952833323c99
tuned signature to make axiomatizations more easy to spot in the source, via "add_axioms" or "axiomatization";
wenzelm
parents:
56144
diff
changeset
|
465 |
add_axioms (Proof_Context.cert_arity o Proof_Context.init_global) Logic.mk_arities |
55385
169e12bbf9a3
discontinued axiomatic 'classes', 'classrel', 'arities';
wenzelm
parents:
54931
diff
changeset
|
466 |
(map (prefix arity_prefix) o Logic.name_arities) add_arity; |
169e12bbf9a3
discontinued axiomatic 'classes', 'classrel', 'arities';
wenzelm
parents:
54931
diff
changeset
|
467 |
|
56941
952833323c99
tuned signature to make axiomatizations more easy to spot in the source, via "add_axioms" or "axiomatization";
wenzelm
parents:
56144
diff
changeset
|
468 |
fun class_axiomatization (bclass, raw_super) thy = |
19511 | 469 |
let |
30344
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
wenzelm
parents:
30280
diff
changeset
|
470 |
val class = Sign.full_name thy bclass; |
55385
169e12bbf9a3
discontinued axiomatic 'classes', 'classrel', 'arities';
wenzelm
parents:
54931
diff
changeset
|
471 |
val super = map (Sign.certify_class thy) raw_super |> Sign.minimize_sort thy; |
19511 | 472 |
in |
473 |
thy |
|
474 |
|> Sign.primitive_class (bclass, super) |
|
56941
952833323c99
tuned signature to make axiomatizations more easy to spot in the source, via "add_axioms" or "axiomatization";
wenzelm
parents:
56144
diff
changeset
|
475 |
|> classrel_axiomatization (map (fn c => (class, c)) super) |
61255
15865e0c5598
eliminated separate type Theory.dep: use typeargs uniformly for consts/types;
wenzelm
parents:
61247
diff
changeset
|
476 |
|> Theory.add_deps_global "" (class_const_dep class) (map class_const_dep super) |
19511 | 477 |
end; |
478 |
||
479 |
end; |
|
480 |
||
481 |
end; |