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