| author | wenzelm | 
| Tue, 09 Aug 2011 22:30:33 +0200 | |
| changeset 44101 | 202d2f56560c | 
| parent 43794 | 49cbbe2768a8 | 
| child 45427 | fca432074fb2 | 
| permissions | -rw-r--r-- | 
| 19 | 1  | 
(* Title: Pure/sign.ML  | 
| 251 | 2  | 
Author: Lawrence C Paulson and Markus Wenzel  | 
| 0 | 3  | 
|
| 
16442
 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 
wenzelm 
parents: 
16368 
diff
changeset
 | 
4  | 
Logical signature content: naming conventions, concrete syntax, type  | 
| 18062 | 5  | 
signature, polymorphic constants.  | 
| 0 | 6  | 
*)  | 
7  | 
||
| 
16442
 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 
wenzelm 
parents: 
16368 
diff
changeset
 | 
8  | 
signature SIGN =  | 
| 5642 | 9  | 
sig  | 
| 
16442
 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 
wenzelm 
parents: 
16368 
diff
changeset
 | 
10  | 
val rep_sg: theory ->  | 
| 
33095
 
bbd52d2f8696
renamed NameSpace to Name_Space -- also to emphasize its subtle change in semantics;
 
wenzelm 
parents: 
32789 
diff
changeset
 | 
11  | 
   {naming: Name_Space.naming,
 | 
| 
16597
 
5a5229a55964
eliminated separate syn type -- advanced trfuns already part of Syntax.syntax;
 
wenzelm 
parents: 
16536 
diff
changeset
 | 
12  | 
syn: Syntax.syntax,  | 
| 
16442
 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 
wenzelm 
parents: 
16368 
diff
changeset
 | 
13  | 
tsig: Type.tsig,  | 
| 18062 | 14  | 
consts: Consts.T}  | 
| 33165 | 15  | 
val map_naming: (Name_Space.naming -> Name_Space.naming) -> theory -> theory  | 
| 
33095
 
bbd52d2f8696
renamed NameSpace to Name_Space -- also to emphasize its subtle change in semantics;
 
wenzelm 
parents: 
32789 
diff
changeset
 | 
16  | 
val naming_of: theory -> Name_Space.naming  | 
| 29581 | 17  | 
val full_name: theory -> binding -> string  | 
| 
30343
 
79f022df8527
replace old bstring by binding for logical primitives: class, type, const etc.;
 
wenzelm 
parents: 
30280 
diff
changeset
 | 
18  | 
val full_name_path: theory -> string -> binding -> string  | 
| 28965 | 19  | 
val full_bname: theory -> bstring -> string  | 
20  | 
val full_bname_path: theory -> string -> bstring -> string  | 
|
| 
16442
 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 
wenzelm 
parents: 
16368 
diff
changeset
 | 
21  | 
val syn_of: theory -> Syntax.syntax  | 
| 
 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 
wenzelm 
parents: 
16368 
diff
changeset
 | 
22  | 
val tsig_of: theory -> Type.tsig  | 
| 19642 | 23  | 
val classes_of: theory -> Sorts.algebra  | 
| 
21932
 
7d592dc078e3
replaced classes by all_classes (topologically sorted);
 
wenzelm 
parents: 
21796 
diff
changeset
 | 
24  | 
val all_classes: theory -> class list  | 
| 19407 | 25  | 
val super_classes: theory -> class -> class list  | 
| 24732 | 26  | 
val minimize_sort: theory -> sort -> sort  | 
27  | 
val complete_sort: theory -> sort -> sort  | 
|
| 36449 | 28  | 
val set_defsort: sort -> theory -> theory  | 
| 
16442
 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 
wenzelm 
parents: 
16368 
diff
changeset
 | 
29  | 
val defaultS: theory -> sort  | 
| 
 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 
wenzelm 
parents: 
16368 
diff
changeset
 | 
30  | 
val subsort: theory -> sort * sort -> bool  | 
| 
 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 
wenzelm 
parents: 
16368 
diff
changeset
 | 
31  | 
val of_sort: theory -> typ * sort -> bool  | 
| 
39290
 
44e4d8dfd6bf
load type_infer.ML later -- proper context for Type_Infer.infer_types;
 
wenzelm 
parents: 
39289 
diff
changeset
 | 
32  | 
val inter_sort: theory -> sort * sort -> sort  | 
| 
31946
 
99ac0321cd47
witness_sorts: proper type witnesses for hyps, not invented "'hyp" variables;
 
wenzelm 
parents: 
30585 
diff
changeset
 | 
33  | 
val witness_sorts: theory -> (typ * sort) list -> sort list -> (typ * sort) list  | 
| 24732 | 34  | 
val is_logtype: theory -> string -> bool  | 
| 
16442
 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 
wenzelm 
parents: 
16368 
diff
changeset
 | 
35  | 
val typ_instance: theory -> typ * typ -> bool  | 
| 19427 | 36  | 
val typ_equiv: theory -> typ * typ -> bool  | 
| 
16941
 
0bda949449ee
added add_const_constraint(_i), const_constraint;
 
wenzelm 
parents: 
16894 
diff
changeset
 | 
37  | 
val typ_match: theory -> typ * typ -> Type.tyenv -> Type.tyenv  | 
| 
 
0bda949449ee
added add_const_constraint(_i), const_constraint;
 
wenzelm 
parents: 
16894 
diff
changeset
 | 
38  | 
val typ_unify: theory -> typ * typ -> Type.tyenv * int -> Type.tyenv * int  | 
| 18967 | 39  | 
val consts_of: theory -> Consts.T  | 
| 17037 | 40  | 
val the_const_constraint: theory -> string -> typ  | 
| 
16442
 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 
wenzelm 
parents: 
16368 
diff
changeset
 | 
41  | 
val const_type: theory -> string -> typ option  | 
| 
 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 
wenzelm 
parents: 
16368 
diff
changeset
 | 
42  | 
val the_const_type: theory -> string -> typ  | 
| 
 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 
wenzelm 
parents: 
16368 
diff
changeset
 | 
43  | 
val declared_tyname: theory -> string -> bool  | 
| 
 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 
wenzelm 
parents: 
16368 
diff
changeset
 | 
44  | 
val declared_const: theory -> string -> bool  | 
| 18062 | 45  | 
val const_monomorphic: theory -> string -> bool  | 
| 18146 | 46  | 
val const_typargs: theory -> string * typ -> typ list  | 
| 18164 | 47  | 
val const_instance: theory -> string * typ list -> typ  | 
| 26268 | 48  | 
val mk_const: theory -> string * typ list -> term  | 
| 
33095
 
bbd52d2f8696
renamed NameSpace to Name_Space -- also to emphasize its subtle change in semantics;
 
wenzelm 
parents: 
32789 
diff
changeset
 | 
49  | 
val class_space: theory -> Name_Space.T  | 
| 
 
bbd52d2f8696
renamed NameSpace to Name_Space -- also to emphasize its subtle change in semantics;
 
wenzelm 
parents: 
32789 
diff
changeset
 | 
50  | 
val type_space: theory -> Name_Space.T  | 
| 
 
bbd52d2f8696
renamed NameSpace to Name_Space -- also to emphasize its subtle change in semantics;
 
wenzelm 
parents: 
32789 
diff
changeset
 | 
51  | 
val const_space: theory -> Name_Space.T  | 
| 42359 | 52  | 
val intern_class: theory -> xstring -> string  | 
53  | 
val intern_type: theory -> xstring -> string  | 
|
54  | 
val intern_const: theory -> xstring -> string  | 
|
| 35680 | 55  | 
val class_alias: binding -> class -> theory -> theory  | 
56  | 
val type_alias: binding -> string -> theory -> theory  | 
|
57  | 
val const_alias: binding -> string -> theory -> theory  | 
|
| 19462 | 58  | 
val arity_number: theory -> string -> int  | 
59  | 
val arity_sorts: theory -> string -> sort -> sort list  | 
|
| 
16442
 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 
wenzelm 
parents: 
16368 
diff
changeset
 | 
60  | 
val certify_class: theory -> class -> class  | 
| 
 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 
wenzelm 
parents: 
16368 
diff
changeset
 | 
61  | 
val certify_sort: theory -> sort -> sort  | 
| 
 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 
wenzelm 
parents: 
16368 
diff
changeset
 | 
62  | 
val certify_typ: theory -> typ -> typ  | 
| 
24273
 
1d4b411caf44
replaced certify_typ_syntax/abbrev by certify_typ_mode;
 
wenzelm 
parents: 
24260 
diff
changeset
 | 
63  | 
val certify_typ_mode: Type.mode -> theory -> typ -> typ  | 
| 
42383
 
0ae4ad40d7b5
simplified pretty printing context, which is only required for certain kernel operations;
 
wenzelm 
parents: 
42381 
diff
changeset
 | 
64  | 
val certify': bool -> Context.pretty -> bool -> Consts.T -> theory -> term -> term * typ * int  | 
| 18967 | 65  | 
val certify_term: theory -> term -> term * typ * int  | 
| 16494 | 66  | 
val cert_term: theory -> term -> term  | 
67  | 
val cert_prop: theory -> term -> term  | 
|
| 
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: 
37145 
diff
changeset
 | 
68  | 
val no_frees: Proof.context -> term -> term  | 
| 
 
70d3915c92f0
pretty printing: prefer regular Proof.context over Pretty.pp, which is mostly for special bootstrap purposes involving theory merge, for example;
 
wenzelm 
parents: 
37145 
diff
changeset
 | 
69  | 
val no_vars: Proof.context -> term -> term  | 
| 
42375
 
774df7c59508
report Name_Space.declare/define, relatively to context;
 
wenzelm 
parents: 
42360 
diff
changeset
 | 
70  | 
val add_types: Proof.context -> (binding * int * mixfix) list -> theory -> theory  | 
| 
 
774df7c59508
report Name_Space.declare/define, relatively to context;
 
wenzelm 
parents: 
42360 
diff
changeset
 | 
71  | 
val add_types_global: (binding * int * mixfix) list -> theory -> theory  | 
| 
 
774df7c59508
report Name_Space.declare/define, relatively to context;
 
wenzelm 
parents: 
42360 
diff
changeset
 | 
72  | 
val add_nonterminals: Proof.context -> binding list -> theory -> theory  | 
| 
 
774df7c59508
report Name_Space.declare/define, relatively to context;
 
wenzelm 
parents: 
42360 
diff
changeset
 | 
73  | 
val add_nonterminals_global: binding list -> theory -> theory  | 
| 
 
774df7c59508
report Name_Space.declare/define, relatively to context;
 
wenzelm 
parents: 
42360 
diff
changeset
 | 
74  | 
val add_type_abbrev: Proof.context -> binding * string list * typ -> theory -> theory  | 
| 
30343
 
79f022df8527
replace old bstring by binding for logical primitives: class, type, const etc.;
 
wenzelm 
parents: 
30280 
diff
changeset
 | 
75  | 
val add_syntax: (string * string * mixfix) list -> theory -> theory  | 
| 
 
79f022df8527
replace old bstring by binding for logical primitives: class, type, const etc.;
 
wenzelm 
parents: 
30280 
diff
changeset
 | 
76  | 
val add_syntax_i: (string * typ * mixfix) list -> theory -> theory  | 
| 
 
79f022df8527
replace old bstring by binding for logical primitives: class, type, const etc.;
 
wenzelm 
parents: 
30280 
diff
changeset
 | 
77  | 
val add_modesyntax: Syntax.mode -> (string * string * mixfix) list -> theory -> theory  | 
| 
 
79f022df8527
replace old bstring by binding for logical primitives: class, type, const etc.;
 
wenzelm 
parents: 
30280 
diff
changeset
 | 
78  | 
val add_modesyntax_i: Syntax.mode -> (string * typ * mixfix) list -> theory -> theory  | 
| 
 
79f022df8527
replace old bstring by binding for logical primitives: class, type, const etc.;
 
wenzelm 
parents: 
30280 
diff
changeset
 | 
79  | 
val del_modesyntax: Syntax.mode -> (string * string * mixfix) list -> theory -> theory  | 
| 
 
79f022df8527
replace old bstring by binding for logical primitives: class, type, const etc.;
 
wenzelm 
parents: 
30280 
diff
changeset
 | 
80  | 
val del_modesyntax_i: Syntax.mode -> (string * typ * mixfix) list -> theory -> theory  | 
| 
35412
 
b8dead547d9e
more uniform treatment of syntax for types vs. consts;
 
wenzelm 
parents: 
35395 
diff
changeset
 | 
81  | 
val type_notation: bool -> Syntax.mode -> (typ * mixfix) list -> theory -> theory  | 
| 
26667
 
660b69b3c28a
removed obsolete SIGN_THEORY -- no name aliases in structure Theory;
 
wenzelm 
parents: 
26637 
diff
changeset
 | 
82  | 
val notation: bool -> Syntax.mode -> (term * mixfix) list -> theory -> theory  | 
| 
42375
 
774df7c59508
report Name_Space.declare/define, relatively to context;
 
wenzelm 
parents: 
42360 
diff
changeset
 | 
83  | 
val declare_const: Proof.context -> (binding * typ) * mixfix -> theory -> term * theory  | 
| 
 
774df7c59508
report Name_Space.declare/define, relatively to context;
 
wenzelm 
parents: 
42360 
diff
changeset
 | 
84  | 
val declare_const_global: (binding * typ) * mixfix -> theory -> term * theory  | 
| 
30343
 
79f022df8527
replace old bstring by binding for logical primitives: class, type, const etc.;
 
wenzelm 
parents: 
30280 
diff
changeset
 | 
85  | 
val add_consts: (binding * string * mixfix) list -> theory -> theory  | 
| 
 
79f022df8527
replace old bstring by binding for logical primitives: class, type, const etc.;
 
wenzelm 
parents: 
30280 
diff
changeset
 | 
86  | 
val add_consts_i: (binding * typ * mixfix) list -> theory -> theory  | 
| 
33173
 
b8ca12f6681a
eliminated obsolete tags for types/consts -- now handled via name space, in strongly typed fashion;
 
wenzelm 
parents: 
33172 
diff
changeset
 | 
87  | 
val add_abbrev: string -> binding * term -> theory -> (term * term) * theory  | 
| 
25049
 
ec0547a4fcf0
add_abbrev: removed Logic.legacy_varifyT, do not unvarify result (again);
 
wenzelm 
parents: 
25042 
diff
changeset
 | 
88  | 
val revert_abbrev: string -> string -> theory -> theory  | 
| 
24761
 
d762ab297a07
removed obsolete external interface add_const_constraint;
 
wenzelm 
parents: 
24732 
diff
changeset
 | 
89  | 
val add_const_constraint: string * typ option -> theory -> theory  | 
| 
30343
 
79f022df8527
replace old bstring by binding for logical primitives: class, type, const etc.;
 
wenzelm 
parents: 
30280 
diff
changeset
 | 
90  | 
val primitive_class: binding * class list -> theory -> theory  | 
| 22811 | 91  | 
val primitive_classrel: class * class -> theory -> theory  | 
92  | 
val primitive_arity: arity -> theory -> theory  | 
|
| 
26667
 
660b69b3c28a
removed obsolete SIGN_THEORY -- no name aliases in structure Theory;
 
wenzelm 
parents: 
26637 
diff
changeset
 | 
93  | 
val add_trfuns:  | 
| 
42224
 
578a51fae383
discontinued special treatment of structure Ast: no pervasive content, no inclusion in structure Syntax;
 
wenzelm 
parents: 
42204 
diff
changeset
 | 
94  | 
(string * (Ast.ast list -> Ast.ast)) list *  | 
| 
26667
 
660b69b3c28a
removed obsolete SIGN_THEORY -- no name aliases in structure Theory;
 
wenzelm 
parents: 
26637 
diff
changeset
 | 
95  | 
(string * (term list -> term)) list *  | 
| 
 
660b69b3c28a
removed obsolete SIGN_THEORY -- no name aliases in structure Theory;
 
wenzelm 
parents: 
26637 
diff
changeset
 | 
96  | 
(string * (term list -> term)) list *  | 
| 
42224
 
578a51fae383
discontinued special treatment of structure Ast: no pervasive content, no inclusion in structure Syntax;
 
wenzelm 
parents: 
42204 
diff
changeset
 | 
97  | 
(string * (Ast.ast list -> Ast.ast)) list -> theory -> theory  | 
| 
42247
 
12fe41a92cd5
typed_print_translation: discontinued show_sorts argument;
 
wenzelm 
parents: 
42224 
diff
changeset
 | 
98  | 
val add_trfunsT: (string * (typ -> term list -> term)) list -> theory -> theory  | 
| 
26667
 
660b69b3c28a
removed obsolete SIGN_THEORY -- no name aliases in structure Theory;
 
wenzelm 
parents: 
26637 
diff
changeset
 | 
99  | 
val add_advanced_trfuns:  | 
| 
42224
 
578a51fae383
discontinued special treatment of structure Ast: no pervasive content, no inclusion in structure Syntax;
 
wenzelm 
parents: 
42204 
diff
changeset
 | 
100  | 
(string * (Proof.context -> Ast.ast list -> Ast.ast)) list *  | 
| 
26667
 
660b69b3c28a
removed obsolete SIGN_THEORY -- no name aliases in structure Theory;
 
wenzelm 
parents: 
26637 
diff
changeset
 | 
101  | 
(string * (Proof.context -> term list -> term)) list *  | 
| 
 
660b69b3c28a
removed obsolete SIGN_THEORY -- no name aliases in structure Theory;
 
wenzelm 
parents: 
26637 
diff
changeset
 | 
102  | 
(string * (Proof.context -> term list -> term)) list *  | 
| 
42224
 
578a51fae383
discontinued special treatment of structure Ast: no pervasive content, no inclusion in structure Syntax;
 
wenzelm 
parents: 
42204 
diff
changeset
 | 
103  | 
(string * (Proof.context -> Ast.ast list -> Ast.ast)) list -> theory -> theory  | 
| 
26667
 
660b69b3c28a
removed obsolete SIGN_THEORY -- no name aliases in structure Theory;
 
wenzelm 
parents: 
26637 
diff
changeset
 | 
104  | 
val add_advanced_trfunsT:  | 
| 
42247
 
12fe41a92cd5
typed_print_translation: discontinued show_sorts argument;
 
wenzelm 
parents: 
42224 
diff
changeset
 | 
105  | 
(string * (Proof.context -> typ -> term list -> term)) list -> theory -> theory  | 
| 
42224
 
578a51fae383
discontinued special treatment of structure Ast: no pervasive content, no inclusion in structure Syntax;
 
wenzelm 
parents: 
42204 
diff
changeset
 | 
106  | 
val add_trrules: Ast.ast Syntax.trrule list -> theory -> theory  | 
| 
 
578a51fae383
discontinued special treatment of structure Ast: no pervasive content, no inclusion in structure Syntax;
 
wenzelm 
parents: 
42204 
diff
changeset
 | 
107  | 
val del_trrules: Ast.ast Syntax.trrule list -> theory -> theory  | 
| 33724 | 108  | 
val new_group: theory -> theory  | 
109  | 
val reset_group: theory -> theory  | 
|
| 
26667
 
660b69b3c28a
removed obsolete SIGN_THEORY -- no name aliases in structure Theory;
 
wenzelm 
parents: 
26637 
diff
changeset
 | 
110  | 
val add_path: string -> theory -> theory  | 
| 30421 | 111  | 
val root_path: theory -> theory  | 
| 
26667
 
660b69b3c28a
removed obsolete SIGN_THEORY -- no name aliases in structure Theory;
 
wenzelm 
parents: 
26637 
diff
changeset
 | 
112  | 
val parent_path: theory -> theory  | 
| 30469 | 113  | 
val mandatory_path: string -> theory -> theory  | 
| 
35200
 
aaddb2b526d6
more systematic treatment of qualified names derived from binding;
 
wenzelm 
parents: 
35129 
diff
changeset
 | 
114  | 
val qualified_path: bool -> binding -> theory -> theory  | 
| 
26667
 
660b69b3c28a
removed obsolete SIGN_THEORY -- no name aliases in structure Theory;
 
wenzelm 
parents: 
26637 
diff
changeset
 | 
115  | 
val local_path: theory -> theory  | 
| 
 
660b69b3c28a
removed obsolete SIGN_THEORY -- no name aliases in structure Theory;
 
wenzelm 
parents: 
26637 
diff
changeset
 | 
116  | 
val restore_naming: theory -> theory -> theory  | 
| 
 
660b69b3c28a
removed obsolete SIGN_THEORY -- no name aliases in structure Theory;
 
wenzelm 
parents: 
26637 
diff
changeset
 | 
117  | 
val hide_class: bool -> string -> theory -> theory  | 
| 
 
660b69b3c28a
removed obsolete SIGN_THEORY -- no name aliases in structure Theory;
 
wenzelm 
parents: 
26637 
diff
changeset
 | 
118  | 
val hide_type: bool -> string -> theory -> theory  | 
| 
 
660b69b3c28a
removed obsolete SIGN_THEORY -- no name aliases in structure Theory;
 
wenzelm 
parents: 
26637 
diff
changeset
 | 
119  | 
val hide_const: bool -> string -> theory -> theory  | 
| 
16442
 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 
wenzelm 
parents: 
16368 
diff
changeset
 | 
120  | 
end  | 
| 5642 | 121  | 
|
| 
16442
 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 
wenzelm 
parents: 
16368 
diff
changeset
 | 
122  | 
structure Sign: SIGN =  | 
| 143 | 123  | 
struct  | 
| 0 | 124  | 
|
| 
16442
 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 
wenzelm 
parents: 
16368 
diff
changeset
 | 
125  | 
(** datatype sign **)  | 
| 16337 | 126  | 
|
| 
16442
 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 
wenzelm 
parents: 
16368 
diff
changeset
 | 
127  | 
datatype sign = Sign of  | 
| 
33095
 
bbd52d2f8696
renamed NameSpace to Name_Space -- also to emphasize its subtle change in semantics;
 
wenzelm 
parents: 
32789 
diff
changeset
 | 
128  | 
 {naming: Name_Space.naming,    (*common naming conventions*)
 | 
| 18062 | 129  | 
syn: Syntax.syntax, (*concrete syntax for terms, types, sorts*)  | 
130  | 
tsig: Type.tsig, (*order-sorted signature of types*)  | 
|
131  | 
consts: Consts.T}; (*polymorphic constants*)  | 
|
| 
16442
 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 
wenzelm 
parents: 
16368 
diff
changeset
 | 
132  | 
|
| 
 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 
wenzelm 
parents: 
16368 
diff
changeset
 | 
133  | 
fun make_sign (naming, syn, tsig, consts) =  | 
| 
 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 
wenzelm 
parents: 
16368 
diff
changeset
 | 
134  | 
  Sign {naming = naming, syn = syn, tsig = tsig, consts = consts};
 | 
| 
 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 
wenzelm 
parents: 
16368 
diff
changeset
 | 
135  | 
|
| 35801 | 136  | 
structure Data = Theory_Data_PP  | 
| 22846 | 137  | 
(  | 
| 
16442
 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 
wenzelm 
parents: 
16368 
diff
changeset
 | 
138  | 
type T = sign;  | 
| 17405 | 139  | 
  fun extend (Sign {syn, tsig, consts, ...}) =
 | 
| 
33095
 
bbd52d2f8696
renamed NameSpace to Name_Space -- also to emphasize its subtle change in semantics;
 
wenzelm 
parents: 
32789 
diff
changeset
 | 
140  | 
make_sign (Name_Space.default_naming, syn, tsig, consts);  | 
| 
16442
 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 
wenzelm 
parents: 
16368 
diff
changeset
 | 
141  | 
|
| 18062 | 142  | 
val empty =  | 
| 42294 | 143  | 
make_sign (Name_Space.default_naming, Syntax.empty_syntax, Type.empty_tsig, Consts.empty);  | 
| 
16442
 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 
wenzelm 
parents: 
16368 
diff
changeset
 | 
144  | 
|
| 
 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 
wenzelm 
parents: 
16368 
diff
changeset
 | 
145  | 
fun merge pp (sign1, sign2) =  | 
| 
 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 
wenzelm 
parents: 
16368 
diff
changeset
 | 
146  | 
let  | 
| 42387 | 147  | 
val ctxt = Syntax.init_pretty pp;  | 
| 18062 | 148  | 
      val Sign {naming = _, syn = syn1, tsig = tsig1, consts = consts1} = sign1;
 | 
149  | 
      val Sign {naming = _, syn = syn2, tsig = tsig2, consts = consts2} = sign2;
 | 
|
| 
16442
 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 
wenzelm 
parents: 
16368 
diff
changeset
 | 
150  | 
|
| 
33095
 
bbd52d2f8696
renamed NameSpace to Name_Space -- also to emphasize its subtle change in semantics;
 
wenzelm 
parents: 
32789 
diff
changeset
 | 
151  | 
val naming = Name_Space.default_naming;  | 
| 
16597
 
5a5229a55964
eliminated separate syn type -- advanced trfuns already part of Syntax.syntax;
 
wenzelm 
parents: 
16536 
diff
changeset
 | 
152  | 
val syn = Syntax.merge_syntaxes syn1 syn2;  | 
| 42387 | 153  | 
val tsig = Type.merge_tsig ctxt (tsig1, tsig2);  | 
| 18062 | 154  | 
val consts = Consts.merge (consts1, consts2);  | 
155  | 
in make_sign (naming, syn, tsig, consts) end;  | 
|
| 22846 | 156  | 
);  | 
| 
16442
 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 
wenzelm 
parents: 
16368 
diff
changeset
 | 
157  | 
|
| 35801 | 158  | 
fun rep_sg thy = Data.get thy |> (fn Sign args => args);  | 
| 
16442
 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 
wenzelm 
parents: 
16368 
diff
changeset
 | 
159  | 
|
| 35801 | 160  | 
fun map_sign f = Data.map (fn Sign {naming, syn, tsig, consts} =>
 | 
| 
16442
 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 
wenzelm 
parents: 
16368 
diff
changeset
 | 
161  | 
make_sign (f (naming, syn, tsig, consts)));  | 
| 
 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 
wenzelm 
parents: 
16368 
diff
changeset
 | 
162  | 
|
| 
 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 
wenzelm 
parents: 
16368 
diff
changeset
 | 
163  | 
fun map_naming f = map_sign (fn (naming, syn, tsig, consts) => (f naming, syn, tsig, consts));  | 
| 
 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 
wenzelm 
parents: 
16368 
diff
changeset
 | 
164  | 
fun map_syn f = map_sign (fn (naming, syn, tsig, consts) => (naming, f syn, tsig, consts));  | 
| 
 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 
wenzelm 
parents: 
16368 
diff
changeset
 | 
165  | 
fun map_tsig f = map_sign (fn (naming, syn, tsig, consts) => (naming, syn, f tsig, consts));  | 
| 
 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 
wenzelm 
parents: 
16368 
diff
changeset
 | 
166  | 
fun map_consts f = map_sign (fn (naming, syn, tsig, consts) => (naming, syn, tsig, f consts));  | 
| 
 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 
wenzelm 
parents: 
16368 
diff
changeset
 | 
167  | 
|
| 16337 | 168  | 
|
169  | 
(* naming *)  | 
|
170  | 
||
| 
16442
 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 
wenzelm 
parents: 
16368 
diff
changeset
 | 
171  | 
val naming_of = #naming o rep_sg;  | 
| 28792 | 172  | 
|
| 
33095
 
bbd52d2f8696
renamed NameSpace to Name_Space -- also to emphasize its subtle change in semantics;
 
wenzelm 
parents: 
32789 
diff
changeset
 | 
173  | 
val full_name = Name_Space.full_name o naming_of;  | 
| 
 
bbd52d2f8696
renamed NameSpace to Name_Space -- also to emphasize its subtle change in semantics;
 
wenzelm 
parents: 
32789 
diff
changeset
 | 
174  | 
fun full_name_path thy path = Name_Space.full_name (Name_Space.add_path path (naming_of thy));  | 
| 
30343
 
79f022df8527
replace old bstring by binding for logical primitives: class, type, const etc.;
 
wenzelm 
parents: 
30280 
diff
changeset
 | 
175  | 
|
| 
33095
 
bbd52d2f8696
renamed NameSpace to Name_Space -- also to emphasize its subtle change in semantics;
 
wenzelm 
parents: 
32789 
diff
changeset
 | 
176  | 
fun full_bname thy = Name_Space.full_name (naming_of thy) o Binding.name;  | 
| 
30343
 
79f022df8527
replace old bstring by binding for logical primitives: class, type, const etc.;
 
wenzelm 
parents: 
30280 
diff
changeset
 | 
177  | 
fun full_bname_path thy path = full_name_path thy path o Binding.name;  | 
| 14645 | 178  | 
|
179  | 
||
180  | 
(* syntax *)  | 
|
181  | 
||
| 
16597
 
5a5229a55964
eliminated separate syn type -- advanced trfuns already part of Syntax.syntax;
 
wenzelm 
parents: 
16536 
diff
changeset
 | 
182  | 
val syn_of = #syn o rep_sg;  | 
| 14645 | 183  | 
|
| 0 | 184  | 
|
| 16337 | 185  | 
(* type signature *)  | 
186  | 
||
187  | 
val tsig_of = #tsig o rep_sg;  | 
|
| 24732 | 188  | 
|
| 19642 | 189  | 
val classes_of = #2 o #classes o Type.rep_tsig o tsig_of;  | 
| 
21932
 
7d592dc078e3
replaced classes by all_classes (topologically sorted);
 
wenzelm 
parents: 
21796 
diff
changeset
 | 
190  | 
val all_classes = Sorts.all_classes o classes_of;  | 
| 19642 | 191  | 
val super_classes = Sorts.super_classes o classes_of;  | 
| 24732 | 192  | 
val minimize_sort = Sorts.minimize_sort o classes_of;  | 
193  | 
val complete_sort = Sorts.complete_sort o classes_of;  | 
|
194  | 
||
| 36449 | 195  | 
val set_defsort = map_tsig o Type.set_defsort;  | 
| 4844 | 196  | 
val defaultS = Type.defaultS o tsig_of;  | 
| 4568 | 197  | 
val subsort = Type.subsort o tsig_of;  | 
| 7640 | 198  | 
val of_sort = Type.of_sort o tsig_of;  | 
| 
39290
 
44e4d8dfd6bf
load type_infer.ML later -- proper context for Type_Infer.infer_types;
 
wenzelm 
parents: 
39289 
diff
changeset
 | 
199  | 
val inter_sort = Type.inter_sort o tsig_of;  | 
| 7640 | 200  | 
val witness_sorts = Type.witness_sorts o tsig_of;  | 
| 24732 | 201  | 
val is_logtype = member (op =) o Type.logical_types o tsig_of;  | 
202  | 
||
| 
14784
 
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
 
wenzelm 
parents: 
14700 
diff
changeset
 | 
203  | 
val typ_instance = Type.typ_instance o tsig_of;  | 
| 19427 | 204  | 
fun typ_equiv thy (T, U) = typ_instance thy (T, U) andalso typ_instance thy (U, T);  | 
| 
16941
 
0bda949449ee
added add_const_constraint(_i), const_constraint;
 
wenzelm 
parents: 
16894 
diff
changeset
 | 
205  | 
val typ_match = Type.typ_match o tsig_of;  | 
| 
 
0bda949449ee
added add_const_constraint(_i), const_constraint;
 
wenzelm 
parents: 
16894 
diff
changeset
 | 
206  | 
val typ_unify = Type.unify o tsig_of;  | 
| 4256 | 207  | 
|
208  | 
||
| 18062 | 209  | 
(* polymorphic constants *)  | 
| 
16941
 
0bda949449ee
added add_const_constraint(_i), const_constraint;
 
wenzelm 
parents: 
16894 
diff
changeset
 | 
210  | 
|
| 18062 | 211  | 
val consts_of = #consts o rep_sg;  | 
| 21722 | 212  | 
val the_const_constraint = Consts.the_constraint o consts_of;  | 
| 
43794
 
49cbbe2768a8
sub-structural sharing after Syntax.check phase, with global interning of logical entities (the latter is relevant when bypassing default parsing via YXML);
 
wenzelm 
parents: 
43278 
diff
changeset
 | 
213  | 
val the_const_type = #2 oo (Consts.the_const o consts_of);  | 
| 18062 | 214  | 
val const_type = try o the_const_type;  | 
| 21722 | 215  | 
val const_monomorphic = Consts.is_monomorphic o consts_of;  | 
| 18062 | 216  | 
val const_typargs = Consts.typargs o consts_of;  | 
| 18164 | 217  | 
val const_instance = Consts.instance o consts_of;  | 
| 4256 | 218  | 
|
| 26268 | 219  | 
fun mk_const thy (c, Ts) = Const (c, const_instance thy (c, Ts));  | 
220  | 
||
| 16894 | 221  | 
val declared_tyname = Symtab.defined o #2 o #types o Type.rep_tsig o tsig_of;  | 
| 
24761
 
d762ab297a07
removed obsolete external interface add_const_constraint;
 
wenzelm 
parents: 
24732 
diff
changeset
 | 
222  | 
val declared_const = can o the_const_constraint;  | 
| 620 | 223  | 
|
| 402 | 224  | 
|
| 0 | 225  | 
|
| 42359 | 226  | 
(** name spaces **)  | 
| 16337 | 227  | 
|
| 
35669
 
a91c7ed801b8
added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
 
wenzelm 
parents: 
35429 
diff
changeset
 | 
228  | 
val class_space = Type.class_space o tsig_of;  | 
| 
 
a91c7ed801b8
added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
 
wenzelm 
parents: 
35429 
diff
changeset
 | 
229  | 
val type_space = Type.type_space o tsig_of;  | 
| 18967 | 230  | 
val const_space = Consts.space_of o consts_of;  | 
| 14645 | 231  | 
|
| 42359 | 232  | 
val intern_class = Name_Space.intern o class_space;  | 
233  | 
val intern_type = Name_Space.intern o type_space;  | 
|
234  | 
val intern_const = Name_Space.intern o const_space;  | 
|
235  | 
||
| 35680 | 236  | 
fun class_alias b c thy = map_tsig (Type.class_alias (naming_of thy) b c) thy;  | 
237  | 
fun type_alias b c thy = map_tsig (Type.type_alias (naming_of thy) b c) thy;  | 
|
238  | 
fun const_alias b c thy = map_consts (Consts.alias (naming_of thy) b c) thy;  | 
|
239  | 
||
| 14645 | 240  | 
|
241  | 
||
| 16337 | 242  | 
(** certify entities **) (*exception TYPE*)  | 
| 8898 | 243  | 
|
| 16337 | 244  | 
(* certify wrt. type signature *)  | 
| 8898 | 245  | 
|
| 19462 | 246  | 
val arity_number = Type.arity_number o tsig_of;  | 
| 
42383
 
0ae4ad40d7b5
simplified pretty printing context, which is only required for certain kernel operations;
 
wenzelm 
parents: 
42381 
diff
changeset
 | 
247  | 
fun arity_sorts thy = Type.arity_sorts (Context.pretty_global thy) (tsig_of thy);  | 
| 19462 | 248  | 
|
| 42388 | 249  | 
val certify_class = Type.cert_class o tsig_of;  | 
250  | 
val certify_sort = Type.cert_sort o tsig_of;  | 
|
251  | 
val certify_typ = Type.cert_typ o tsig_of;  | 
|
| 
24273
 
1d4b411caf44
replaced certify_typ_syntax/abbrev by certify_typ_mode;
 
wenzelm 
parents: 
24260 
diff
changeset
 | 
252  | 
fun certify_typ_mode mode = Type.cert_typ_mode mode o tsig_of;  | 
| 
10443
 
0a68dc9edba5
added certify_tycon, certify_tyabbr, certify_const;
 
wenzelm 
parents: 
10404 
diff
changeset
 | 
253  | 
|
| 
4961
 
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
 
wenzelm 
parents: 
4951 
diff
changeset
 | 
254  | 
|
| 18967 | 255  | 
(* certify term/prop *)  | 
| 
4961
 
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
 
wenzelm 
parents: 
4951 
diff
changeset
 | 
256  | 
|
| 14987 | 257  | 
local  | 
| 
1494
 
22f67e796445
added nodup_Vars check in cterm_of. Prevents same var with distinct types.
 
nipkow 
parents: 
1460 
diff
changeset
 | 
258  | 
|
| 16337 | 259  | 
fun type_check pp tm =  | 
| 
4961
 
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
 
wenzelm 
parents: 
4951 
diff
changeset
 | 
260  | 
let  | 
| 
39289
 
92b50c8bb67b
common Type.appl_error, which also covers explicit constraints;
 
wenzelm 
parents: 
39137 
diff
changeset
 | 
261  | 
fun err_appl bs t T u U =  | 
| 
4961
 
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
 
wenzelm 
parents: 
4951 
diff
changeset
 | 
262  | 
let  | 
| 10404 | 263  | 
val xs = map Free bs; (*we do not rename here*)  | 
| 
4961
 
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
 
wenzelm 
parents: 
4951 
diff
changeset
 | 
264  | 
val t' = subst_bounds (xs, t);  | 
| 
 
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
 
wenzelm 
parents: 
4951 
diff
changeset
 | 
265  | 
val u' = subst_bounds (xs, u);  | 
| 
42383
 
0ae4ad40d7b5
simplified pretty printing context, which is only required for certain kernel operations;
 
wenzelm 
parents: 
42381 
diff
changeset
 | 
266  | 
val msg = Type.appl_error (Syntax.init_pretty pp) t' T u' U;  | 
| 16337 | 267  | 
in raise TYPE (msg, [T, U], [t', u']) end;  | 
| 
4961
 
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
 
wenzelm 
parents: 
4951 
diff
changeset
 | 
268  | 
|
| 
 
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
 
wenzelm 
parents: 
4951 
diff
changeset
 | 
269  | 
fun typ_of (_, Const (_, T)) = T  | 
| 
 
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
 
wenzelm 
parents: 
4951 
diff
changeset
 | 
270  | 
| typ_of (_, Free (_, T)) = T  | 
| 
 
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
 
wenzelm 
parents: 
4951 
diff
changeset
 | 
271  | 
| typ_of (_, Var (_, T)) = T  | 
| 43278 | 272  | 
| typ_of (bs, Bound i) = snd (nth bs i handle General.Subscript =>  | 
| 
4961
 
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
 
wenzelm 
parents: 
4951 
diff
changeset
 | 
273  | 
          raise TYPE ("Loose bound variable: B." ^ string_of_int i, [], [Bound i]))
 | 
| 
 
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
 
wenzelm 
parents: 
4951 
diff
changeset
 | 
274  | 
| typ_of (bs, Abs (x, T, body)) = T --> typ_of ((x, T) :: bs, body)  | 
| 
 
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
 
wenzelm 
parents: 
4951 
diff
changeset
 | 
275  | 
| typ_of (bs, t $ u) =  | 
| 
 
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
 
wenzelm 
parents: 
4951 
diff
changeset
 | 
276  | 
let val T = typ_of (bs, t) and U = typ_of (bs, u) in  | 
| 
 
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
 
wenzelm 
parents: 
4951 
diff
changeset
 | 
277  | 
(case T of  | 
| 
 
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
 
wenzelm 
parents: 
4951 
diff
changeset
 | 
278  | 
              Type ("fun", [T1, T2]) =>
 | 
| 
39289
 
92b50c8bb67b
common Type.appl_error, which also covers explicit constraints;
 
wenzelm 
parents: 
39137 
diff
changeset
 | 
279  | 
if T1 = U then T2 else err_appl bs t T u U  | 
| 
 
92b50c8bb67b
common Type.appl_error, which also covers explicit constraints;
 
wenzelm 
parents: 
39137 
diff
changeset
 | 
280  | 
| _ => err_appl bs t T u U)  | 
| 
4961
 
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
 
wenzelm 
parents: 
4951 
diff
changeset
 | 
281  | 
end;  | 
| 18967 | 282  | 
in typ_of ([], tm) end;  | 
| 
4961
 
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
 
wenzelm 
parents: 
4951 
diff
changeset
 | 
283  | 
|
| 18967 | 284  | 
fun err msg = raise TYPE (msg, [], []);  | 
285  | 
||
286  | 
fun check_vars (t $ u) = (check_vars t; check_vars u)  | 
|
287  | 
| check_vars (Abs (_, _, t)) = check_vars t  | 
|
| 27205 | 288  | 
| check_vars (Free (x, _)) =  | 
| 
30364
 
577edc39b501
moved basic algebra of long names from structure NameSpace to Long_Name;
 
wenzelm 
parents: 
30343 
diff
changeset
 | 
289  | 
      if Long_Name.is_qualified x then err ("Malformed variable: " ^ quote x) else ()
 | 
| 18967 | 290  | 
| check_vars (Var (xi as (_, i), _)) =  | 
291  | 
      if i < 0 then err ("Malformed variable: " ^ quote (Term.string_of_vname xi)) else ()
 | 
|
292  | 
| check_vars _ = ();  | 
|
| 0 | 293  | 
|
| 14987 | 294  | 
in  | 
295  | 
||
| 
24674
 
4ade7ac6a21c
certify': proper do_expand argument (which observes force_expand consts) instead of home-grown normalize;
 
wenzelm 
parents: 
24517 
diff
changeset
 | 
296  | 
fun certify' prop pp do_expand consts thy tm =  | 
| 251 | 297  | 
let  | 
| 18967 | 298  | 
val _ = check_vars tm;  | 
| 
20548
 
8ef25fe585a8
renamed Term.map_term_types to Term.map_types (cf. Term.fold_types);
 
wenzelm 
parents: 
20330 
diff
changeset
 | 
299  | 
val tm' = Term.map_types (certify_typ thy) tm;  | 
| 18967 | 300  | 
val T = type_check pp tm';  | 
301  | 
val _ = if prop andalso T <> propT then err "Term not of type prop" else ();  | 
|
| 
24674
 
4ade7ac6a21c
certify': proper do_expand argument (which observes force_expand consts) instead of home-grown normalize;
 
wenzelm 
parents: 
24517 
diff
changeset
 | 
302  | 
val tm'' = Consts.certify pp (tsig_of thy) do_expand consts tm';  | 
| 18967 | 303  | 
in (if tm = tm'' then tm else tm'', T, Term.maxidx_of_term tm'') end;  | 
| 169 | 304  | 
|
| 
42383
 
0ae4ad40d7b5
simplified pretty printing context, which is only required for certain kernel operations;
 
wenzelm 
parents: 
42381 
diff
changeset
 | 
305  | 
fun certify_term thy = certify' false (Context.pretty_global thy) true (consts_of thy) thy;  | 
| 
 
0ae4ad40d7b5
simplified pretty printing context, which is only required for certain kernel operations;
 
wenzelm 
parents: 
42381 
diff
changeset
 | 
306  | 
fun cert_term_abbrev thy =  | 
| 
 
0ae4ad40d7b5
simplified pretty printing context, which is only required for certain kernel operations;
 
wenzelm 
parents: 
42381 
diff
changeset
 | 
307  | 
#1 o certify' false (Context.pretty_global thy) false (consts_of thy) thy;  | 
| 18967 | 308  | 
val cert_term = #1 oo certify_term;  | 
| 
42383
 
0ae4ad40d7b5
simplified pretty printing context, which is only required for certain kernel operations;
 
wenzelm 
parents: 
42381 
diff
changeset
 | 
309  | 
fun cert_prop thy = #1 o certify' true (Context.pretty_global thy) true (consts_of thy) thy;  | 
| 251 | 310  | 
|
| 14987 | 311  | 
end;  | 
312  | 
||
| 251 | 313  | 
|
| 18941 | 314  | 
(* specifications *)  | 
315  | 
||
| 
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: 
37145 
diff
changeset
 | 
316  | 
fun no_variables kind add addT mk mkT ctxt tm =  | 
| 21741 | 317  | 
(case (add tm [], addT tm []) of  | 
| 18941 | 318  | 
([], []) => tm  | 
| 25117 | 319  | 
| (frees, tfrees) => error (Pretty.string_of (Pretty.block  | 
320  | 
      (Pretty.str ("Illegal " ^ kind ^ " variable(s) in term:") :: Pretty.brk 1 ::
 | 
|
| 
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: 
37145 
diff
changeset
 | 
321  | 
Pretty.commas  | 
| 
 
70d3915c92f0
pretty printing: prefer regular Proof.context over Pretty.pp, which is mostly for special bootstrap purposes involving theory merge, for example;
 
wenzelm 
parents: 
37145 
diff
changeset
 | 
322  | 
(map (Syntax.pretty_term ctxt o mk) frees @ map (Syntax.pretty_typ ctxt o mkT) tfrees)))));  | 
| 21741 | 323  | 
|
324  | 
val no_frees = no_variables "free" Term.add_frees Term.add_tfrees Free TFree;  | 
|
325  | 
val no_vars = no_variables "schematic" Term.add_vars Term.add_tvars Var TVar;  | 
|
| 18941 | 326  | 
|
327  | 
||
| 16337 | 328  | 
|
329  | 
(** signature extension functions **) (*exception ERROR/TYPE*)  | 
|
| 386 | 330  | 
|
331  | 
(* add type constructors *)  | 
|
332  | 
||
| 
42375
 
774df7c59508
report Name_Space.declare/define, relatively to context;
 
wenzelm 
parents: 
42360 
diff
changeset
 | 
333  | 
fun add_types ctxt types thy = thy |> map_sign (fn (naming, syn, tsig, consts) =>  | 
| 14856 | 334  | 
let  | 
| 
36179
 
f45c708bcc01
replaced old Sign.add_tyabbrs(_i) by Sign.add_type_abbrev (without mixfix);
 
wenzelm 
parents: 
36157 
diff
changeset
 | 
335  | 
fun type_syntax (b, n, mx) =  | 
| 
42290
 
b1f544c84040
discontinued special treatment of structure Lexicon;
 
wenzelm 
parents: 
42288 
diff
changeset
 | 
336  | 
(Lexicon.mark_type (Name_Space.full_name naming b), Mixfix.make_type n, mx);  | 
| 
36179
 
f45c708bcc01
replaced old Sign.add_tyabbrs(_i) by Sign.add_type_abbrev (without mixfix);
 
wenzelm 
parents: 
36157 
diff
changeset
 | 
337  | 
val syn' = Syntax.update_type_gram true Syntax.mode_default (map type_syntax types) syn;  | 
| 
42375
 
774df7c59508
report Name_Space.declare/define, relatively to context;
 
wenzelm 
parents: 
42360 
diff
changeset
 | 
338  | 
val tsig' = fold (fn (a, n, _) => Type.add_type ctxt naming (a, n)) types tsig;  | 
| 
16442
 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 
wenzelm 
parents: 
16368 
diff
changeset
 | 
339  | 
in (naming, syn', tsig', consts) end);  | 
| 
 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 
wenzelm 
parents: 
16368 
diff
changeset
 | 
340  | 
|
| 
42375
 
774df7c59508
report Name_Space.declare/define, relatively to context;
 
wenzelm 
parents: 
42360 
diff
changeset
 | 
341  | 
fun add_types_global types thy =  | 
| 
 
774df7c59508
report Name_Space.declare/define, relatively to context;
 
wenzelm 
parents: 
42360 
diff
changeset
 | 
342  | 
add_types (Syntax.init_pretty_global thy) types thy;  | 
| 
 
774df7c59508
report Name_Space.declare/define, relatively to context;
 
wenzelm 
parents: 
42360 
diff
changeset
 | 
343  | 
|
| 16337 | 344  | 
|
345  | 
(* add nonterminals *)  | 
|
346  | 
||
| 
42375
 
774df7c59508
report Name_Space.declare/define, relatively to context;
 
wenzelm 
parents: 
42360 
diff
changeset
 | 
347  | 
fun add_nonterminals ctxt ns = map_sign (fn (naming, syn, tsig, consts) =>  | 
| 
 
774df7c59508
report Name_Space.declare/define, relatively to context;
 
wenzelm 
parents: 
42360 
diff
changeset
 | 
348  | 
(naming, syn, fold (Type.add_nonterminal ctxt naming) ns tsig, consts));  | 
| 
 
774df7c59508
report Name_Space.declare/define, relatively to context;
 
wenzelm 
parents: 
42360 
diff
changeset
 | 
349  | 
|
| 
 
774df7c59508
report Name_Space.declare/define, relatively to context;
 
wenzelm 
parents: 
42360 
diff
changeset
 | 
350  | 
fun add_nonterminals_global ns thy =  | 
| 
 
774df7c59508
report Name_Space.declare/define, relatively to context;
 
wenzelm 
parents: 
42360 
diff
changeset
 | 
351  | 
add_nonterminals (Syntax.init_pretty_global thy) ns thy;  | 
| 386 | 352  | 
|
353  | 
||
354  | 
(* add type abbreviations *)  | 
|
355  | 
||
| 
42375
 
774df7c59508
report Name_Space.declare/define, relatively to context;
 
wenzelm 
parents: 
42360 
diff
changeset
 | 
356  | 
fun add_type_abbrev ctxt abbr = map_sign (fn (naming, syn, tsig, consts) =>  | 
| 
 
774df7c59508
report Name_Space.declare/define, relatively to context;
 
wenzelm 
parents: 
42360 
diff
changeset
 | 
357  | 
(naming, syn, Type.add_abbrev ctxt naming abbr tsig, consts));  | 
| 
14784
 
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
 
wenzelm 
parents: 
14700 
diff
changeset
 | 
358  | 
|
| 
 
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
 
wenzelm 
parents: 
14700 
diff
changeset
 | 
359  | 
|
| 16337 | 360  | 
(* modify syntax *)  | 
361  | 
||
| 
25366
 
05c2ae18cc51
tyabbr/syntax/consts: replaced obsolete read_typ by Syntax.parse_typ/certify_typ;
 
wenzelm 
parents: 
25351 
diff
changeset
 | 
362  | 
fun gen_syntax change_gram parse_typ mode args thy =  | 
| 16337 | 363  | 
let  | 
| 42360 | 364  | 
val ctxt = Proof_Context.init_global thy;  | 
| 
25366
 
05c2ae18cc51
tyabbr/syntax/consts: replaced obsolete read_typ by Syntax.parse_typ/certify_typ;
 
wenzelm 
parents: 
25351 
diff
changeset
 | 
365  | 
fun prep (c, T, mx) = (c, certify_typ_mode Type.mode_syntax thy (parse_typ ctxt T), mx)  | 
| 35129 | 366  | 
      handle ERROR msg => cat_error msg ("in syntax declaration " ^ quote c);
 | 
| 20784 | 367  | 
in thy |> map_syn (change_gram (is_logtype thy) mode (map prep args)) end;  | 
| 16337 | 368  | 
|
| 
35412
 
b8dead547d9e
more uniform treatment of syntax for types vs. consts;
 
wenzelm 
parents: 
35395 
diff
changeset
 | 
369  | 
fun gen_add_syntax x = gen_syntax (Syntax.update_const_gram true) x;  | 
| 386 | 370  | 
|
| 24707 | 371  | 
val add_modesyntax = gen_add_syntax Syntax.parse_typ;  | 
| 
24273
 
1d4b411caf44
replaced certify_typ_syntax/abbrev by certify_typ_mode;
 
wenzelm 
parents: 
24260 
diff
changeset
 | 
372  | 
val add_modesyntax_i = gen_add_syntax (K I);  | 
| 
24959
 
119793c84647
replaced Sign.add_consts_authentic by Sign.declare_const;
 
wenzelm 
parents: 
24949 
diff
changeset
 | 
373  | 
val add_syntax = add_modesyntax Syntax.mode_default;  | 
| 
 
119793c84647
replaced Sign.add_consts_authentic by Sign.declare_const;
 
wenzelm 
parents: 
24949 
diff
changeset
 | 
374  | 
val add_syntax_i = add_modesyntax_i Syntax.mode_default;  | 
| 
35412
 
b8dead547d9e
more uniform treatment of syntax for types vs. consts;
 
wenzelm 
parents: 
35395 
diff
changeset
 | 
375  | 
val del_modesyntax = gen_syntax (Syntax.update_const_gram false) Syntax.parse_typ;  | 
| 
 
b8dead547d9e
more uniform treatment of syntax for types vs. consts;
 
wenzelm 
parents: 
35395 
diff
changeset
 | 
376  | 
val del_modesyntax_i = gen_syntax (Syntax.update_const_gram false) (K I);  | 
| 
 
b8dead547d9e
more uniform treatment of syntax for types vs. consts;
 
wenzelm 
parents: 
35395 
diff
changeset
 | 
377  | 
|
| 
 
b8dead547d9e
more uniform treatment of syntax for types vs. consts;
 
wenzelm 
parents: 
35395 
diff
changeset
 | 
378  | 
fun type_notation add mode args =  | 
| 
 
b8dead547d9e
more uniform treatment of syntax for types vs. consts;
 
wenzelm 
parents: 
35395 
diff
changeset
 | 
379  | 
let  | 
| 
35429
 
afa8cf9e63d8
authentic syntax for classes and type constructors;
 
wenzelm 
parents: 
35412 
diff
changeset
 | 
380  | 
fun type_syntax (Type (c, args), mx) =  | 
| 
42290
 
b1f544c84040
discontinued special treatment of structure Lexicon;
 
wenzelm 
parents: 
42288 
diff
changeset
 | 
381  | 
SOME (Lexicon.mark_type c, Mixfix.make_type (length args), mx)  | 
| 
35412
 
b8dead547d9e
more uniform treatment of syntax for types vs. consts;
 
wenzelm 
parents: 
35395 
diff
changeset
 | 
382  | 
| type_syntax _ = NONE;  | 
| 
 
b8dead547d9e
more uniform treatment of syntax for types vs. consts;
 
wenzelm 
parents: 
35395 
diff
changeset
 | 
383  | 
in map_syn (Syntax.update_type_gram add mode (map_filter type_syntax args)) end;  | 
| 3805 | 384  | 
|
| 
25383
 
2e766dd19e4f
notation: based on Syntax.update_const_gram (avoids duplicates);
 
wenzelm 
parents: 
25366 
diff
changeset
 | 
385  | 
fun notation add mode args thy =  | 
| 
 
2e766dd19e4f
notation: based on Syntax.update_const_gram (avoids duplicates);
 
wenzelm 
parents: 
25366 
diff
changeset
 | 
386  | 
let  | 
| 35255 | 387  | 
fun const_syntax (Const (c, _), mx) =  | 
388  | 
(case try (Consts.type_scheme (consts_of thy)) c of  | 
|
| 
42290
 
b1f544c84040
discontinued special treatment of structure Lexicon;
 
wenzelm 
parents: 
42288 
diff
changeset
 | 
389  | 
SOME T => SOME (Lexicon.mark_const c, T, mx)  | 
| 35255 | 390  | 
| NONE => NONE)  | 
| 
25383
 
2e766dd19e4f
notation: based on Syntax.update_const_gram (avoids duplicates);
 
wenzelm 
parents: 
25366 
diff
changeset
 | 
391  | 
| const_syntax _ = NONE;  | 
| 
35412
 
b8dead547d9e
more uniform treatment of syntax for types vs. consts;
 
wenzelm 
parents: 
35395 
diff
changeset
 | 
392  | 
in gen_syntax (Syntax.update_const_gram add) (K I) mode (map_filter const_syntax args) thy end;  | 
| 19658 | 393  | 
|
| 16337 | 394  | 
|
395  | 
(* add constants *)  | 
|
| 386 | 396  | 
|
| 17995 | 397  | 
local  | 
398  | 
||
| 
42375
 
774df7c59508
report Name_Space.declare/define, relatively to context;
 
wenzelm 
parents: 
42360 
diff
changeset
 | 
399  | 
fun gen_add_consts parse_typ ctxt raw_args thy =  | 
| 386 | 400  | 
let  | 
| 
25366
 
05c2ae18cc51
tyabbr/syntax/consts: replaced obsolete read_typ by Syntax.parse_typ/certify_typ;
 
wenzelm 
parents: 
25351 
diff
changeset
 | 
401  | 
val prepT = Type.no_tvars o Term.no_dummyT o certify_typ thy o parse_typ ctxt;  | 
| 35129 | 402  | 
fun prep (b, raw_T, mx) =  | 
| 19658 | 403  | 
let  | 
| 28965 | 404  | 
val c = full_name thy b;  | 
| 19658 | 405  | 
val T = (prepT raw_T handle TYPE (msg, _, _) => error msg) handle ERROR msg =>  | 
| 
42381
 
309ec68442c6
added Binding.print convenience, which includes quote already;
 
wenzelm 
parents: 
42376 
diff
changeset
 | 
406  | 
          cat_error msg ("in declaration of constant " ^ Binding.print b);
 | 
| 
35845
 
e5980f0ad025
renamed varify/unvarify operations to varify_global/unvarify_global to emphasize that these only work in a global situation;
 
wenzelm 
parents: 
35801 
diff
changeset
 | 
407  | 
val T' = Logic.varifyT_global T;  | 
| 
42290
 
b1f544c84040
discontinued special treatment of structure Lexicon;
 
wenzelm 
parents: 
42288 
diff
changeset
 | 
408  | 
in ((b, T'), (Lexicon.mark_const c, T', mx), Const (c, T)) end;  | 
| 16337 | 409  | 
val args = map prep raw_args;  | 
| 
16442
 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 
wenzelm 
parents: 
16368 
diff
changeset
 | 
410  | 
in  | 
| 
 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 
wenzelm 
parents: 
16368 
diff
changeset
 | 
411  | 
thy  | 
| 
42375
 
774df7c59508
report Name_Space.declare/define, relatively to context;
 
wenzelm 
parents: 
42360 
diff
changeset
 | 
412  | 
|> map_consts (fold (Consts.declare ctxt (naming_of thy) o #1) args)  | 
| 19658 | 413  | 
|> add_syntax_i (map #2 args)  | 
| 
24959
 
119793c84647
replaced Sign.add_consts_authentic by Sign.declare_const;
 
wenzelm 
parents: 
24949 
diff
changeset
 | 
414  | 
|> pair (map #3 args)  | 
| 
16442
 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 
wenzelm 
parents: 
16368 
diff
changeset
 | 
415  | 
end;  | 
| 386 | 416  | 
|
| 17995 | 417  | 
in  | 
418  | 
||
| 
42375
 
774df7c59508
report Name_Space.declare/define, relatively to context;
 
wenzelm 
parents: 
42360 
diff
changeset
 | 
419  | 
fun add_consts args thy =  | 
| 
 
774df7c59508
report Name_Space.declare/define, relatively to context;
 
wenzelm 
parents: 
42360 
diff
changeset
 | 
420  | 
#2 (gen_add_consts Syntax.parse_typ (Proof_Context.init_global thy) args thy);  | 
| 
 
774df7c59508
report Name_Space.declare/define, relatively to context;
 
wenzelm 
parents: 
42360 
diff
changeset
 | 
421  | 
fun add_consts_i args thy =  | 
| 
 
774df7c59508
report Name_Space.declare/define, relatively to context;
 
wenzelm 
parents: 
42360 
diff
changeset
 | 
422  | 
#2 (gen_add_consts (K I) (Proof_Context.init_global thy) args thy);  | 
| 
24959
 
119793c84647
replaced Sign.add_consts_authentic by Sign.declare_const;
 
wenzelm 
parents: 
24949 
diff
changeset
 | 
423  | 
|
| 
42376
 
c3abf2c3f541
eliminated obsolete markup -- superseded by generic "entity" markup;
 
wenzelm 
parents: 
42375 
diff
changeset
 | 
424  | 
fun declare_const ctxt ((b, T), mx) = yield_singleton (gen_add_consts (K I) ctxt) (b, T, mx);  | 
| 
42375
 
774df7c59508
report Name_Space.declare/define, relatively to context;
 
wenzelm 
parents: 
42360 
diff
changeset
 | 
425  | 
fun declare_const_global arg thy = declare_const (Proof_Context.init_global thy) arg thy;  | 
| 
 
774df7c59508
report Name_Space.declare/define, relatively to context;
 
wenzelm 
parents: 
42360 
diff
changeset
 | 
426  | 
|
| 17995 | 427  | 
end;  | 
428  | 
||
| 386 | 429  | 
|
| 
25049
 
ec0547a4fcf0
add_abbrev: removed Logic.legacy_varifyT, do not unvarify result (again);
 
wenzelm 
parents: 
25042 
diff
changeset
 | 
430  | 
(* abbreviations *)  | 
| 18941 | 431  | 
|
| 
33173
 
b8ca12f6681a
eliminated obsolete tags for types/consts -- now handled via name space, in strongly typed fashion;
 
wenzelm 
parents: 
33172 
diff
changeset
 | 
432  | 
fun add_abbrev mode (b, raw_t) thy =  | 
| 18941 | 433  | 
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: 
37145 
diff
changeset
 | 
434  | 
val ctxt = Syntax.init_pretty_global thy;  | 
| 
 
70d3915c92f0
pretty printing: prefer regular Proof.context over Pretty.pp, which is mostly for special bootstrap purposes involving theory merge, for example;
 
wenzelm 
parents: 
37145 
diff
changeset
 | 
435  | 
val prep_tm = no_frees ctxt o Term.no_dummy_patterns o cert_term_abbrev thy;  | 
| 19806 | 436  | 
val t = (prep_tm raw_t handle TYPE (msg, _, _) => error msg | TERM (msg, _) => error msg)  | 
| 
42381
 
309ec68442c6
added Binding.print convenience, which includes quote already;
 
wenzelm 
parents: 
42376 
diff
changeset
 | 
437  | 
      handle ERROR msg => cat_error msg ("in constant abbreviation " ^ Binding.print b);
 | 
| 21696 | 438  | 
val (res, consts') = consts_of thy  | 
| 
42375
 
774df7c59508
report Name_Space.declare/define, relatively to context;
 
wenzelm 
parents: 
42360 
diff
changeset
 | 
439  | 
|> Consts.abbreviate ctxt (tsig_of thy) (naming_of thy) mode (b, t);  | 
| 
25049
 
ec0547a4fcf0
add_abbrev: removed Logic.legacy_varifyT, do not unvarify result (again);
 
wenzelm 
parents: 
25042 
diff
changeset
 | 
440  | 
in (res, thy |> map_consts (K consts')) end;  | 
| 
 
ec0547a4fcf0
add_abbrev: removed Logic.legacy_varifyT, do not unvarify result (again);
 
wenzelm 
parents: 
25042 
diff
changeset
 | 
441  | 
|
| 
 
ec0547a4fcf0
add_abbrev: removed Logic.legacy_varifyT, do not unvarify result (again);
 
wenzelm 
parents: 
25042 
diff
changeset
 | 
442  | 
fun revert_abbrev mode c = map_consts (Consts.revert_abbrev mode c);  | 
| 18941 | 443  | 
|
444  | 
||
| 
16941
 
0bda949449ee
added add_const_constraint(_i), const_constraint;
 
wenzelm 
parents: 
16894 
diff
changeset
 | 
445  | 
(* add constraints *)  | 
| 
 
0bda949449ee
added add_const_constraint(_i), const_constraint;
 
wenzelm 
parents: 
16894 
diff
changeset
 | 
446  | 
|
| 
24761
 
d762ab297a07
removed obsolete external interface add_const_constraint;
 
wenzelm 
parents: 
24732 
diff
changeset
 | 
447  | 
fun add_const_constraint (c, opt_T) thy =  | 
| 
16941
 
0bda949449ee
added add_const_constraint(_i), const_constraint;
 
wenzelm 
parents: 
16894 
diff
changeset
 | 
448  | 
let  | 
| 
19099
 
100bf66d7e85
add_const_constraint(_i): demand TFrees instead of TVars, optional type (i.e. may delete constraints);
 
wenzelm 
parents: 
19054 
diff
changeset
 | 
449  | 
fun prepT raw_T =  | 
| 
35845
 
e5980f0ad025
renamed varify/unvarify operations to varify_global/unvarify_global to emphasize that these only work in a global situation;
 
wenzelm 
parents: 
35801 
diff
changeset
 | 
450  | 
let val T = Logic.varifyT_global (Type.no_tvars (Term.no_dummyT (certify_typ thy raw_T)))  | 
| 
19099
 
100bf66d7e85
add_const_constraint(_i): demand TFrees instead of TVars, optional type (i.e. may delete constraints);
 
wenzelm 
parents: 
19054 
diff
changeset
 | 
451  | 
in cert_term thy (Const (c, T)); T end  | 
| 
16941
 
0bda949449ee
added add_const_constraint(_i), const_constraint;
 
wenzelm 
parents: 
16894 
diff
changeset
 | 
452  | 
handle TYPE (msg, _, _) => error msg;  | 
| 
19099
 
100bf66d7e85
add_const_constraint(_i): demand TFrees instead of TVars, optional type (i.e. may delete constraints);
 
wenzelm 
parents: 
19054 
diff
changeset
 | 
453  | 
in thy |> map_consts (Consts.constrain (c, Option.map prepT opt_T)) end;  | 
| 
16941
 
0bda949449ee
added add_const_constraint(_i), const_constraint;
 
wenzelm 
parents: 
16894 
diff
changeset
 | 
454  | 
|
| 
 
0bda949449ee
added add_const_constraint(_i), const_constraint;
 
wenzelm 
parents: 
16894 
diff
changeset
 | 
455  | 
|
| 
19513
 
77ff7cd602d7
removed add_classes/classrel/arities (superceded by AxClass.axiomatize_class/classrel/arity);
 
wenzelm 
parents: 
19482 
diff
changeset
 | 
456  | 
(* primitive classes and arities *)  | 
| 386 | 457  | 
|
| 
19513
 
77ff7cd602d7
removed add_classes/classrel/arities (superceded by AxClass.axiomatize_class/classrel/arity);
 
wenzelm 
parents: 
19482 
diff
changeset
 | 
458  | 
fun primitive_class (bclass, classes) thy =  | 
| 42387 | 459  | 
thy  | 
460  | 
|> map_sign (fn (naming, syn, tsig, consts) =>  | 
|
| 16337 | 461  | 
let  | 
| 
42375
 
774df7c59508
report Name_Space.declare/define, relatively to context;
 
wenzelm 
parents: 
42360 
diff
changeset
 | 
462  | 
val ctxt = Syntax.init_pretty_global thy;  | 
| 42387 | 463  | 
val tsig' = Type.add_class ctxt naming (bclass, classes) tsig;  | 
| 
35429
 
afa8cf9e63d8
authentic syntax for classes and type constructors;
 
wenzelm 
parents: 
35412 
diff
changeset
 | 
464  | 
in (naming, syn, tsig', consts) end)  | 
| 
30343
 
79f022df8527
replace old bstring by binding for logical primitives: class, type, const etc.;
 
wenzelm 
parents: 
30280 
diff
changeset
 | 
465  | 
|> add_consts_i [(Binding.map_name Logic.const_of_class bclass, Term.a_itselfT --> propT, NoSyn)];  | 
| 
3791
 
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
 
wenzelm 
parents: 
3552 
diff
changeset
 | 
466  | 
|
| 42387 | 467  | 
fun primitive_classrel arg thy =  | 
468  | 
thy |> map_tsig (Type.add_classrel (Syntax.init_pretty_global thy) arg);  | 
|
469  | 
||
470  | 
fun primitive_arity arg thy =  | 
|
471  | 
thy |> map_tsig (Type.add_arity (Syntax.init_pretty_global thy) arg);  | 
|
| 421 | 472  | 
|
473  | 
||
| 14645 | 474  | 
(* add translation functions *)  | 
475  | 
||
| 15746 | 476  | 
local  | 
477  | 
||
| 
42288
 
2074b31650e6
discontinued special treatment of structure Syntax_Ext (formerly Syn_Ext);
 
wenzelm 
parents: 
42287 
diff
changeset
 | 
478  | 
fun mk trs = map Syntax_Ext.mk_trfun trs;  | 
| 15746 | 479  | 
|
| 
16597
 
5a5229a55964
eliminated separate syn type -- advanced trfuns already part of Syntax.syntax;
 
wenzelm 
parents: 
16536 
diff
changeset
 | 
480  | 
fun gen_add_trfuns ext non_typed (atrs, trs, tr's, atr's) =  | 
| 
 
5a5229a55964
eliminated separate syn type -- advanced trfuns already part of Syntax.syntax;
 
wenzelm 
parents: 
16536 
diff
changeset
 | 
481  | 
map_syn (ext (mk atrs, mk trs, mk (map (apsnd non_typed) tr's), mk atr's));  | 
| 14645 | 482  | 
|
| 
16597
 
5a5229a55964
eliminated separate syn type -- advanced trfuns already part of Syntax.syntax;
 
wenzelm 
parents: 
16536 
diff
changeset
 | 
483  | 
fun gen_add_trfunsT ext tr's = map_syn (ext ([], [], mk tr's, []));  | 
| 14645 | 484  | 
|
| 15746 | 485  | 
in  | 
486  | 
||
| 42284 | 487  | 
val add_trfuns = gen_add_trfuns Syntax.update_trfuns Syntax_Trans.non_typed_tr';  | 
| 
25390
 
8bfa6566ac6b
syntax operations: turned extend'' into update'' (absorb duplicates);
 
wenzelm 
parents: 
25383 
diff
changeset
 | 
488  | 
val add_trfunsT = gen_add_trfunsT Syntax.update_trfuns;  | 
| 42284 | 489  | 
val add_advanced_trfuns = gen_add_trfuns Syntax.update_advanced_trfuns Syntax_Trans.non_typed_tr'';  | 
| 
25390
 
8bfa6566ac6b
syntax operations: turned extend'' into update'' (absorb duplicates);
 
wenzelm 
parents: 
25383 
diff
changeset
 | 
490  | 
val add_advanced_trfunsT = gen_add_trfunsT Syntax.update_advanced_trfuns;  | 
| 14645 | 491  | 
|
| 15746 | 492  | 
end;  | 
493  | 
||
| 14645 | 494  | 
|
| 
19258
 
ada9977f1e98
declared_const: check for type constraint only, i.e. admit abbreviations as well;
 
wenzelm 
parents: 
19250 
diff
changeset
 | 
495  | 
(* translation rules *)  | 
| 4619 | 496  | 
|
| 42204 | 497  | 
val add_trrules = map_syn o Syntax.update_trrules;  | 
498  | 
val del_trrules = map_syn o Syntax.remove_trrules;  | 
|
| 386 | 499  | 
|
500  | 
||
| 
26667
 
660b69b3c28a
removed obsolete SIGN_THEORY -- no name aliases in structure Theory;
 
wenzelm 
parents: 
26637 
diff
changeset
 | 
501  | 
(* naming *)  | 
| 6546 | 502  | 
|
| 33724 | 503  | 
val new_group = map_naming Name_Space.new_group;  | 
504  | 
val reset_group = map_naming Name_Space.reset_group;  | 
|
505  | 
||
| 
33095
 
bbd52d2f8696
renamed NameSpace to Name_Space -- also to emphasize its subtle change in semantics;
 
wenzelm 
parents: 
32789 
diff
changeset
 | 
506  | 
val add_path = map_naming o Name_Space.add_path;  | 
| 
 
bbd52d2f8696
renamed NameSpace to Name_Space -- also to emphasize its subtle change in semantics;
 
wenzelm 
parents: 
32789 
diff
changeset
 | 
507  | 
val root_path = map_naming Name_Space.root_path;  | 
| 
 
bbd52d2f8696
renamed NameSpace to Name_Space -- also to emphasize its subtle change in semantics;
 
wenzelm 
parents: 
32789 
diff
changeset
 | 
508  | 
val parent_path = map_naming Name_Space.parent_path;  | 
| 
 
bbd52d2f8696
renamed NameSpace to Name_Space -- also to emphasize its subtle change in semantics;
 
wenzelm 
parents: 
32789 
diff
changeset
 | 
509  | 
val mandatory_path = map_naming o Name_Space.mandatory_path;  | 
| 
35200
 
aaddb2b526d6
more systematic treatment of qualified names derived from binding;
 
wenzelm 
parents: 
35129 
diff
changeset
 | 
510  | 
val qualified_path = map_naming oo Name_Space.qualified_path;  | 
| 6546 | 511  | 
|
| 
16442
 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 
wenzelm 
parents: 
16368 
diff
changeset
 | 
512  | 
fun local_path thy = thy |> root_path |> add_path (Context.theory_name thy);  | 
| 
 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 
wenzelm 
parents: 
16368 
diff
changeset
 | 
513  | 
|
| 30522 | 514  | 
val restore_naming = map_naming o K o naming_of;  | 
| 30421 | 515  | 
|
| 6546 | 516  | 
|
| 16337 | 517  | 
(* hide names *)  | 
| 386 | 518  | 
|
| 
26667
 
660b69b3c28a
removed obsolete SIGN_THEORY -- no name aliases in structure Theory;
 
wenzelm 
parents: 
26637 
diff
changeset
 | 
519  | 
val hide_class = map_tsig oo Type.hide_class;  | 
| 
 
660b69b3c28a
removed obsolete SIGN_THEORY -- no name aliases in structure Theory;
 
wenzelm 
parents: 
26637 
diff
changeset
 | 
520  | 
val hide_type = map_tsig oo Type.hide_type;  | 
| 
 
660b69b3c28a
removed obsolete SIGN_THEORY -- no name aliases in structure Theory;
 
wenzelm 
parents: 
26637 
diff
changeset
 | 
521  | 
val hide_const = map_consts oo Consts.hide;  | 
| 17343 | 522  | 
|
| 0 | 523  | 
end;  |