| author | wenzelm | 
| Sat, 10 Mar 2012 17:07:10 +0100 | |
| changeset 46856 | 28909eecdf5b | 
| parent 45433 | 4283f3a57cf5 | 
| child 46922 | 3717f3878714 | 
| permissions | -rw-r--r-- | 
| 
38379
 
67d71449e85b
more convenient split of class modules: class and class_declaration
 
haftmann 
parents: 
38376 
diff
changeset
 | 
1  | 
(* Title: Pure/Isar/class_declaration.ML  | 
| 24218 | 2  | 
Author: Florian Haftmann, TU Muenchen  | 
3  | 
||
| 
38379
 
67d71449e85b
more convenient split of class modules: class and class_declaration
 
haftmann 
parents: 
38376 
diff
changeset
 | 
4  | 
Declaring classes and subclass relations.  | 
| 24218 | 5  | 
*)  | 
6  | 
||
| 
38379
 
67d71449e85b
more convenient split of class modules: class and class_declaration
 
haftmann 
parents: 
38376 
diff
changeset
 | 
7  | 
signature CLASS_DECLARATION =  | 
| 24218 | 8  | 
sig  | 
| 
41585
 
45d7da4e4ccf
added before_exit continuation for named targets (locale, class etc.), e.g. for final check/cleanup as in VC management;
 
wenzelm 
parents: 
40188 
diff
changeset
 | 
9  | 
val class: (local_theory -> local_theory) -> binding -> class list ->  | 
| 
 
45d7da4e4ccf
added before_exit continuation for named targets (locale, class etc.), e.g. for final check/cleanup as in VC management;
 
wenzelm 
parents: 
40188 
diff
changeset
 | 
10  | 
Element.context_i list -> theory -> string * local_theory  | 
| 
 
45d7da4e4ccf
added before_exit continuation for named targets (locale, class etc.), e.g. for final check/cleanup as in VC management;
 
wenzelm 
parents: 
40188 
diff
changeset
 | 
11  | 
val class_cmd: (local_theory -> local_theory) -> binding -> xstring list ->  | 
| 
 
45d7da4e4ccf
added before_exit continuation for named targets (locale, class etc.), e.g. for final check/cleanup as in VC management;
 
wenzelm 
parents: 
40188 
diff
changeset
 | 
12  | 
Element.context list -> theory -> string * local_theory  | 
| 
 
45d7da4e4ccf
added before_exit continuation for named targets (locale, class etc.), e.g. for final check/cleanup as in VC management;
 
wenzelm 
parents: 
40188 
diff
changeset
 | 
13  | 
val prove_subclass: (local_theory -> local_theory) -> tactic -> class ->  | 
| 
 
45d7da4e4ccf
added before_exit continuation for named targets (locale, class etc.), e.g. for final check/cleanup as in VC management;
 
wenzelm 
parents: 
40188 
diff
changeset
 | 
14  | 
local_theory -> local_theory  | 
| 
 
45d7da4e4ccf
added before_exit continuation for named targets (locale, class etc.), e.g. for final check/cleanup as in VC management;
 
wenzelm 
parents: 
40188 
diff
changeset
 | 
15  | 
val subclass: (local_theory -> local_theory) -> class -> local_theory -> Proof.state  | 
| 
 
45d7da4e4ccf
added before_exit continuation for named targets (locale, class etc.), e.g. for final check/cleanup as in VC management;
 
wenzelm 
parents: 
40188 
diff
changeset
 | 
16  | 
val subclass_cmd: (local_theory -> local_theory) -> xstring -> local_theory -> Proof.state  | 
| 24218 | 17  | 
end;  | 
18  | 
||
| 
38379
 
67d71449e85b
more convenient split of class modules: class and class_declaration
 
haftmann 
parents: 
38376 
diff
changeset
 | 
19  | 
structure Class_Declaration: CLASS_DECLARATION =  | 
| 24218 | 20  | 
struct  | 
21  | 
||
| 
29665
 
2b956243d123
explicit check for exactly one type variable in class specification elements
 
haftmann 
parents: 
29632 
diff
changeset
 | 
22  | 
(** class definitions **)  | 
| 24218 | 23  | 
|
24  | 
local  | 
|
25  | 
||
| 
29665
 
2b956243d123
explicit check for exactly one type variable in class specification elements
 
haftmann 
parents: 
29632 
diff
changeset
 | 
26  | 
(* calculating class-related rules including canonical interpretation *)  | 
| 
 
2b956243d123
explicit check for exactly one type variable in class specification elements
 
haftmann 
parents: 
29632 
diff
changeset
 | 
27  | 
|
| 29547 | 28  | 
fun calculate thy class sups base_sort param_map assm_axiom =  | 
29  | 
let  | 
|
| 42360 | 30  | 
val empty_ctxt = Proof_Context.init_global thy;  | 
| 29547 | 31  | 
|
32  | 
(* instantiation of canonical interpretation *)  | 
|
| 
29575
 
41d604e59e93
improved and corrected reading of class specs -- still draft version
 
haftmann 
parents: 
29558 
diff
changeset
 | 
33  | 
val aT = TFree (Name.aT, base_sort);  | 
| 29627 | 34  | 
val param_map_const = (map o apsnd) Const param_map;  | 
35  | 
val param_map_inst = (map o apsnd)  | 
|
36  | 
(Const o apsnd (map_atyps (K aT))) param_map;  | 
|
37  | 
val const_morph = Element.inst_morphism thy  | 
|
38  | 
(Symtab.empty, Symtab.make param_map_inst);  | 
|
| 29797 | 39  | 
val typ_morph = Element.inst_morphism thy  | 
40  | 
(Symtab.empty |> Symtab.update (Name.aT, TFree (Name.aT, [class])), Symtab.empty);  | 
|
41  | 
val (([raw_props], [(_, raw_inst_morph)], export_morph), _) = empty_ctxt  | 
|
| 29547 | 42  | 
      |> Expression.cert_goal_expression ([(class, (("", false),
 | 
| 29627 | 43  | 
Expression.Named param_map_const))], []);  | 
| 45431 | 44  | 
val (props, inst_morph) =  | 
45  | 
if null param_map  | 
|
| 29797 | 46  | 
then (raw_props |> map (Morphism.term typ_morph),  | 
47  | 
raw_inst_morph $> typ_morph)  | 
|
48  | 
else (raw_props, raw_inst_morph); (*FIXME proper handling in  | 
|
49  | 
locale.ML / expression.ML would be desirable*)  | 
|
| 29547 | 50  | 
|
51  | 
(* witness for canonical interpretation *)  | 
|
52  | 
val prop = try the_single props;  | 
|
| 45431 | 53  | 
val wit = Option.map (fn prop =>  | 
54  | 
let  | 
|
| 
38379
 
67d71449e85b
more convenient split of class modules: class and class_declaration
 
haftmann 
parents: 
38376 
diff
changeset
 | 
55  | 
val sup_axioms = map_filter (fst o Class.rules thy) sups;  | 
| 45431 | 56  | 
val loc_intro_tac =  | 
57  | 
(case Locale.intros_of thy class of  | 
|
58  | 
(_, NONE) => all_tac  | 
|
59  | 
| (_, SOME intro) => ALLGOALS (Tactic.rtac intro));  | 
|
| 29547 | 60  | 
val tac = loc_intro_tac  | 
| 45431 | 61  | 
THEN ALLGOALS (Proof_Context.fact_tac (sup_axioms @ the_list assm_axiom));  | 
| 29547 | 62  | 
in Element.prove_witness empty_ctxt prop tac end) prop;  | 
63  | 
val axiom = Option.map Element.conclude_witness wit;  | 
|
64  | 
||
65  | 
(* canonical interpretation *)  | 
|
66  | 
val base_morph = inst_morph  | 
|
| 
38379
 
67d71449e85b
more convenient split of class modules: class and class_declaration
 
haftmann 
parents: 
38376 
diff
changeset
 | 
67  | 
$> Morphism.binding_morphism (Binding.prefix false (Class.class_prefix class))  | 
| 29547 | 68  | 
$> Element.satisfy_morphism (the_list wit);  | 
| 
38379
 
67d71449e85b
more convenient split of class modules: class and class_declaration
 
haftmann 
parents: 
38376 
diff
changeset
 | 
69  | 
val eq_morph = Element.eq_morphism thy (Class.these_defs thy sups);  | 
| 29547 | 70  | 
|
71  | 
(* assm_intro *)  | 
|
| 
30344
 
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
 
wenzelm 
parents: 
30335 
diff
changeset
 | 
72  | 
fun prove_assm_intro thm =  | 
| 29547 | 73  | 
let  | 
| 
31794
 
71af1fd6a5e4
renamed Variable.import_thms to Variable.import (back again cf. ed7aa5a350ef -- Alice is no longer supported);
 
wenzelm 
parents: 
31696 
diff
changeset
 | 
74  | 
val ((_, [thm']), _) = Variable.import true [thm] empty_ctxt;  | 
| 45431 | 75  | 
val const_eq_morph =  | 
76  | 
(case eq_morph of  | 
|
| 46856 | 77  | 
SOME eq_morph => const_morph $> eq_morph  | 
| 45431 | 78  | 
| NONE => const_morph);  | 
| 
36674
 
d95f39448121
eq_morphism is always optional: avoid trivial morphism for empty list of equations
 
haftmann 
parents: 
36672 
diff
changeset
 | 
79  | 
val thm'' = Morphism.thm const_eq_morph thm';  | 
| 42360 | 80  | 
val tac = ALLGOALS (Proof_Context.fact_tac [thm'']);  | 
| 
32970
 
fbd2bb2489a8
operations of structure Skip_Proof (formerly SkipProof) no longer require quick_and_dirty mode;
 
wenzelm 
parents: 
32886 
diff
changeset
 | 
81  | 
in Skip_Proof.prove_global thy [] [] (Thm.prop_of thm'') (K tac) end;  | 
| 46856 | 82  | 
val assm_intro = Option.map prove_assm_intro (fst (Locale.intros_of thy class));  | 
| 29547 | 83  | 
|
84  | 
(* of_class *)  | 
|
| 
31943
 
5e960a0780a2
renamed inclass/Inclass to of_class/OfClass, in accordance to of_sort;
 
wenzelm 
parents: 
31904 
diff
changeset
 | 
85  | 
val of_class_prop_concl = Logic.mk_of_class (aT, class);  | 
| 45431 | 86  | 
val of_class_prop =  | 
87  | 
(case prop of  | 
|
88  | 
NONE => of_class_prop_concl  | 
|
| 29627 | 89  | 
| SOME prop => Logic.mk_implies (Morphism.term const_morph  | 
| 45431 | 90  | 
((map_types o map_atyps) (K aT) prop), of_class_prop_concl));  | 
| 
38379
 
67d71449e85b
more convenient split of class modules: class and class_declaration
 
haftmann 
parents: 
38376 
diff
changeset
 | 
91  | 
val sup_of_classes = map (snd o Class.rules thy) sups;  | 
| 
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: 
33671 
diff
changeset
 | 
92  | 
val loc_axiom_intros = map Drule.export_without_context_open (Locale.axioms_of thy class);  | 
| 29547 | 93  | 
val axclass_intro = #intro (AxClass.get_info thy class);  | 
| 31944 | 94  | 
val base_sort_trivs = Thm.of_sort (Thm.ctyp_of thy aT, base_sort);  | 
| 45431 | 95  | 
val tac =  | 
96  | 
REPEAT (SOMEGOAL  | 
|
97  | 
(Tactic.match_tac (axclass_intro :: sup_of_classes @ loc_axiom_intros @ base_sort_trivs)  | 
|
98  | 
ORELSE' Tactic.assume_tac));  | 
|
| 
32970
 
fbd2bb2489a8
operations of structure Skip_Proof (formerly SkipProof) no longer require quick_and_dirty mode;
 
wenzelm 
parents: 
32886 
diff
changeset
 | 
99  | 
val of_class = Skip_Proof.prove_global thy [] [] of_class_prop (K tac);  | 
| 29547 | 100  | 
|
| 
32886
 
aba29da80c1b
do not use Locale.add_registration_eqs any longer
 
haftmann 
parents: 
32850 
diff
changeset
 | 
101  | 
in (base_morph, eq_morph, export_morph, axiom, assm_intro, of_class) end;  | 
| 29547 | 102  | 
|
| 
29632
 
c3d576157244
fixed reading of class specs: declare class operations in context
 
haftmann 
parents: 
29627 
diff
changeset
 | 
103  | 
|
| 
29665
 
2b956243d123
explicit check for exactly one type variable in class specification elements
 
haftmann 
parents: 
29632 
diff
changeset
 | 
104  | 
(* reading and processing class specifications *)  | 
| 
 
2b956243d123
explicit check for exactly one type variable in class specification elements
 
haftmann 
parents: 
29632 
diff
changeset
 | 
105  | 
|
| 36460 | 106  | 
fun prep_class_elems prep_decl thy sups raw_elems =  | 
| 
29632
 
c3d576157244
fixed reading of class specs: declare class operations in context
 
haftmann 
parents: 
29627 
diff
changeset
 | 
107  | 
let  | 
| 
29665
 
2b956243d123
explicit check for exactly one type variable in class specification elements
 
haftmann 
parents: 
29632 
diff
changeset
 | 
108  | 
|
| 
 
2b956243d123
explicit check for exactly one type variable in class specification elements
 
haftmann 
parents: 
29632 
diff
changeset
 | 
109  | 
(* user space type system: only permits 'a type variable, improves towards 'a *)  | 
| 36460 | 110  | 
val algebra = Sign.classes_of thy;  | 
111  | 
val inter_sort = curry (Sorts.inter_sort algebra);  | 
|
| 45421 | 112  | 
val proto_base_sort =  | 
113  | 
if null sups then Sign.defaultS thy  | 
|
| 
38379
 
67d71449e85b
more convenient split of class modules: class and class_declaration
 
haftmann 
parents: 
38376 
diff
changeset
 | 
114  | 
else fold inter_sort (map (Class.base_sort thy) sups) [];  | 
| 
29665
 
2b956243d123
explicit check for exactly one type variable in class specification elements
 
haftmann 
parents: 
29632 
diff
changeset
 | 
115  | 
val base_constraints = (map o apsnd)  | 
| 
 
2b956243d123
explicit check for exactly one type variable in class specification elements
 
haftmann 
parents: 
29632 
diff
changeset
 | 
116  | 
(map_type_tfree (K (TVar ((Name.aT, 0), proto_base_sort))) o fst o snd)  | 
| 
38379
 
67d71449e85b
more convenient split of class modules: class and class_declaration
 
haftmann 
parents: 
38376 
diff
changeset
 | 
117  | 
(Class.these_operations thy sups);  | 
| 
45433
 
4283f3a57cf5
avoid separate typ_check phases, integrate into main term_check 0 instead (cf. its Syntax.check_typs in Type_Infer_Context.prepare);
 
wenzelm 
parents: 
45432 
diff
changeset
 | 
118  | 
fun singleton_fixate tms =  | 
| 
29665
 
2b956243d123
explicit check for exactly one type variable in class specification elements
 
haftmann 
parents: 
29632 
diff
changeset
 | 
119  | 
let  | 
| 
45433
 
4283f3a57cf5
avoid separate typ_check phases, integrate into main term_check 0 instead (cf. its Syntax.check_typs in Type_Infer_Context.prepare);
 
wenzelm 
parents: 
45432 
diff
changeset
 | 
120  | 
val tfrees = fold Term.add_tfrees tms [];  | 
| 
 
4283f3a57cf5
avoid separate typ_check phases, integrate into main term_check 0 instead (cf. its Syntax.check_typs in Type_Infer_Context.prepare);
 
wenzelm 
parents: 
45432 
diff
changeset
 | 
121  | 
val inferred_sort =  | 
| 
 
4283f3a57cf5
avoid separate typ_check phases, integrate into main term_check 0 instead (cf. its Syntax.check_typs in Type_Infer_Context.prepare);
 
wenzelm 
parents: 
45432 
diff
changeset
 | 
122  | 
(fold o fold_types o fold_atyps) (fn TVar (_, S) => inter_sort S | _ => I) tms [];  | 
| 45421 | 123  | 
val fixate_sort =  | 
| 
45432
 
12cc89f1eb0c
clarified singleton_fixate: intersection with supersort is identity, only replace actual type inference parameters;
 
wenzelm 
parents: 
45431 
diff
changeset
 | 
124  | 
(case tfrees of  | 
| 
 
12cc89f1eb0c
clarified singleton_fixate: intersection with supersort is identity, only replace actual type inference parameters;
 
wenzelm 
parents: 
45431 
diff
changeset
 | 
125  | 
[] => inferred_sort  | 
| 
45433
 
4283f3a57cf5
avoid separate typ_check phases, integrate into main term_check 0 instead (cf. its Syntax.check_typs in Type_Infer_Context.prepare);
 
wenzelm 
parents: 
45432 
diff
changeset
 | 
126  | 
| [(a, S)] =>  | 
| 
 
4283f3a57cf5
avoid separate typ_check phases, integrate into main term_check 0 instead (cf. its Syntax.check_typs in Type_Infer_Context.prepare);
 
wenzelm 
parents: 
45432 
diff
changeset
 | 
127  | 
if a <> Name.aT then  | 
| 
 
4283f3a57cf5
avoid separate typ_check phases, integrate into main term_check 0 instead (cf. its Syntax.check_typs in Type_Infer_Context.prepare);
 
wenzelm 
parents: 
45432 
diff
changeset
 | 
128  | 
                error ("No type variable other than " ^ Name.aT ^ " allowed in class specification")
 | 
| 
 
4283f3a57cf5
avoid separate typ_check phases, integrate into main term_check 0 instead (cf. its Syntax.check_typs in Type_Infer_Context.prepare);
 
wenzelm 
parents: 
45432 
diff
changeset
 | 
129  | 
else if Sorts.sort_le algebra (S, inferred_sort) then S  | 
| 
45432
 
12cc89f1eb0c
clarified singleton_fixate: intersection with supersort is identity, only replace actual type inference parameters;
 
wenzelm 
parents: 
45431 
diff
changeset
 | 
130  | 
else  | 
| 
 
12cc89f1eb0c
clarified singleton_fixate: intersection with supersort is identity, only replace actual type inference parameters;
 
wenzelm 
parents: 
45431 
diff
changeset
 | 
131  | 
                error ("Type inference imposes additional sort constraint " ^
 | 
| 
 
12cc89f1eb0c
clarified singleton_fixate: intersection with supersort is identity, only replace actual type inference parameters;
 
wenzelm 
parents: 
45431 
diff
changeset
 | 
132  | 
Syntax.string_of_sort_global thy inferred_sort ^  | 
| 
 
12cc89f1eb0c
clarified singleton_fixate: intersection with supersort is identity, only replace actual type inference parameters;
 
wenzelm 
parents: 
45431 
diff
changeset
 | 
133  | 
" of type parameter " ^ Name.aT ^ " of sort " ^  | 
| 
 
12cc89f1eb0c
clarified singleton_fixate: intersection with supersort is identity, only replace actual type inference parameters;
 
wenzelm 
parents: 
45431 
diff
changeset
 | 
134  | 
Syntax.string_of_sort_global thy S)  | 
| 
 
12cc89f1eb0c
clarified singleton_fixate: intersection with supersort is identity, only replace actual type inference parameters;
 
wenzelm 
parents: 
45431 
diff
changeset
 | 
135  | 
| _ => error "Multiple type variables in class specification");  | 
| 
 
12cc89f1eb0c
clarified singleton_fixate: intersection with supersort is identity, only replace actual type inference parameters;
 
wenzelm 
parents: 
45431 
diff
changeset
 | 
136  | 
val fixateT = TFree (Name.aT, fixate_sort);  | 
| 
 
12cc89f1eb0c
clarified singleton_fixate: intersection with supersort is identity, only replace actual type inference parameters;
 
wenzelm 
parents: 
45431 
diff
changeset
 | 
137  | 
in  | 
| 
45433
 
4283f3a57cf5
avoid separate typ_check phases, integrate into main term_check 0 instead (cf. its Syntax.check_typs in Type_Infer_Context.prepare);
 
wenzelm 
parents: 
45432 
diff
changeset
 | 
138  | 
(map o map_types o map_atyps)  | 
| 
 
4283f3a57cf5
avoid separate typ_check phases, integrate into main term_check 0 instead (cf. its Syntax.check_typs in Type_Infer_Context.prepare);
 
wenzelm 
parents: 
45432 
diff
changeset
 | 
139  | 
(fn T as TVar (xi, _) => if Type_Infer.is_param xi then fixateT else T | T => T) tms  | 
| 
45432
 
12cc89f1eb0c
clarified singleton_fixate: intersection with supersort is identity, only replace actual type inference parameters;
 
wenzelm 
parents: 
45431 
diff
changeset
 | 
140  | 
end;  | 
| 
45433
 
4283f3a57cf5
avoid separate typ_check phases, integrate into main term_check 0 instead (cf. its Syntax.check_typs in Type_Infer_Context.prepare);
 
wenzelm 
parents: 
45432 
diff
changeset
 | 
141  | 
fun after_infer_fixate tms =  | 
| 
40188
 
eddda8e38360
consider base sorts of superclasses simultaneously during processing of class specification -- avoids clash of different base sorts
 
haftmann 
parents: 
38875 
diff
changeset
 | 
142  | 
let  | 
| 
45432
 
12cc89f1eb0c
clarified singleton_fixate: intersection with supersort is identity, only replace actual type inference parameters;
 
wenzelm 
parents: 
45431 
diff
changeset
 | 
143  | 
val fixate_sort =  | 
| 
45433
 
4283f3a57cf5
avoid separate typ_check phases, integrate into main term_check 0 instead (cf. its Syntax.check_typs in Type_Infer_Context.prepare);
 
wenzelm 
parents: 
45432 
diff
changeset
 | 
144  | 
(fold o fold_types o fold_atyps)  | 
| 
 
4283f3a57cf5
avoid separate typ_check phases, integrate into main term_check 0 instead (cf. its Syntax.check_typs in Type_Infer_Context.prepare);
 
wenzelm 
parents: 
45432 
diff
changeset
 | 
145  | 
(fn TVar (xi, S) => if Type_Infer.is_param xi then inter_sort S else I | _ => I) tms [];  | 
| 
40188
 
eddda8e38360
consider base sorts of superclasses simultaneously during processing of class specification -- avoids clash of different base sorts
 
haftmann 
parents: 
38875 
diff
changeset
 | 
146  | 
in  | 
| 
45433
 
4283f3a57cf5
avoid separate typ_check phases, integrate into main term_check 0 instead (cf. its Syntax.check_typs in Type_Infer_Context.prepare);
 
wenzelm 
parents: 
45432 
diff
changeset
 | 
147  | 
(map o map_types o map_atyps)  | 
| 45431 | 148  | 
(fn T as TVar (xi, _) =>  | 
| 
45432
 
12cc89f1eb0c
clarified singleton_fixate: intersection with supersort is identity, only replace actual type inference parameters;
 
wenzelm 
parents: 
45431 
diff
changeset
 | 
149  | 
if Type_Infer.is_param xi then Type_Infer.param 0 (Name.aT, fixate_sort) else T  | 
| 
45433
 
4283f3a57cf5
avoid separate typ_check phases, integrate into main term_check 0 instead (cf. its Syntax.check_typs in Type_Infer_Context.prepare);
 
wenzelm 
parents: 
45432 
diff
changeset
 | 
150  | 
| T => T) tms  | 
| 
40188
 
eddda8e38360
consider base sorts of superclasses simultaneously during processing of class specification -- avoids clash of different base sorts
 
haftmann 
parents: 
38875 
diff
changeset
 | 
151  | 
end;  | 
| 
29632
 
c3d576157244
fixed reading of class specs: declare class operations in context
 
haftmann 
parents: 
29627 
diff
changeset
 | 
152  | 
|
| 35120 | 153  | 
(* preprocessing elements, retrieving base sort from type-checked elements *)  | 
| 
42402
 
c7139609b67d
simplified check/uncheck interfaces: result comparison is hardwired by default;
 
wenzelm 
parents: 
42375 
diff
changeset
 | 
154  | 
val raw_supexpr =  | 
| 
 
c7139609b67d
simplified check/uncheck interfaces: result comparison is hardwired by default;
 
wenzelm 
parents: 
42375 
diff
changeset
 | 
155  | 
      (map (fn sup => (sup, (("", false), Expression.Positional []))) sups, []);
 | 
| 
 
c7139609b67d
simplified check/uncheck interfaces: result comparison is hardwired by default;
 
wenzelm 
parents: 
42375 
diff
changeset
 | 
156  | 
val init_class_body =  | 
| 
 
c7139609b67d
simplified check/uncheck interfaces: result comparison is hardwired by default;
 
wenzelm 
parents: 
42375 
diff
changeset
 | 
157  | 
fold (Proof_Context.add_const_constraint o apsnd SOME) base_constraints  | 
| 
38379
 
67d71449e85b
more convenient split of class modules: class and class_declaration
 
haftmann 
parents: 
38376 
diff
changeset
 | 
158  | 
#> Class.redeclare_operations thy sups  | 
| 
45433
 
4283f3a57cf5
avoid separate typ_check phases, integrate into main term_check 0 instead (cf. its Syntax.check_typs in Type_Infer_Context.prepare);
 
wenzelm 
parents: 
45432 
diff
changeset
 | 
159  | 
#> Context.proof_map (Syntax_Phases.term_check 0 "singleton_fixate" (K singleton_fixate));  | 
| 
42402
 
c7139609b67d
simplified check/uncheck interfaces: result comparison is hardwired by default;
 
wenzelm 
parents: 
42375 
diff
changeset
 | 
160  | 
val ((raw_supparams, _, raw_inferred_elems), _) =  | 
| 
 
c7139609b67d
simplified check/uncheck interfaces: result comparison is hardwired by default;
 
wenzelm 
parents: 
42375 
diff
changeset
 | 
161  | 
Proof_Context.init_global thy  | 
| 
45433
 
4283f3a57cf5
avoid separate typ_check phases, integrate into main term_check 0 instead (cf. its Syntax.check_typs in Type_Infer_Context.prepare);
 
wenzelm 
parents: 
45432 
diff
changeset
 | 
162  | 
|> Context.proof_map (Syntax_Phases.term_check 0 "after_infer_fixate" (K after_infer_fixate))  | 
| 32206 | 163  | 
|> prep_decl raw_supexpr init_class_body raw_elems;  | 
| 38435 | 164  | 
fun filter_element (Element.Fixes []) = NONE  | 
165  | 
| filter_element (e as Element.Fixes _) = SOME e  | 
|
166  | 
| filter_element (Element.Constrains []) = NONE  | 
|
167  | 
| filter_element (e as Element.Constrains _) = SOME e  | 
|
168  | 
| filter_element (Element.Assumes []) = NONE  | 
|
169  | 
| filter_element (e as Element.Assumes _) = SOME e  | 
|
| 45421 | 170  | 
| filter_element (Element.Defines _) =  | 
171  | 
          error ("\"defines\" element not allowed in class specification.")
 | 
|
172  | 
| filter_element (Element.Notes _) =  | 
|
173  | 
          error ("\"notes\" element not allowed in class specification.");
 | 
|
| 38435 | 174  | 
val inferred_elems = map_filter filter_element raw_inferred_elems;  | 
| 
29665
 
2b956243d123
explicit check for exactly one type variable in class specification elements
 
haftmann 
parents: 
29632 
diff
changeset
 | 
175  | 
fun fold_element_types f (Element.Fixes fxs) = fold (fn (_, SOME T, _) => f T) fxs  | 
| 
 
2b956243d123
explicit check for exactly one type variable in class specification elements
 
haftmann 
parents: 
29632 
diff
changeset
 | 
176  | 
| fold_element_types f (Element.Constrains cnstrs) = fold (f o snd) cnstrs  | 
| 
 
2b956243d123
explicit check for exactly one type variable in class specification elements
 
haftmann 
parents: 
29632 
diff
changeset
 | 
177  | 
| fold_element_types f (Element.Assumes assms) = fold (fold (fn (t, ts) =>  | 
| 
42402
 
c7139609b67d
simplified check/uncheck interfaces: result comparison is hardwired by default;
 
wenzelm 
parents: 
42375 
diff
changeset
 | 
178  | 
fold_types f t #> (fold o fold_types) f ts) o snd) assms;  | 
| 45421 | 179  | 
val base_sort =  | 
180  | 
if null inferred_elems then proto_base_sort  | 
|
181  | 
else  | 
|
182  | 
(case (fold o fold_element_types) Term.add_tfreesT inferred_elems [] of  | 
|
183  | 
[] => error "No type variable in class specification"  | 
|
| 
29665
 
2b956243d123
explicit check for exactly one type variable in class specification elements
 
haftmann 
parents: 
29632 
diff
changeset
 | 
184  | 
| [(_, sort)] => sort  | 
| 45421 | 185  | 
| _ => error "Multiple type variables in class specification");  | 
| 32206 | 186  | 
val supparams = map (fn ((c, T), _) =>  | 
187  | 
(c, map_atyps (K (TFree (Name.aT, base_sort))) T)) raw_supparams;  | 
|
188  | 
val supparam_names = map fst supparams;  | 
|
189  | 
fun mk_param ((c, _), _) = Free (c, (the o AList.lookup (op =) supparams) c);  | 
|
190  | 
    val supexpr = (map (fn sup => (sup, (("", false),
 | 
|
191  | 
Expression.Positional (map (SOME o mk_param) (Locale.params_of thy sup))))) sups,  | 
|
192  | 
map (fn (c, T) => (Binding.name c, SOME T, NoSyn)) supparams);  | 
|
| 
29575
 
41d604e59e93
improved and corrected reading of class specs -- still draft version
 
haftmann 
parents: 
29558 
diff
changeset
 | 
193  | 
|
| 32206 | 194  | 
in (base_sort, supparam_names, supexpr, inferred_elems) end;  | 
| 
29575
 
41d604e59e93
improved and corrected reading of class specs -- still draft version
 
haftmann 
parents: 
29558 
diff
changeset
 | 
195  | 
|
| 
29665
 
2b956243d123
explicit check for exactly one type variable in class specification elements
 
haftmann 
parents: 
29632 
diff
changeset
 | 
196  | 
val cert_class_elems = prep_class_elems Expression.cert_declaration;  | 
| 
 
2b956243d123
explicit check for exactly one type variable in class specification elements
 
haftmann 
parents: 
29632 
diff
changeset
 | 
197  | 
val read_class_elems = prep_class_elems Expression.cert_read_declaration;  | 
| 
29575
 
41d604e59e93
improved and corrected reading of class specs -- still draft version
 
haftmann 
parents: 
29558 
diff
changeset
 | 
198  | 
|
| 
29665
 
2b956243d123
explicit check for exactly one type variable in class specification elements
 
haftmann 
parents: 
29632 
diff
changeset
 | 
199  | 
fun prep_class_spec prep_class prep_class_elems thy raw_supclasses raw_elems =  | 
| 
29575
 
41d604e59e93
improved and corrected reading of class specs -- still draft version
 
haftmann 
parents: 
29558 
diff
changeset
 | 
200  | 
let  | 
| 
29665
 
2b956243d123
explicit check for exactly one type variable in class specification elements
 
haftmann 
parents: 
29632 
diff
changeset
 | 
201  | 
|
| 
29575
 
41d604e59e93
improved and corrected reading of class specs -- still draft version
 
haftmann 
parents: 
29558 
diff
changeset
 | 
202  | 
(* prepare import *)  | 
| 
 
41d604e59e93
improved and corrected reading of class specs -- still draft version
 
haftmann 
parents: 
29558 
diff
changeset
 | 
203  | 
val inter_sort = curry (Sorts.inter_sort (Sign.classes_of thy));  | 
| 45431 | 204  | 
val sups = Sign.minimize_sort thy (map (prep_class thy) raw_supclasses);  | 
205  | 
val _ =  | 
|
206  | 
(case filter_out (Class.is_class thy) sups of  | 
|
207  | 
[] => ()  | 
|
208  | 
      | no_classes => error ("No (proper) classes: " ^ commas_quote no_classes));
 | 
|
| 
38379
 
67d71449e85b
more convenient split of class modules: class and class_declaration
 
haftmann 
parents: 
38376 
diff
changeset
 | 
209  | 
val raw_supparams = (map o apsnd) (snd o snd) (Class.these_params thy sups);  | 
| 32206 | 210  | 
val raw_supparam_names = map fst raw_supparams;  | 
| 45431 | 211  | 
val _ =  | 
212  | 
if has_duplicates (op =) raw_supparam_names then  | 
|
213  | 
        error ("Duplicate parameter(s) in superclasses: " ^
 | 
|
214  | 
(commas_quote (duplicates (op =) raw_supparam_names)))  | 
|
| 
29575
 
41d604e59e93
improved and corrected reading of class specs -- still draft version
 
haftmann 
parents: 
29558 
diff
changeset
 | 
215  | 
else ();  | 
| 
 
41d604e59e93
improved and corrected reading of class specs -- still draft version
 
haftmann 
parents: 
29558 
diff
changeset
 | 
216  | 
|
| 
 
41d604e59e93
improved and corrected reading of class specs -- still draft version
 
haftmann 
parents: 
29558 
diff
changeset
 | 
217  | 
(* infer types and base sort *)  | 
| 45431 | 218  | 
val (base_sort, supparam_names, supexpr, inferred_elems) = prep_class_elems thy sups raw_elems;  | 
| 32206 | 219  | 
val sup_sort = inter_sort base_sort sups;  | 
| 
29575
 
41d604e59e93
improved and corrected reading of class specs -- still draft version
 
haftmann 
parents: 
29558 
diff
changeset
 | 
220  | 
|
| 
 
41d604e59e93
improved and corrected reading of class specs -- still draft version
 
haftmann 
parents: 
29558 
diff
changeset
 | 
221  | 
(* process elements as class specification *)  | 
| 42360 | 222  | 
val class_ctxt = Class.begin sups base_sort (Proof_Context.init_global thy);  | 
| 
29665
 
2b956243d123
explicit check for exactly one type variable in class specification elements
 
haftmann 
parents: 
29632 
diff
changeset
 | 
223  | 
val ((_, _, syntax_elems), _) = class_ctxt  | 
| 29702 | 224  | 
|> Expression.cert_declaration supexpr I inferred_elems;  | 
| 45431 | 225  | 
fun check_vars e vs =  | 
226  | 
if null vs then  | 
|
227  | 
        error ("No type variable in part of specification element " ^
 | 
|
228  | 
Pretty.string_of (Pretty.chunks (Element.pretty_ctxt class_ctxt e)))  | 
|
| 
29665
 
2b956243d123
explicit check for exactly one type variable in class specification elements
 
haftmann 
parents: 
29632 
diff
changeset
 | 
229  | 
else ();  | 
| 
 
2b956243d123
explicit check for exactly one type variable in class specification elements
 
haftmann 
parents: 
29632 
diff
changeset
 | 
230  | 
fun check_element (e as Element.Fixes fxs) =  | 
| 45431 | 231  | 
List.app (fn (_, SOME T, _) => check_vars e (Term.add_tfreesT T [])) fxs  | 
| 
29665
 
2b956243d123
explicit check for exactly one type variable in class specification elements
 
haftmann 
parents: 
29632 
diff
changeset
 | 
232  | 
| check_element (e as Element.Assumes assms) =  | 
| 45431 | 233  | 
List.app (fn (_, ts_pss) =>  | 
234  | 
List.app (fn (t, _) => check_vars e (Term.add_tfrees t [])) ts_pss) assms  | 
|
235  | 
| check_element _ = ();  | 
|
236  | 
val _ = List.app check_element syntax_elems;  | 
|
| 
29665
 
2b956243d123
explicit check for exactly one type variable in class specification elements
 
haftmann 
parents: 
29632 
diff
changeset
 | 
237  | 
fun fork_syn (Element.Fixes xs) =  | 
| 
30344
 
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
 
wenzelm 
parents: 
30335 
diff
changeset
 | 
238  | 
fold_map (fn (c, ty, syn) => cons (c, syn) #> pair (c, ty, NoSyn)) xs  | 
| 
29665
 
2b956243d123
explicit check for exactly one type variable in class specification elements
 
haftmann 
parents: 
29632 
diff
changeset
 | 
239  | 
#>> Element.Fixes  | 
| 
 
2b956243d123
explicit check for exactly one type variable in class specification elements
 
haftmann 
parents: 
29632 
diff
changeset
 | 
240  | 
| fork_syn x = pair x;  | 
| 
29575
 
41d604e59e93
improved and corrected reading of class specs -- still draft version
 
haftmann 
parents: 
29558 
diff
changeset
 | 
241  | 
val (elems, global_syntax) = fold_map fork_syn syntax_elems [];  | 
| 
29665
 
2b956243d123
explicit check for exactly one type variable in class specification elements
 
haftmann 
parents: 
29632 
diff
changeset
 | 
242  | 
|
| 32713 | 243  | 
in (((sups, supparam_names), (sup_sort, base_sort, supexpr)), (elems, global_syntax)) end;  | 
| 
29575
 
41d604e59e93
improved and corrected reading of class specs -- still draft version
 
haftmann 
parents: 
29558 
diff
changeset
 | 
244  | 
|
| 
29665
 
2b956243d123
explicit check for exactly one type variable in class specification elements
 
haftmann 
parents: 
29632 
diff
changeset
 | 
245  | 
val cert_class_spec = prep_class_spec (K I) cert_class_elems;  | 
| 
 
2b956243d123
explicit check for exactly one type variable in class specification elements
 
haftmann 
parents: 
29632 
diff
changeset
 | 
246  | 
val read_class_spec = prep_class_spec Sign.intern_class read_class_elems;  | 
| 
 
2b956243d123
explicit check for exactly one type variable in class specification elements
 
haftmann 
parents: 
29632 
diff
changeset
 | 
247  | 
|
| 
 
2b956243d123
explicit check for exactly one type variable in class specification elements
 
haftmann 
parents: 
29632 
diff
changeset
 | 
248  | 
|
| 
 
2b956243d123
explicit check for exactly one type variable in class specification elements
 
haftmann 
parents: 
29632 
diff
changeset
 | 
249  | 
(* class establishment *)  | 
| 
29575
 
41d604e59e93
improved and corrected reading of class specs -- still draft version
 
haftmann 
parents: 
29558 
diff
changeset
 | 
250  | 
|
| 32206 | 251  | 
fun add_consts class base_sort sups supparam_names global_syntax thy =  | 
| 
24968
 
f9bafc868847
replaced Sign.add_consts_authentic by Sign.declare_const;
 
wenzelm 
parents: 
24949 
diff
changeset
 | 
252  | 
let  | 
| 29816 | 253  | 
(*FIXME simplify*)  | 
| 32206 | 254  | 
val supconsts = supparam_names  | 
| 
38379
 
67d71449e85b
more convenient split of class modules: class and class_declaration
 
haftmann 
parents: 
38376 
diff
changeset
 | 
255  | 
|> AList.make (snd o the o AList.lookup (op =) (Class.these_params thy sups))  | 
| 25683 | 256  | 
|> (map o apsnd o apsnd o map_atyps o K o TFree) (Name.aT, [class]);  | 
| 
29509
 
1ff0f3f08a7b
migrated class package to new locale implementation
 
haftmann 
parents: 
29439 
diff
changeset
 | 
257  | 
val all_params = Locale.params_of thy class;  | 
| 32206 | 258  | 
val raw_params = (snd o chop (length supparam_names)) all_params;  | 
| 
30755
 
7ef503d216c2
simplified internal locale parameters: maintain proper name and type, instead of binding and constraint;
 
wenzelm 
parents: 
30585 
diff
changeset
 | 
259  | 
fun add_const ((raw_c, raw_ty), _) thy =  | 
| 25683 | 260  | 
let  | 
| 
30755
 
7ef503d216c2
simplified internal locale parameters: maintain proper name and type, instead of binding and constraint;
 
wenzelm 
parents: 
30585 
diff
changeset
 | 
261  | 
val b = Binding.name raw_c;  | 
| 
30344
 
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
 
wenzelm 
parents: 
30335 
diff
changeset
 | 
262  | 
val c = Sign.full_name thy b;  | 
| 25683 | 263  | 
val ty = map_atyps (K (TFree (Name.aT, base_sort))) raw_ty;  | 
264  | 
val ty0 = Type.strip_sorts ty;  | 
|
265  | 
val ty' = map_atyps (K (TFree (Name.aT, [class]))) ty0;  | 
|
| 
30344
 
10a67c5ddddb
more uniform handling of binding in targets and derived elements;
 
wenzelm 
parents: 
30335 
diff
changeset
 | 
266  | 
val syn = (the_default NoSyn o AList.lookup Binding.eq_name global_syntax) b;  | 
| 25683 | 267  | 
in  | 
268  | 
thy  | 
|
| 
42375
 
774df7c59508
report Name_Space.declare/define, relatively to context;
 
wenzelm 
parents: 
42360 
diff
changeset
 | 
269  | 
|> Sign.declare_const_global ((b, ty0), syn)  | 
| 25683 | 270  | 
|> snd  | 
| 42494 | 271  | 
|> pair ((Variable.check_name b, ty), (c, ty'))  | 
| 25683 | 272  | 
end;  | 
| 
28715
 
238f9966c80e
class morphism stemming from locale interpretation
 
haftmann 
parents: 
28674 
diff
changeset
 | 
273  | 
in  | 
| 
 
238f9966c80e
class morphism stemming from locale interpretation
 
haftmann 
parents: 
28674 
diff
changeset
 | 
274  | 
thy  | 
| 
38379
 
67d71449e85b
more convenient split of class modules: class and class_declaration
 
haftmann 
parents: 
38376 
diff
changeset
 | 
275  | 
|> Sign.add_path (Class.class_prefix class)  | 
| 
28715
 
238f9966c80e
class morphism stemming from locale interpretation
 
haftmann 
parents: 
28674 
diff
changeset
 | 
276  | 
|> fold_map add_const raw_params  | 
| 
 
238f9966c80e
class morphism stemming from locale interpretation
 
haftmann 
parents: 
28674 
diff
changeset
 | 
277  | 
||> Sign.restore_naming thy  | 
| 
 
238f9966c80e
class morphism stemming from locale interpretation
 
haftmann 
parents: 
28674 
diff
changeset
 | 
278  | 
|-> (fn params => pair (supconsts @ (map o apfst) fst params, params))  | 
| 
 
238f9966c80e
class morphism stemming from locale interpretation
 
haftmann 
parents: 
28674 
diff
changeset
 | 
279  | 
end;  | 
| 
 
238f9966c80e
class morphism stemming from locale interpretation
 
haftmann 
parents: 
28674 
diff
changeset
 | 
280  | 
|
| 32206 | 281  | 
fun adjungate_axclass bname class base_sort sups supsort supparam_names global_syntax thy =  | 
| 
28715
 
238f9966c80e
class morphism stemming from locale interpretation
 
haftmann 
parents: 
28674 
diff
changeset
 | 
282  | 
let  | 
| 29816 | 283  | 
(*FIXME simplify*)  | 
| 25683 | 284  | 
fun globalize param_map = map_aterms  | 
285  | 
(fn Free (v, ty) => Const ((fst o the o AList.lookup (op =) param_map) v, ty)  | 
|
286  | 
| t => t);  | 
|
| 
29509
 
1ff0f3f08a7b
migrated class package to new locale implementation
 
haftmann 
parents: 
29439 
diff
changeset
 | 
287  | 
val raw_pred = Locale.intros_of thy class  | 
| 25683 | 288  | 
|> fst  | 
| 
35845
 
e5980f0ad025
renamed varify/unvarify operations to varify_global/unvarify_global to emphasize that these only work in a global situation;
 
wenzelm 
parents: 
35669 
diff
changeset
 | 
289  | 
|> Option.map (Logic.unvarify_global o Logic.strip_imp_concl o Thm.prop_of);  | 
| 45431 | 290  | 
fun get_axiom thy =  | 
291  | 
(case #axioms (AxClass.get_info thy class) of  | 
|
292  | 
[] => NONE  | 
|
293  | 
| [thm] => SOME thm);  | 
|
| 
24968
 
f9bafc868847
replaced Sign.add_consts_authentic by Sign.declare_const;
 
wenzelm 
parents: 
24949 
diff
changeset
 | 
294  | 
in  | 
| 
 
f9bafc868847
replaced Sign.add_consts_authentic by Sign.declare_const;
 
wenzelm 
parents: 
24949 
diff
changeset
 | 
295  | 
thy  | 
| 32206 | 296  | 
|> add_consts class base_sort sups supparam_names global_syntax  | 
| 25683 | 297  | 
|-> (fn (param_map, params) => AxClass.define_class (bname, supsort)  | 
| 26518 | 298  | 
(map (fst o snd) params)  | 
| 30211 | 299  | 
[(Thm.empty_binding, Option.map (globalize param_map) raw_pred |> the_list)]  | 
| 25683 | 300  | 
#> snd  | 
301  | 
#> `get_axiom  | 
|
302  | 
#-> (fn assm_axiom => fold (Sign.add_const_constraint o apsnd SOME o snd) params  | 
|
| 29526 | 303  | 
#> pair (param_map, params, assm_axiom)))  | 
| 
24968
 
f9bafc868847
replaced Sign.add_consts_authentic by Sign.declare_const;
 
wenzelm 
parents: 
24949 
diff
changeset
 | 
304  | 
end;  | 
| 
 
f9bafc868847
replaced Sign.add_consts_authentic by Sign.declare_const;
 
wenzelm 
parents: 
24949 
diff
changeset
 | 
305  | 
|
| 
41585
 
45d7da4e4ccf
added before_exit continuation for named targets (locale, class etc.), e.g. for final check/cleanup as in VC management;
 
wenzelm 
parents: 
40188 
diff
changeset
 | 
306  | 
fun gen_class prep_class_spec before_exit b raw_supclasses raw_elems thy =  | 
| 24748 | 307  | 
let  | 
| 
36635
 
080b755377c0
locale predicates of classes carry a mandatory "class" prefix
 
haftmann 
parents: 
36464 
diff
changeset
 | 
308  | 
val class = Sign.full_name thy b;  | 
| 32206 | 309  | 
val (((sups, supparam_names), (supsort, base_sort, supexpr)), (elems, global_syntax)) =  | 
310  | 
prep_class_spec thy raw_supclasses raw_elems;  | 
|
| 24218 | 311  | 
in  | 
312  | 
thy  | 
|
| 
41585
 
45d7da4e4ccf
added before_exit continuation for named targets (locale, class etc.), e.g. for final check/cleanup as in VC management;
 
wenzelm 
parents: 
40188 
diff
changeset
 | 
313  | 
|> Expression.add_locale I b (Binding.qualify true "class" b) supexpr elems  | 
| 33671 | 314  | 
|> snd |> Local_Theory.exit_global  | 
| 
36635
 
080b755377c0
locale predicates of classes carry a mandatory "class" prefix
 
haftmann 
parents: 
36464 
diff
changeset
 | 
315  | 
|> adjungate_axclass b class base_sort sups supsort supparam_names global_syntax  | 
| 31696 | 316  | 
||> Theory.checkpoint  | 
| 29526 | 317  | 
|-> (fn (param_map, params, assm_axiom) =>  | 
| 29547 | 318  | 
`(fn thy => calculate thy class sups base_sort param_map assm_axiom)  | 
| 
32886
 
aba29da80c1b
do not use Locale.add_registration_eqs any longer
 
haftmann 
parents: 
32850 
diff
changeset
 | 
319  | 
#-> (fn (base_morph, eq_morph, export_morph, axiom, assm_intro, of_class) =>  | 
| 38107 | 320  | 
Context.theory_map (Locale.add_registration (class, base_morph)  | 
321  | 
(Option.map (rpair true) eq_morph) export_morph)  | 
|
| 
38379
 
67d71449e85b
more convenient split of class modules: class and class_declaration
 
haftmann 
parents: 
38376 
diff
changeset
 | 
322  | 
#> Class.register class sups params base_sort base_morph export_morph axiom assm_intro of_class))  | 
| 
41585
 
45d7da4e4ccf
added before_exit continuation for named targets (locale, class etc.), e.g. for final check/cleanup as in VC management;
 
wenzelm 
parents: 
40188 
diff
changeset
 | 
323  | 
|> Named_Target.init before_exit class  | 
| 25038 | 324  | 
|> pair class  | 
| 24218 | 325  | 
end;  | 
326  | 
||
327  | 
in  | 
|
328  | 
||
| 
29509
 
1ff0f3f08a7b
migrated class package to new locale implementation
 
haftmann 
parents: 
29439 
diff
changeset
 | 
329  | 
val class = gen_class cert_class_spec;  | 
| 26518 | 330  | 
val class_cmd = gen_class read_class_spec;  | 
| 24218 | 331  | 
|
332  | 
end; (*local*)  | 
|
333  | 
||
334  | 
||
| 45421 | 335  | 
|
| 29358 | 336  | 
(** subclass relations **)  | 
| 25462 | 337  | 
|
| 29358 | 338  | 
local  | 
| 25462 | 339  | 
|
| 
41585
 
45d7da4e4ccf
added before_exit continuation for named targets (locale, class etc.), e.g. for final check/cleanup as in VC management;
 
wenzelm 
parents: 
40188 
diff
changeset
 | 
340  | 
fun gen_subclass prep_class do_proof before_exit raw_sup lthy =  | 
| 25462 | 341  | 
let  | 
| 42360 | 342  | 
val thy = Proof_Context.theory_of lthy;  | 
| 29558 | 343  | 
val proto_sup = prep_class thy raw_sup;  | 
| 45431 | 344  | 
val proto_sub =  | 
345  | 
(case Named_Target.peek lthy of  | 
|
346  | 
         SOME {target, is_class = true, ...} => target
 | 
|
347  | 
| _ => error "Not in a class target");  | 
|
| 31987 | 348  | 
val (sub, sup) = AxClass.cert_classrel thy (proto_sub, proto_sup);  | 
| 
29509
 
1ff0f3f08a7b
migrated class package to new locale implementation
 
haftmann 
parents: 
29439 
diff
changeset
 | 
349  | 
|
| 
 
1ff0f3f08a7b
migrated class package to new locale implementation
 
haftmann 
parents: 
29439 
diff
changeset
 | 
350  | 
    val expr = ([(sup, (("", false), Expression.Positional []))], []);
 | 
| 29558 | 351  | 
val (([props], deps, export), goal_ctxt) =  | 
| 
29509
 
1ff0f3f08a7b
migrated class package to new locale implementation
 
haftmann 
parents: 
29439 
diff
changeset
 | 
352  | 
Expression.cert_goal_expression expr lthy;  | 
| 29526 | 353  | 
val some_prop = try the_single props;  | 
| 29558 | 354  | 
val some_dep_morph = try the_single (map snd deps);  | 
355  | 
fun after_qed some_wit =  | 
|
| 42360 | 356  | 
Proof_Context.background_theory (Class.register_subclass (sub, sup)  | 
| 29558 | 357  | 
some_dep_morph some_wit export)  | 
| 42360 | 358  | 
#> Proof_Context.theory_of #> Named_Target.init before_exit sub;  | 
| 29558 | 359  | 
in do_proof after_qed some_prop goal_ctxt end;  | 
| 25485 | 360  | 
|
| 
29575
 
41d604e59e93
improved and corrected reading of class specs -- still draft version
 
haftmann 
parents: 
29558 
diff
changeset
 | 
361  | 
fun user_proof after_qed some_prop =  | 
| 
 
41d604e59e93
improved and corrected reading of class specs -- still draft version
 
haftmann 
parents: 
29558 
diff
changeset
 | 
362  | 
Element.witness_proof (after_qed o try the_single o the_single)  | 
| 
 
41d604e59e93
improved and corrected reading of class specs -- still draft version
 
haftmann 
parents: 
29558 
diff
changeset
 | 
363  | 
[the_list some_prop];  | 
| 25485 | 364  | 
|
| 
29575
 
41d604e59e93
improved and corrected reading of class specs -- still draft version
 
haftmann 
parents: 
29558 
diff
changeset
 | 
365  | 
fun tactic_proof tac after_qed some_prop ctxt =  | 
| 
 
41d604e59e93
improved and corrected reading of class specs -- still draft version
 
haftmann 
parents: 
29558 
diff
changeset
 | 
366  | 
after_qed (Option.map  | 
| 
 
41d604e59e93
improved and corrected reading of class specs -- still draft version
 
haftmann 
parents: 
29558 
diff
changeset
 | 
367  | 
(fn prop => Element.prove_witness ctxt prop tac) some_prop) ctxt;  | 
| 28666 | 368  | 
|
| 29358 | 369  | 
in  | 
| 28666 | 370  | 
|
| 29358 | 371  | 
val subclass = gen_subclass (K I) user_proof;  | 
| 
41585
 
45d7da4e4ccf
added before_exit continuation for named targets (locale, class etc.), e.g. for final check/cleanup as in VC management;
 
wenzelm 
parents: 
40188 
diff
changeset
 | 
372  | 
fun prove_subclass before_exit tac = gen_subclass (K I) (tactic_proof tac) before_exit;  | 
| 42360 | 373  | 
val subclass_cmd = gen_subclass (Proof_Context.read_class o Proof_Context.init_global) user_proof;  | 
| 25462 | 374  | 
|
| 29358 | 375  | 
end; (*local*)  | 
376  | 
||
| 24218 | 377  | 
end;  |