author | wenzelm |
Sun, 30 Apr 2006 22:50:07 +0200 | |
changeset 19513 | 77ff7cd602d7 |
parent 19482 | 9f11af8f7ef9 |
child 19642 | ea7162f84677 |
permissions | -rw-r--r-- |
19 | 1 |
(* Title: Pure/sign.ML |
0 | 2 |
ID: $Id$ |
251 | 3 |
Author: Lawrence C Paulson and Markus Wenzel |
0 | 4 |
|
16442
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
5 |
Logical signature content: naming conventions, concrete syntax, type |
18062 | 6 |
signature, polymorphic constants. |
0 | 7 |
*) |
8 |
||
16442
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
9 |
signature SIGN_THEORY = |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
10 |
sig |
16442
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
11 |
val add_defsort: string -> theory -> theory |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
12 |
val add_defsort_i: sort -> theory -> theory |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
13 |
val add_types: (bstring * int * mixfix) list -> theory -> theory |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
14 |
val add_typedecls: (bstring * string list * mixfix) list -> theory -> theory |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
15 |
val add_nonterminals: bstring list -> theory -> theory |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
16 |
val add_tyabbrs: (bstring * string list * string * mixfix) list -> theory -> theory |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
17 |
val add_tyabbrs_i: (bstring * string list * typ * mixfix) list -> theory -> theory |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
18 |
val add_syntax: (bstring * string * mixfix) list -> theory -> theory |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
19 |
val add_syntax_i: (bstring * typ * mixfix) list -> theory -> theory |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
20 |
val add_modesyntax: (string * bool) -> (bstring * string * mixfix) list -> theory -> theory |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
21 |
val add_modesyntax_i: (string * bool) -> (bstring * typ * mixfix) list -> theory -> theory |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
22 |
val del_modesyntax: (string * bool) -> (bstring * string * mixfix) list -> theory -> theory |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
23 |
val del_modesyntax_i: (string * bool) -> (bstring * typ * mixfix) list -> theory -> theory |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
24 |
val add_consts: (bstring * string * mixfix) list -> theory -> theory |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
25 |
val add_consts_i: (bstring * typ * mixfix) list -> theory -> theory |
19366
a2040baa9444
pretty_term': early vs. late externing (support authentic syntax);
wenzelm
parents:
19289
diff
changeset
|
26 |
val add_abbrevs: string * bool -> (bstring * string * mixfix) list -> theory -> theory |
a2040baa9444
pretty_term': early vs. late externing (support authentic syntax);
wenzelm
parents:
19289
diff
changeset
|
27 |
val add_abbrevs_i: string * bool -> (bstring * term * mixfix) list -> theory -> theory |
19099
100bf66d7e85
add_const_constraint(_i): demand TFrees instead of TVars, optional type (i.e. may delete constraints);
wenzelm
parents:
19054
diff
changeset
|
28 |
val add_const_constraint: xstring * string option -> theory -> theory |
100bf66d7e85
add_const_constraint(_i): demand TFrees instead of TVars, optional type (i.e. may delete constraints);
wenzelm
parents:
19054
diff
changeset
|
29 |
val add_const_constraint_i: string * typ option -> theory -> theory |
19513
77ff7cd602d7
removed add_classes/classrel/arities (superceded by AxClass.axiomatize_class/classrel/arity);
wenzelm
parents:
19482
diff
changeset
|
30 |
val primitive_class: string * class list -> theory -> theory |
77ff7cd602d7
removed add_classes/classrel/arities (superceded by AxClass.axiomatize_class/classrel/arity);
wenzelm
parents:
19482
diff
changeset
|
31 |
val primitive_classrel: class * class -> theory -> theory |
77ff7cd602d7
removed add_classes/classrel/arities (superceded by AxClass.axiomatize_class/classrel/arity);
wenzelm
parents:
19482
diff
changeset
|
32 |
val primitive_arity: arity -> theory -> theory |
1501 | 33 |
val add_trfuns: |
4344 | 34 |
(string * (ast list -> ast)) list * |
35 |
(string * (term list -> term)) list * |
|
36 |
(string * (term list -> term)) list * |
|
16442
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
37 |
(string * (ast list -> ast)) list -> theory -> theory |
2385 | 38 |
val add_trfunsT: |
16442
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
39 |
(string * (bool -> typ -> term list -> term)) list -> theory -> theory |
14645 | 40 |
val add_advanced_trfuns: |
18857 | 41 |
(string * (Context.generic -> ast list -> ast)) list * |
42 |
(string * (Context.generic -> term list -> term)) list * |
|
43 |
(string * (Context.generic -> term list -> term)) list * |
|
44 |
(string * (Context.generic -> ast list -> ast)) list -> theory -> theory |
|
14645 | 45 |
val add_advanced_trfunsT: |
18857 | 46 |
(string * (Context.generic -> bool -> typ -> term list -> term)) list -> theory -> theory |
2693 | 47 |
val add_tokentrfuns: |
16442
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
48 |
(string * string * (string -> string * real)) list -> theory -> theory |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
49 |
val add_mode_tokentrfuns: string -> (string * (string -> string * real)) list |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
50 |
-> theory -> theory |
17102
a83a80f1c8dd
added interfaces for compile translation functions (from Isar/isar_thy.ML);
wenzelm
parents:
17039
diff
changeset
|
51 |
val parse_ast_translation: bool * string -> theory -> theory |
a83a80f1c8dd
added interfaces for compile translation functions (from Isar/isar_thy.ML);
wenzelm
parents:
17039
diff
changeset
|
52 |
val parse_translation: bool * string -> theory -> theory |
a83a80f1c8dd
added interfaces for compile translation functions (from Isar/isar_thy.ML);
wenzelm
parents:
17039
diff
changeset
|
53 |
val print_translation: bool * string -> theory -> theory |
a83a80f1c8dd
added interfaces for compile translation functions (from Isar/isar_thy.ML);
wenzelm
parents:
17039
diff
changeset
|
54 |
val typed_print_translation: bool * string -> theory -> theory |
a83a80f1c8dd
added interfaces for compile translation functions (from Isar/isar_thy.ML);
wenzelm
parents:
17039
diff
changeset
|
55 |
val print_ast_translation: bool * string -> theory -> theory |
a83a80f1c8dd
added interfaces for compile translation functions (from Isar/isar_thy.ML);
wenzelm
parents:
17039
diff
changeset
|
56 |
val token_translation: string -> theory -> theory |
16442
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
57 |
val add_trrules: (xstring * string) Syntax.trrule list -> theory -> theory |
19258
ada9977f1e98
declared_const: check for type constraint only, i.e. admit abbreviations as well;
wenzelm
parents:
19250
diff
changeset
|
58 |
val del_trrules: (xstring * string) Syntax.trrule list -> theory -> theory |
16442
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
59 |
val add_trrules_i: ast Syntax.trrule list -> theory -> theory |
19258
ada9977f1e98
declared_const: check for type constraint only, i.e. admit abbreviations as well;
wenzelm
parents:
19250
diff
changeset
|
60 |
val del_trrules_i: ast Syntax.trrule list -> theory -> theory |
16442
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
61 |
val add_path: string -> theory -> theory |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
62 |
val parent_path: theory -> theory |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
63 |
val root_path: theory -> theory |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
64 |
val absolute_path: theory -> theory |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
65 |
val local_path: theory -> theory |
19013 | 66 |
val no_base_names: theory -> theory |
16442
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
67 |
val qualified_names: theory -> theory |
19054
af7cc6063285
replaced qualified_force_prefix to sticky_prefix;
wenzelm
parents:
19013
diff
changeset
|
68 |
val sticky_prefix: string -> theory -> theory |
16442
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
69 |
val set_policy: (string -> bstring -> string) * (string list -> string list list) -> |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
70 |
theory -> theory |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
71 |
val restore_naming: theory -> theory -> theory |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
72 |
val hide_classes: bool -> xstring list -> theory -> theory |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
73 |
val hide_classes_i: bool -> string list -> theory -> theory |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
74 |
val hide_types: bool -> xstring list -> theory -> theory |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
75 |
val hide_types_i: bool -> string list -> theory -> theory |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
76 |
val hide_consts: bool -> xstring list -> theory -> theory |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
77 |
val hide_consts_i: bool -> string list -> theory -> theory |
17343 | 78 |
val hide_names: bool -> string * xstring list -> theory -> theory |
79 |
val hide_names_i: bool -> string * string list -> theory -> theory |
|
16442
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
80 |
end |
0 | 81 |
|
16442
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
82 |
signature SIGN = |
5642 | 83 |
sig |
16536 | 84 |
val init_data: theory -> theory |
16442
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
85 |
val rep_sg: theory -> |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
86 |
{naming: NameSpace.naming, |
16597
5a5229a55964
eliminated separate syn type -- advanced trfuns already part of Syntax.syntax;
wenzelm
parents:
16536
diff
changeset
|
87 |
syn: Syntax.syntax, |
16442
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
88 |
tsig: Type.tsig, |
18062 | 89 |
consts: Consts.T} |
16442
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
90 |
val naming_of: theory -> NameSpace.naming |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
91 |
val base_name: string -> bstring |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
92 |
val full_name: theory -> bstring -> string |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
93 |
val full_name_path: theory -> string -> bstring -> string |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
94 |
val declare_name: theory -> string -> NameSpace.T -> NameSpace.T |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
95 |
val syn_of: theory -> Syntax.syntax |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
96 |
val tsig_of: theory -> Type.tsig |
17039
78159411623f
added selectors 'classes_of' and 'classes_arities_of'
haftmann
parents:
17037
diff
changeset
|
97 |
val classes_of: theory -> Sorts.classes |
19289 | 98 |
val arities_of: theory -> Sorts.arities |
16442
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
99 |
val classes: theory -> class list |
19407 | 100 |
val super_classes: theory -> class -> class list |
16442
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
101 |
val defaultS: theory -> sort |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
102 |
val subsort: theory -> sort * sort -> bool |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
103 |
val of_sort: theory -> typ * sort -> bool |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
104 |
val witness_sorts: theory -> sort list -> sort list -> (typ * sort) list |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
105 |
val universal_witness: theory -> (typ * sort) option |
16655 | 106 |
val all_sorts_nonempty: theory -> bool |
16442
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
107 |
val typ_instance: theory -> typ * typ -> bool |
19427 | 108 |
val typ_equiv: theory -> typ * typ -> bool |
16941
0bda949449ee
added add_const_constraint(_i), const_constraint;
wenzelm
parents:
16894
diff
changeset
|
109 |
val typ_match: theory -> typ * typ -> Type.tyenv -> Type.tyenv |
0bda949449ee
added add_const_constraint(_i), const_constraint;
wenzelm
parents:
16894
diff
changeset
|
110 |
val typ_unify: theory -> typ * typ -> Type.tyenv * int -> Type.tyenv * int |
16442
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
111 |
val is_logtype: theory -> string -> bool |
18967 | 112 |
val consts_of: theory -> Consts.T |
16941
0bda949449ee
added add_const_constraint(_i), const_constraint;
wenzelm
parents:
16894
diff
changeset
|
113 |
val const_constraint: theory -> string -> typ option |
17037 | 114 |
val the_const_constraint: theory -> string -> typ |
16442
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
115 |
val const_type: theory -> string -> typ option |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
116 |
val the_const_type: theory -> string -> typ |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
117 |
val declared_tyname: theory -> string -> bool |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
118 |
val declared_const: theory -> string -> bool |
18062 | 119 |
val const_monomorphic: theory -> string -> bool |
18146 | 120 |
val const_typargs: theory -> string * typ -> typ list |
18164 | 121 |
val const_instance: theory -> string * typ list -> typ |
16442
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
122 |
val class_space: theory -> NameSpace.T |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
123 |
val type_space: theory -> NameSpace.T |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
124 |
val const_space: theory -> NameSpace.T |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
125 |
val intern_class: theory -> xstring -> string |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
126 |
val extern_class: theory -> string -> xstring |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
127 |
val intern_type: theory -> xstring -> string |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
128 |
val extern_type: theory -> string -> xstring |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
129 |
val intern_const: theory -> xstring -> string |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
130 |
val extern_const: theory -> string -> xstring |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
131 |
val intern_sort: theory -> sort -> sort |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
132 |
val extern_sort: theory -> sort -> sort |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
133 |
val intern_typ: theory -> typ -> typ |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
134 |
val extern_typ: theory -> typ -> typ |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
135 |
val intern_term: theory -> term -> term |
18994 | 136 |
val extern_term: (string -> xstring) -> theory -> term -> term |
16442
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
137 |
val intern_tycons: theory -> typ -> typ |
19366
a2040baa9444
pretty_term': early vs. late externing (support authentic syntax);
wenzelm
parents:
19289
diff
changeset
|
138 |
val pretty_term': Context.generic -> Syntax.syntax -> (string -> xstring) -> term -> Pretty.T |
16442
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
139 |
val pretty_term: theory -> term -> Pretty.T |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
140 |
val pretty_typ: theory -> typ -> Pretty.T |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
141 |
val pretty_sort: theory -> sort -> Pretty.T |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
142 |
val pretty_classrel: theory -> class list -> Pretty.T |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
143 |
val pretty_arity: theory -> arity -> Pretty.T |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
144 |
val string_of_term: theory -> term -> string |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
145 |
val string_of_typ: theory -> typ -> string |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
146 |
val string_of_sort: theory -> sort -> string |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
147 |
val string_of_classrel: theory -> class list -> string |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
148 |
val string_of_arity: theory -> arity -> string |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
149 |
val pprint_term: theory -> term -> pprint_args -> unit |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
150 |
val pprint_typ: theory -> typ -> pprint_args -> unit |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
151 |
val pp: theory -> Pretty.pp |
19462 | 152 |
val arity_number: theory -> string -> int |
153 |
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
|
154 |
val certify_class: theory -> class -> class |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
155 |
val certify_sort: theory -> sort -> sort |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
156 |
val certify_typ: theory -> typ -> typ |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
157 |
val certify_typ_syntax: theory -> typ -> typ |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
158 |
val certify_typ_abbrev: theory -> typ -> typ |
19366
a2040baa9444
pretty_term': early vs. late externing (support authentic syntax);
wenzelm
parents:
19289
diff
changeset
|
159 |
val certify': bool -> bool -> Pretty.pp -> Consts.T -> theory -> term -> term * typ * int |
18967 | 160 |
val certify_term: theory -> term -> term * typ * int |
161 |
val certify_prop: theory -> term -> term * typ * int |
|
16494 | 162 |
val cert_term: theory -> term -> term |
163 |
val cert_prop: theory -> term -> term |
|
18941 | 164 |
val no_vars: Pretty.pp -> term -> term |
165 |
val cert_def: Pretty.pp -> term -> (string * typ) * term |
|
19244
1d7e51d9828b
added read_class, read/cert_classrel/arity (from axclass.ML);
wenzelm
parents:
19099
diff
changeset
|
166 |
val read_class: theory -> xstring -> class |
18857 | 167 |
val read_sort': Syntax.syntax -> Context.generic -> string -> sort |
16442
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
168 |
val read_sort: theory -> string -> sort |
19244
1d7e51d9828b
added read_class, read/cert_classrel/arity (from axclass.ML);
wenzelm
parents:
19099
diff
changeset
|
169 |
val read_arity: theory -> xstring * string list * string -> arity |
1d7e51d9828b
added read_class, read/cert_classrel/arity (from axclass.ML);
wenzelm
parents:
19099
diff
changeset
|
170 |
val cert_arity: theory -> arity -> arity |
18857 | 171 |
val read_typ': Syntax.syntax -> Context.generic -> |
172 |
(indexname -> sort option) -> string -> typ |
|
173 |
val read_typ_syntax': Syntax.syntax -> Context.generic -> |
|
174 |
(indexname -> sort option) -> string -> typ |
|
175 |
val read_typ_abbrev': Syntax.syntax -> Context.generic -> |
|
176 |
(indexname -> sort option) -> string -> typ |
|
16442
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
177 |
val read_typ: theory * (indexname -> sort option) -> string -> typ |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
178 |
val read_typ_syntax: theory * (indexname -> sort option) -> string -> typ |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
179 |
val read_typ_abbrev: theory * (indexname -> sort option) -> string -> typ |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
180 |
val read_tyname: theory -> string -> typ |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
181 |
val read_const: theory -> string -> term |
18967 | 182 |
val infer_types_simult: Pretty.pp -> theory -> Consts.T -> (indexname -> typ option) -> |
16442
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
183 |
(indexname -> sort option) -> string list -> bool |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
184 |
-> (term list * typ) list -> term list * (indexname * typ) list |
18967 | 185 |
val infer_types: Pretty.pp -> theory -> Consts.T -> (indexname -> typ option) -> |
16442
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
186 |
(indexname -> sort option) -> string list -> bool |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
187 |
-> term list * typ -> term * (indexname * typ) list |
18967 | 188 |
val read_def_terms': Pretty.pp -> (string -> bool) -> Syntax.syntax -> Consts.T -> |
189 |
Context.generic -> (indexname -> typ option) * (indexname -> sort option) -> |
|
16442
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
190 |
string list -> bool -> (string * typ) list -> term list * (indexname * typ) list |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
191 |
val read_def_terms: |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
192 |
theory * (indexname -> typ option) * (indexname -> sort option) -> |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
193 |
string list -> bool -> (string * typ) list -> term list * (indexname * typ) list |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
194 |
val simple_read_term: theory -> typ -> string -> term |
16494 | 195 |
val read_term: theory -> string -> term |
196 |
val read_prop: theory -> string -> term |
|
16442
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
197 |
include SIGN_THEORY |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
198 |
end |
5642 | 199 |
|
16442
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
200 |
structure Sign: SIGN = |
143 | 201 |
struct |
0 | 202 |
|
402 | 203 |
|
16442
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
204 |
(** datatype sign **) |
16337 | 205 |
|
16442
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
206 |
datatype sign = Sign of |
18062 | 207 |
{naming: NameSpace.naming, (*common naming conventions*) |
208 |
syn: Syntax.syntax, (*concrete syntax for terms, types, sorts*) |
|
209 |
tsig: Type.tsig, (*order-sorted signature of types*) |
|
210 |
consts: Consts.T}; (*polymorphic constants*) |
|
16442
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
211 |
|
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
212 |
fun make_sign (naming, syn, tsig, consts) = |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
213 |
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
|
214 |
|
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
215 |
structure SignData = TheoryDataFun |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
216 |
(struct |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
217 |
val name = "Pure/sign"; |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
218 |
type T = sign; |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
219 |
val copy = I; |
17405 | 220 |
fun extend (Sign {syn, tsig, consts, ...}) = |
221 |
make_sign (NameSpace.default_naming, syn, tsig, consts); |
|
16442
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
222 |
|
18062 | 223 |
val empty = |
18714 | 224 |
make_sign (NameSpace.default_naming, Syntax.basic_syn, Type.empty_tsig, Consts.empty); |
16442
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
225 |
|
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
226 |
fun merge pp (sign1, sign2) = |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
227 |
let |
18062 | 228 |
val Sign {naming = _, syn = syn1, tsig = tsig1, consts = consts1} = sign1; |
229 |
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
|
230 |
|
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
231 |
val naming = NameSpace.default_naming; |
16597
5a5229a55964
eliminated separate syn type -- advanced trfuns already part of Syntax.syntax;
wenzelm
parents:
16536
diff
changeset
|
232 |
val syn = Syntax.merge_syntaxes syn1 syn2; |
16442
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
233 |
val tsig = Type.merge_tsigs pp (tsig1, tsig2); |
18062 | 234 |
val consts = Consts.merge (consts1, consts2); |
235 |
in make_sign (naming, syn, tsig, consts) end; |
|
16442
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
236 |
|
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
237 |
fun print _ _ = (); |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
238 |
end); |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
239 |
|
16536 | 240 |
val init_data = SignData.init; |
16442
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
241 |
|
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
242 |
fun rep_sg thy = SignData.get thy |> (fn Sign args => args); |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
243 |
|
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
244 |
fun map_sign f = SignData.map (fn Sign {naming, syn, tsig, consts} => |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
245 |
make_sign (f (naming, syn, tsig, consts))); |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
246 |
|
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
247 |
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
|
248 |
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
|
249 |
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
|
250 |
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
|
251 |
|
16337 | 252 |
|
253 |
(* naming *) |
|
254 |
||
16442
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
255 |
val naming_of = #naming o rep_sg; |
16337 | 256 |
val base_name = NameSpace.base; |
257 |
val full_name = NameSpace.full o naming_of; |
|
16442
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
258 |
fun full_name_path thy elems = NameSpace.full (NameSpace.add_path elems (naming_of thy)); |
16337 | 259 |
val declare_name = NameSpace.declare o naming_of; |
14645 | 260 |
|
261 |
||
262 |
(* syntax *) |
|
263 |
||
16597
5a5229a55964
eliminated separate syn type -- advanced trfuns already part of Syntax.syntax;
wenzelm
parents:
16536
diff
changeset
|
264 |
val syn_of = #syn o rep_sg; |
14645 | 265 |
|
0 | 266 |
|
16337 | 267 |
(* type signature *) |
268 |
||
269 |
val tsig_of = #tsig o rep_sg; |
|
17204 | 270 |
val classes_of = snd o #classes o Type.rep_tsig o tsig_of; |
19289 | 271 |
val arities_of = #arities o Type.rep_tsig o tsig_of; |
7640 | 272 |
val classes = Type.classes o tsig_of; |
19407 | 273 |
val super_classes = Graph.imm_succs o classes_of; |
4844 | 274 |
val defaultS = Type.defaultS o tsig_of; |
4568 | 275 |
val subsort = Type.subsort o tsig_of; |
7640 | 276 |
val of_sort = Type.of_sort o tsig_of; |
277 |
val witness_sorts = Type.witness_sorts o tsig_of; |
|
14784
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
278 |
val universal_witness = Type.universal_witness o tsig_of; |
16655 | 279 |
val all_sorts_nonempty = is_some o universal_witness; |
14784
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
280 |
val typ_instance = Type.typ_instance o tsig_of; |
19427 | 281 |
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
|
282 |
val typ_match = Type.typ_match o tsig_of; |
0bda949449ee
added add_const_constraint(_i), const_constraint;
wenzelm
parents:
16894
diff
changeset
|
283 |
val typ_unify = Type.unify o tsig_of; |
16442
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
284 |
fun is_logtype thy c = c mem_string Type.logical_types (tsig_of thy); |
4256 | 285 |
|
286 |
||
18062 | 287 |
(* polymorphic constants *) |
16941
0bda949449ee
added add_const_constraint(_i), const_constraint;
wenzelm
parents:
16894
diff
changeset
|
288 |
|
18062 | 289 |
val consts_of = #consts o rep_sg; |
290 |
val the_const_constraint = Consts.constraint o consts_of; |
|
291 |
val const_constraint = try o the_const_constraint; |
|
292 |
val the_const_type = Consts.declaration o consts_of; |
|
293 |
val const_type = try o the_const_type; |
|
294 |
val const_monomorphic = Consts.monomorphic o consts_of; |
|
295 |
val const_typargs = Consts.typargs o consts_of; |
|
18164 | 296 |
val const_instance = Consts.instance o consts_of; |
4256 | 297 |
|
16894 | 298 |
val declared_tyname = Symtab.defined o #2 o #types o Type.rep_tsig o tsig_of; |
19258
ada9977f1e98
declared_const: check for type constraint only, i.e. admit abbreviations as well;
wenzelm
parents:
19250
diff
changeset
|
299 |
val declared_const = is_some oo const_constraint; |
620 | 300 |
|
402 | 301 |
|
0 | 302 |
|
16337 | 303 |
(** intern / extern names **) |
304 |
||
16368
a06868ebeb0f
discontinued named name spaces (classK, typeK, constK);
wenzelm
parents:
16354
diff
changeset
|
305 |
val class_space = #1 o #classes o Type.rep_tsig o tsig_of; |
a06868ebeb0f
discontinued named name spaces (classK, typeK, constK);
wenzelm
parents:
16354
diff
changeset
|
306 |
val type_space = #1 o #types o Type.rep_tsig o tsig_of; |
18967 | 307 |
val const_space = Consts.space_of o consts_of; |
14645 | 308 |
|
16368
a06868ebeb0f
discontinued named name spaces (classK, typeK, constK);
wenzelm
parents:
16354
diff
changeset
|
309 |
val intern_class = NameSpace.intern o class_space; |
a06868ebeb0f
discontinued named name spaces (classK, typeK, constK);
wenzelm
parents:
16354
diff
changeset
|
310 |
val extern_class = NameSpace.extern o class_space; |
a06868ebeb0f
discontinued named name spaces (classK, typeK, constK);
wenzelm
parents:
16354
diff
changeset
|
311 |
val intern_type = NameSpace.intern o type_space; |
a06868ebeb0f
discontinued named name spaces (classK, typeK, constK);
wenzelm
parents:
16354
diff
changeset
|
312 |
val extern_type = NameSpace.extern o type_space; |
a06868ebeb0f
discontinued named name spaces (classK, typeK, constK);
wenzelm
parents:
16354
diff
changeset
|
313 |
val intern_const = NameSpace.intern o const_space; |
a06868ebeb0f
discontinued named name spaces (classK, typeK, constK);
wenzelm
parents:
16354
diff
changeset
|
314 |
val extern_const = NameSpace.extern o const_space; |
16337 | 315 |
|
316 |
val intern_sort = map o intern_class; |
|
317 |
val extern_sort = map o extern_class; |
|
318 |
||
319 |
local |
|
14645 | 320 |
|
18892 | 321 |
fun map_typ f g (Type (c, Ts)) = Type (g c, map (map_typ f g) Ts) |
322 |
| map_typ f _ (TFree (x, S)) = TFree (x, map f S) |
|
323 |
| map_typ f _ (TVar (xi, S)) = TVar (xi, map f S); |
|
324 |
||
325 |
fun map_term f g h (Const (c, T)) = Const (h c, map_typ f g T) |
|
326 |
| map_term f g _ (Free (x, T)) = Free (x, map_typ f g T) |
|
327 |
| map_term f g _ (Var (xi, T)) = Var (xi, map_typ f g T) |
|
328 |
| map_term _ _ _ (t as Bound _) = t |
|
329 |
| map_term f g h (Abs (x, T, t)) = Abs (x, map_typ f g T, map_term f g h t) |
|
330 |
| map_term f g h (t $ u) = map_term f g h t $ map_term f g h u; |
|
331 |
||
18994 | 332 |
val add_classesT = Term.fold_atyps |
333 |
(fn TFree (_, S) => fold (insert (op =)) S |
|
334 |
| TVar (_, S) => fold (insert (op =)) S |
|
335 |
| _ => I); |
|
336 |
||
337 |
fun add_tyconsT (Type (c, Ts)) = insert (op =) c #> fold add_tyconsT Ts |
|
338 |
| add_tyconsT _ = I; |
|
339 |
||
340 |
val add_consts = Term.fold_aterms (fn Const (c, _) => insert (op =) c | _ => I); |
|
341 |
||
16337 | 342 |
fun mapping add_names f t = |
343 |
let |
|
344 |
fun f' x = let val y = f x in if x = y then NONE else SOME (x, y) end; |
|
19482
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
wenzelm
parents:
19462
diff
changeset
|
345 |
val tab = map_filter f' (add_names t []); |
18941 | 346 |
fun get x = the_default x (AList.lookup (op =) tab x); |
16337 | 347 |
in get end; |
348 |
||
16442
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
349 |
fun typ_mapping f g thy T = |
18892 | 350 |
T |> map_typ |
18994 | 351 |
(mapping add_classesT (f thy) T) |
352 |
(mapping add_tyconsT (g thy) T); |
|
14645 | 353 |
|
16442
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
354 |
fun term_mapping f g h thy t = |
18892 | 355 |
t |> map_term |
18994 | 356 |
(mapping (Term.fold_types add_classesT) (f thy) t) |
357 |
(mapping (Term.fold_types add_tyconsT) (g thy) t) |
|
358 |
(mapping add_consts (h thy) t); |
|
16337 | 359 |
|
360 |
in |
|
14645 | 361 |
|
16368
a06868ebeb0f
discontinued named name spaces (classK, typeK, constK);
wenzelm
parents:
16354
diff
changeset
|
362 |
val intern_typ = typ_mapping intern_class intern_type; |
a06868ebeb0f
discontinued named name spaces (classK, typeK, constK);
wenzelm
parents:
16354
diff
changeset
|
363 |
val extern_typ = typ_mapping extern_class extern_type; |
a06868ebeb0f
discontinued named name spaces (classK, typeK, constK);
wenzelm
parents:
16354
diff
changeset
|
364 |
val intern_term = term_mapping intern_class intern_type intern_const; |
18994 | 365 |
fun extern_term h = term_mapping extern_class extern_type (K h); |
16368
a06868ebeb0f
discontinued named name spaces (classK, typeK, constK);
wenzelm
parents:
16354
diff
changeset
|
366 |
val intern_tycons = typ_mapping (K I) intern_type; |
16337 | 367 |
|
368 |
end; |
|
14645 | 369 |
|
370 |
||
371 |
||
4249 | 372 |
(** pretty printing of terms, types etc. **) |
3937 | 373 |
|
19366
a2040baa9444
pretty_term': early vs. late externing (support authentic syntax);
wenzelm
parents:
19289
diff
changeset
|
374 |
fun pretty_term' context syn ext t = |
18994 | 375 |
let val curried = Context.exists_name Context.CPureN (Context.theory_of context) |
19366
a2040baa9444
pretty_term': early vs. late externing (support authentic syntax);
wenzelm
parents:
19289
diff
changeset
|
376 |
in Syntax.pretty_term ext context syn curried t end; |
18857 | 377 |
|
18994 | 378 |
fun pretty_term thy t = |
19366
a2040baa9444
pretty_term': early vs. late externing (support authentic syntax);
wenzelm
parents:
19289
diff
changeset
|
379 |
pretty_term' (Context.Theory thy) (syn_of thy) (Consts.extern (consts_of thy)) |
a2040baa9444
pretty_term': early vs. late externing (support authentic syntax);
wenzelm
parents:
19289
diff
changeset
|
380 |
(extern_term (Consts.extern_early (consts_of thy)) thy t); |
18857 | 381 |
|
382 |
fun pretty_typ thy T = Syntax.pretty_typ (Context.Theory thy) (syn_of thy) (extern_typ thy T); |
|
383 |
fun pretty_sort thy S = Syntax.pretty_sort (Context.Theory thy) (syn_of thy) (extern_sort thy S); |
|
3937 | 384 |
|
19482
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
wenzelm
parents:
19462
diff
changeset
|
385 |
fun pretty_classrel thy cs = Pretty.block (flat |
16442
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
386 |
(separate [Pretty.str " <", Pretty.brk 1] (map (single o pretty_sort thy o single) cs))); |
3937 | 387 |
|
16442
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
388 |
fun pretty_arity thy (a, Ss, S) = |
3937 | 389 |
let |
16442
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
390 |
val a' = extern_type thy a; |
3937 | 391 |
val dom = |
392 |
if null Ss then [] |
|
16442
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
393 |
else [Pretty.list "(" ")" (map (pretty_sort thy) Ss), Pretty.brk 1]; |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
394 |
in Pretty.block ([Pretty.str (a' ^ " ::"), Pretty.brk 1] @ dom @ [pretty_sort thy S]) end; |
3937 | 395 |
|
14828 | 396 |
val string_of_term = Pretty.string_of oo pretty_term; |
397 |
val string_of_typ = Pretty.string_of oo pretty_typ; |
|
398 |
val string_of_sort = Pretty.string_of oo pretty_sort; |
|
399 |
val string_of_classrel = Pretty.string_of oo pretty_classrel; |
|
400 |
val string_of_arity = Pretty.string_of oo pretty_arity; |
|
3937 | 401 |
|
16337 | 402 |
val pprint_term = (Pretty.pprint o Pretty.quote) oo pretty_term; |
403 |
val pprint_typ = (Pretty.pprint o Pretty.quote) oo pretty_typ; |
|
3937 | 404 |
|
16442
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
405 |
fun pp thy = Pretty.pp (pretty_term thy, pretty_typ thy, pretty_sort thy, |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
406 |
pretty_classrel thy, pretty_arity thy); |
14828 | 407 |
|
3937 | 408 |
|
409 |
||
16337 | 410 |
(** certify entities **) (*exception TYPE*) |
8898 | 411 |
|
16337 | 412 |
(* certify wrt. type signature *) |
8898 | 413 |
|
19462 | 414 |
val arity_number = Type.arity_number o tsig_of; |
415 |
fun arity_sorts thy = Type.arity_sorts (pp thy) (tsig_of thy); |
|
416 |
||
16723 | 417 |
fun certify cert = cert o tsig_of o Context.check_thy; |
562 | 418 |
|
16337 | 419 |
val certify_class = certify Type.cert_class; |
420 |
val certify_sort = certify Type.cert_sort; |
|
421 |
val certify_typ = certify Type.cert_typ; |
|
422 |
val certify_typ_syntax = certify Type.cert_typ_syntax; |
|
423 |
val certify_typ_abbrev = certify Type.cert_typ_abbrev; |
|
10443
0a68dc9edba5
added certify_tycon, certify_tyabbr, certify_const;
wenzelm
parents:
10404
diff
changeset
|
424 |
|
4961
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents:
4951
diff
changeset
|
425 |
|
18967 | 426 |
(* certify term/prop *) |
4961
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents:
4951
diff
changeset
|
427 |
|
14987 | 428 |
local |
1494
22f67e796445
added nodup_Vars check in cterm_of. Prevents same var with distinct types.
nipkow
parents:
1460
diff
changeset
|
429 |
|
16337 | 430 |
fun type_check pp tm = |
4961
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents:
4951
diff
changeset
|
431 |
let |
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents:
4951
diff
changeset
|
432 |
fun err_appl why bs t T u U = |
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents:
4951
diff
changeset
|
433 |
let |
10404 | 434 |
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
|
435 |
val t' = subst_bounds (xs, t); |
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents:
4951
diff
changeset
|
436 |
val u' = subst_bounds (xs, u); |
16337 | 437 |
val msg = cat_lines |
14828 | 438 |
(TypeInfer.appl_error (Syntax.pp_show_brackets pp) why t' T u' U); |
16337 | 439 |
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
|
440 |
|
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents:
4951
diff
changeset
|
441 |
fun typ_of (_, Const (_, T)) = T |
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents:
4951
diff
changeset
|
442 |
| typ_of (_, Free (_, T)) = T |
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents:
4951
diff
changeset
|
443 |
| typ_of (_, Var (_, T)) = T |
15570 | 444 |
| typ_of (bs, Bound i) = snd (List.nth (bs, i) handle Subscript => |
4961
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents:
4951
diff
changeset
|
445 |
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
|
446 |
| 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
|
447 |
| typ_of (bs, t $ u) = |
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents:
4951
diff
changeset
|
448 |
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
|
449 |
(case T of |
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents:
4951
diff
changeset
|
450 |
Type ("fun", [T1, T2]) => |
14828 | 451 |
if T1 = U then T2 else err_appl "Incompatible operand type" bs t T u U |
452 |
| _ => err_appl "Operator not of function type" bs t T u U) |
|
4961
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents:
4951
diff
changeset
|
453 |
end; |
18967 | 454 |
in typ_of ([], tm) end; |
4961
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents:
4951
diff
changeset
|
455 |
|
18967 | 456 |
fun err msg = raise TYPE (msg, [], []); |
457 |
||
458 |
fun check_vars (t $ u) = (check_vars t; check_vars u) |
|
459 |
| check_vars (Abs (_, _, t)) = check_vars t |
|
460 |
| check_vars (Var (xi as (_, i), _)) = |
|
461 |
if i < 0 then err ("Malformed variable: " ^ quote (Term.string_of_vname xi)) else () |
|
462 |
| check_vars _ = (); |
|
0 | 463 |
|
14987 | 464 |
in |
465 |
||
19366
a2040baa9444
pretty_term': early vs. late externing (support authentic syntax);
wenzelm
parents:
19289
diff
changeset
|
466 |
fun certify' normalize prop pp consts thy tm = |
251 | 467 |
let |
16723 | 468 |
val _ = Context.check_thy thy; |
18967 | 469 |
val _ = check_vars tm; |
470 |
val tm' = Term.map_term_types (certify_typ thy) tm; |
|
471 |
val T = type_check pp tm'; |
|
472 |
val _ = if prop andalso T <> propT then err "Term not of type prop" else (); |
|
19366
a2040baa9444
pretty_term': early vs. late externing (support authentic syntax);
wenzelm
parents:
19289
diff
changeset
|
473 |
val tm'' = Consts.certify pp (tsig_of thy) consts tm'; |
18967 | 474 |
val tm'' = if normalize then tm'' else tm'; |
475 |
in (if tm = tm'' then tm else tm'', T, Term.maxidx_of_term tm'') end; |
|
169 | 476 |
|
19366
a2040baa9444
pretty_term': early vs. late externing (support authentic syntax);
wenzelm
parents:
19289
diff
changeset
|
477 |
fun certify_term thy = certify' true false (pp thy) (consts_of thy) thy; |
a2040baa9444
pretty_term': early vs. late externing (support authentic syntax);
wenzelm
parents:
19289
diff
changeset
|
478 |
fun certify_prop thy = certify' true true (pp thy) (consts_of thy) thy; |
18967 | 479 |
|
19366
a2040baa9444
pretty_term': early vs. late externing (support authentic syntax);
wenzelm
parents:
19289
diff
changeset
|
480 |
fun cert_term_abbrev thy = #1 o certify' false false (pp thy) (consts_of thy) thy; |
18967 | 481 |
val cert_term = #1 oo certify_term; |
482 |
val cert_prop = #1 oo certify_prop; |
|
251 | 483 |
|
14987 | 484 |
end; |
485 |
||
251 | 486 |
|
18941 | 487 |
(* specifications *) |
488 |
||
489 |
fun no_vars pp tm = |
|
490 |
(case (Term.term_vars tm, Term.term_tvars tm) of |
|
491 |
([], []) => tm |
|
492 |
| (ts, ixns) => error (Pretty.string_of (Pretty.block (Pretty.breaks |
|
493 |
(Pretty.str "Illegal schematic variable(s) in term:" :: |
|
494 |
map (Pretty.term pp) ts @ map (Pretty.typ pp o TVar) ixns))))); |
|
495 |
||
496 |
fun cert_def pp tm = |
|
497 |
let val ((lhs, rhs), _) = tm |
|
498 |
|> no_vars pp |
|
499 |
|> Logic.strip_imp_concl |
|
500 |
|> Logic.dest_def pp Term.is_Const (K false) (K false) |
|
501 |
in (Term.dest_Const (Term.head_of lhs), rhs) end |
|
502 |
handle TERM (msg, _) => error msg; |
|
503 |
||
504 |
||
16337 | 505 |
|
16442
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
506 |
(** read and certify entities **) (*exception ERROR*) |
16337 | 507 |
|
19244
1d7e51d9828b
added read_class, read/cert_classrel/arity (from axclass.ML);
wenzelm
parents:
19099
diff
changeset
|
508 |
(* classes and sorts *) |
1d7e51d9828b
added read_class, read/cert_classrel/arity (from axclass.ML);
wenzelm
parents:
19099
diff
changeset
|
509 |
|
19427 | 510 |
fun read_class thy c = certify_class thy (intern_class thy c) |
511 |
handle TYPE (msg, _, _) => error msg; |
|
16337 | 512 |
|
18857 | 513 |
fun read_sort' syn context str = |
16337 | 514 |
let |
18857 | 515 |
val thy = Context.theory_of context; |
16723 | 516 |
val _ = Context.check_thy thy; |
18857 | 517 |
val S = intern_sort thy (Syntax.read_sort context syn str); |
16442
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
518 |
in certify_sort thy S handle TYPE (msg, _, _) => error msg end; |
16337 | 519 |
|
18857 | 520 |
fun read_sort thy str = read_sort' (syn_of thy) (Context.Theory thy) str; |
16337 | 521 |
|
522 |
||
19244
1d7e51d9828b
added read_class, read/cert_classrel/arity (from axclass.ML);
wenzelm
parents:
19099
diff
changeset
|
523 |
(* type arities *) |
1d7e51d9828b
added read_class, read/cert_classrel/arity (from axclass.ML);
wenzelm
parents:
19099
diff
changeset
|
524 |
|
1d7e51d9828b
added read_class, read/cert_classrel/arity (from axclass.ML);
wenzelm
parents:
19099
diff
changeset
|
525 |
fun prep_arity prep_tycon prep_sort thy (t, Ss, S) = |
1d7e51d9828b
added read_class, read/cert_classrel/arity (from axclass.ML);
wenzelm
parents:
19099
diff
changeset
|
526 |
let val arity = (prep_tycon thy t, map (prep_sort thy) Ss, prep_sort thy S) |
19513
77ff7cd602d7
removed add_classes/classrel/arities (superceded by AxClass.axiomatize_class/classrel/arity);
wenzelm
parents:
19482
diff
changeset
|
527 |
in Type.add_arity (pp thy) arity (tsig_of thy); arity end; |
19244
1d7e51d9828b
added read_class, read/cert_classrel/arity (from axclass.ML);
wenzelm
parents:
19099
diff
changeset
|
528 |
|
1d7e51d9828b
added read_class, read/cert_classrel/arity (from axclass.ML);
wenzelm
parents:
19099
diff
changeset
|
529 |
val read_arity = prep_arity intern_type read_sort; |
1d7e51d9828b
added read_class, read/cert_classrel/arity (from axclass.ML);
wenzelm
parents:
19099
diff
changeset
|
530 |
val cert_arity = prep_arity (K I) certify_sort; |
1d7e51d9828b
added read_class, read/cert_classrel/arity (from axclass.ML);
wenzelm
parents:
19099
diff
changeset
|
531 |
|
1d7e51d9828b
added read_class, read/cert_classrel/arity (from axclass.ML);
wenzelm
parents:
19099
diff
changeset
|
532 |
|
16337 | 533 |
(* types *) |
534 |
||
535 |
local |
|
536 |
||
18857 | 537 |
fun gen_read_typ' cert syn context def_sort str = |
16337 | 538 |
let |
18857 | 539 |
val thy = Context.theory_of context; |
16723 | 540 |
val _ = Context.check_thy thy; |
16442
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
541 |
val get_sort = TypeInfer.get_sort (tsig_of thy) def_sort (intern_sort thy); |
18857 | 542 |
val T = intern_tycons thy (Syntax.read_typ context syn get_sort (intern_sort thy) str); |
16442
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
543 |
in cert thy T handle TYPE (msg, _, _) => error msg end |
18678 | 544 |
handle ERROR msg => cat_error msg ("The error(s) above occurred in type " ^ quote str); |
16337 | 545 |
|
16442
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
546 |
fun gen_read_typ cert (thy, def_sort) str = |
18857 | 547 |
gen_read_typ' cert (syn_of thy) (Context.Theory thy) def_sort str; |
16337 | 548 |
|
549 |
in |
|
550 |
||
16442
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
551 |
fun no_def_sort thy = (thy: theory, K NONE); |
16337 | 552 |
|
16442
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
553 |
val read_typ' = gen_read_typ' certify_typ; |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
554 |
val read_typ_syntax' = gen_read_typ' certify_typ_syntax; |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
555 |
val read_typ_abbrev' = gen_read_typ' certify_typ_abbrev; |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
556 |
val read_typ = gen_read_typ certify_typ; |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
557 |
val read_typ_syntax = gen_read_typ certify_typ_syntax; |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
558 |
val read_typ_abbrev = gen_read_typ certify_typ_abbrev; |
16337 | 559 |
|
560 |
end; |
|
561 |
||
562 |
||
16368
a06868ebeb0f
discontinued named name spaces (classK, typeK, constK);
wenzelm
parents:
16354
diff
changeset
|
563 |
(* type and constant names *) |
15703 | 564 |
|
16442
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
565 |
fun read_tyname thy raw_c = |
19462 | 566 |
let val c = intern_type thy raw_c |
567 |
in Type (c, replicate (arity_number thy c) dummyT) end; |
|
15703 | 568 |
|
18967 | 569 |
val read_const = Consts.read_const o consts_of; |
15703 | 570 |
|
571 |
||
251 | 572 |
|
583 | 573 |
(** infer_types **) (*exception ERROR*) |
251 | 574 |
|
2979 | 575 |
(* |
16337 | 576 |
def_type: partial map from indexnames to types (constrains Frees and Vars) |
577 |
def_sort: partial map from indexnames to sorts (constrains TFrees and TVars) |
|
2979 | 578 |
used: list of already used type variables |
579 |
freeze: if true then generated parameters are turned into TFrees, else TVars |
|
4249 | 580 |
|
581 |
termss: lists of alternative parses (only one combination should be type-correct) |
|
582 |
typs: expected types |
|
2979 | 583 |
*) |
584 |
||
18967 | 585 |
fun infer_types_simult pp thy consts def_type def_sort used freeze args = |
251 | 586 |
let |
18146 | 587 |
val termss = fold_rev (multiply o fst) args [[]]; |
4249 | 588 |
val typs = |
16442
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
589 |
map (fn (_, T) => certify_typ thy T handle TYPE (msg, _, _) => error msg) args; |
169 | 590 |
|
18678 | 591 |
fun infer ts = Result (TypeInfer.infer_types (Syntax.pp_show_brackets pp) (tsig_of thy) |
19366
a2040baa9444
pretty_term': early vs. late externing (support authentic syntax);
wenzelm
parents:
19289
diff
changeset
|
592 |
(try (Consts.constraint consts)) def_type def_sort (Consts.intern consts) |
18967 | 593 |
(intern_tycons thy) (intern_sort thy) used freeze typs ts) |
18678 | 594 |
handle TYPE (msg, _, _) => Exn (ERROR msg); |
623 | 595 |
|
4249 | 596 |
val err_results = map infer termss; |
19482
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
wenzelm
parents:
19462
diff
changeset
|
597 |
val errs = map_filter (fn Exn (ERROR msg) => SOME msg | _ => NONE) err_results; |
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
wenzelm
parents:
19462
diff
changeset
|
598 |
val results = map_filter get_result err_results; |
4249 | 599 |
|
14645 | 600 |
val ambiguity = length termss; |
4249 | 601 |
fun ambig_msg () = |
18678 | 602 |
if ambiguity > 1 andalso ambiguity <= ! Syntax.ambiguity_level then |
603 |
"Got more than one parse tree.\n\ |
|
604 |
\Retry with smaller Syntax.ambiguity_level for more information." |
|
605 |
else ""; |
|
4249 | 606 |
in |
18678 | 607 |
if null results then (cat_error (ambig_msg ()) (cat_lines errs)) |
4249 | 608 |
else if length results = 1 then |
609 |
(if ambiguity > ! Syntax.ambiguity_level then |
|
610 |
warning "Fortunately, only one parse tree is type correct.\n\ |
|
611 |
\You may still want to disambiguate your grammar or your input." |
|
612 |
else (); hd results) |
|
18678 | 613 |
else (cat_error (ambig_msg ()) ("More than one term is type correct:\n" ^ |
19482
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
wenzelm
parents:
19462
diff
changeset
|
614 |
cat_lines (map (Pretty.string_of_term pp) (maps fst results)))) |
4249 | 615 |
end; |
623 | 616 |
|
18967 | 617 |
fun infer_types pp thy consts def_type def_sort used freeze tsT = |
618 |
apfst hd (infer_types_simult pp thy consts def_type def_sort used freeze [tsT]); |
|
251 | 619 |
|
620 |
||
16494 | 621 |
(* read_def_terms -- read terms and infer types *) (*exception ERROR*) |
16337 | 622 |
|
18967 | 623 |
fun read_def_terms' pp is_logtype syn consts context (types, sorts) used freeze sTs = |
8607 | 624 |
let |
18857 | 625 |
val thy = Context.theory_of context; |
8607 | 626 |
fun read (s, T) = |
16442
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
627 |
let val T' = certify_typ thy T handle TYPE (msg, _, _) => error msg |
18857 | 628 |
in (Syntax.read context is_logtype syn T' s, T') end; |
18967 | 629 |
in infer_types_simult pp thy consts types sorts used freeze (map read sTs) end; |
8607 | 630 |
|
16442
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
631 |
fun read_def_terms (thy, types, sorts) = |
18967 | 632 |
read_def_terms' (pp thy) (is_logtype thy) (syn_of thy) (consts_of thy) |
633 |
(Context.Theory thy) (types, sorts); |
|
12068
469f372d63db
added pretty_term', read_typ', read_typ_no_norm', read_def_terms'
wenzelm
parents:
11720
diff
changeset
|
634 |
|
16442
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
635 |
fun simple_read_term thy T s = |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
636 |
let val ([t], _) = read_def_terms (thy, K NONE, K NONE) [] true [(s, T)] |
16337 | 637 |
in t end |
18678 | 638 |
handle ERROR msg => cat_error msg ("The error(s) above occurred for term " ^ s); |
8802 | 639 |
|
16494 | 640 |
fun read_term thy = simple_read_term thy TypeInfer.logicT; |
641 |
fun read_prop thy = simple_read_term thy propT; |
|
642 |
||
8607 | 643 |
|
2979 | 644 |
|
16337 | 645 |
(** signature extension functions **) (*exception ERROR/TYPE*) |
386 | 646 |
|
647 |
(* add default sort *) |
|
648 |
||
16442
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
649 |
fun gen_add_defsort prep_sort s thy = |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
650 |
thy |> map_tsig (Type.set_defsort (prep_sort thy s)); |
8898 | 651 |
|
16337 | 652 |
val add_defsort = gen_add_defsort read_sort; |
653 |
val add_defsort_i = gen_add_defsort certify_sort; |
|
386 | 654 |
|
655 |
||
656 |
(* add type constructors *) |
|
657 |
||
16442
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
658 |
fun add_types types thy = thy |> map_sign (fn (naming, syn, tsig, consts) => |
14856 | 659 |
let |
16597
5a5229a55964
eliminated separate syn type -- advanced trfuns already part of Syntax.syntax;
wenzelm
parents:
16536
diff
changeset
|
660 |
val syn' = Syntax.extend_type_gram types syn; |
16368
a06868ebeb0f
discontinued named name spaces (classK, typeK, constK);
wenzelm
parents:
16354
diff
changeset
|
661 |
val decls = map (fn (a, n, mx) => (Syntax.type_name a mx, n)) types; |
16442
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
662 |
val tsig' = Type.add_types naming decls tsig; |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
663 |
in (naming, syn', tsig', consts) end); |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
664 |
|
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
665 |
fun add_typedecls decls thy = |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
666 |
let |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
667 |
fun type_of (a, vs, mx) = |
18928
042608ffa2ec
subsituted gen_duplicates / has_duplicates for duplicates whenever appropriate
haftmann
parents:
18892
diff
changeset
|
668 |
if not (has_duplicates (op =) vs) then (a, length vs, mx) |
16442
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
669 |
else error ("Duplicate parameters in type declaration: " ^ quote a); |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
670 |
in add_types (map type_of decls) thy end; |
16337 | 671 |
|
672 |
||
673 |
(* add nonterminals *) |
|
674 |
||
16442
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
675 |
fun add_nonterminals ns thy = thy |> map_sign (fn (naming, syn, tsig, consts) => |
16337 | 676 |
let |
16597
5a5229a55964
eliminated separate syn type -- advanced trfuns already part of Syntax.syntax;
wenzelm
parents:
16536
diff
changeset
|
677 |
val syn' = Syntax.extend_consts ns syn; |
16442
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
678 |
val tsig' = Type.add_nonterminals naming ns tsig; |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
679 |
in (naming, syn', tsig', consts) end); |
386 | 680 |
|
681 |
||
682 |
(* add type abbreviations *) |
|
683 |
||
16442
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
684 |
fun gen_add_tyabbr prep_typ (a, vs, rhs, mx) thy = |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
685 |
thy |> map_sign (fn (naming, syn, tsig, consts) => |
16337 | 686 |
let |
16597
5a5229a55964
eliminated separate syn type -- advanced trfuns already part of Syntax.syntax;
wenzelm
parents:
16536
diff
changeset
|
687 |
val syn' = Syntax.extend_type_gram [(a, length vs, mx)] syn; |
16368
a06868ebeb0f
discontinued named name spaces (classK, typeK, constK);
wenzelm
parents:
16354
diff
changeset
|
688 |
val a' = Syntax.type_name a mx; |
16442
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
689 |
val abbr = (a', vs, prep_typ thy rhs) |
18678 | 690 |
handle ERROR msg => cat_error msg ("in type abbreviation " ^ quote a'); |
16442
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
691 |
val tsig' = Type.add_abbrevs naming [abbr] tsig; |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
692 |
in (naming, syn', tsig', consts) end); |
386 | 693 |
|
16337 | 694 |
val add_tyabbrs = fold (gen_add_tyabbr (read_typ_syntax o no_def_sort)); |
695 |
val add_tyabbrs_i = fold (gen_add_tyabbr certify_typ_syntax); |
|
14784
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
696 |
|
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents:
14700
diff
changeset
|
697 |
|
16337 | 698 |
(* modify syntax *) |
699 |
||
16442
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
700 |
fun gen_syntax change_gram prep_typ prmode args thy = |
16337 | 701 |
let |
18678 | 702 |
fun prep (c, T, mx) = (c, prep_typ thy T, mx) handle ERROR msg => |
703 |
cat_error msg ("in syntax declaration " ^ quote (Syntax.const_name c mx)); |
|
16597
5a5229a55964
eliminated separate syn type -- advanced trfuns already part of Syntax.syntax;
wenzelm
parents:
16536
diff
changeset
|
704 |
in thy |> map_syn (change_gram (is_logtype thy) prmode (map prep args)) end; |
16337 | 705 |
|
706 |
fun gen_add_syntax x = gen_syntax Syntax.extend_const_gram x; |
|
386 | 707 |
|
16337 | 708 |
val add_modesyntax = gen_add_syntax (read_typ_syntax o no_def_sort); |
709 |
val add_modesyntax_i = gen_add_syntax certify_typ_syntax; |
|
16442
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
710 |
val add_syntax = add_modesyntax Syntax.default_mode; |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
711 |
val add_syntax_i = add_modesyntax_i Syntax.default_mode; |
16337 | 712 |
val del_modesyntax = gen_syntax Syntax.remove_const_gram (read_typ_syntax o no_def_sort); |
713 |
val del_modesyntax_i = gen_syntax Syntax.remove_const_gram certify_typ_syntax; |
|
3805 | 714 |
|
16337 | 715 |
|
716 |
(* add constants *) |
|
386 | 717 |
|
17995 | 718 |
local |
719 |
||
16442
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
720 |
fun gen_add_consts prep_typ raw_args thy = |
386 | 721 |
let |
16988 | 722 |
val prepT = Compress.typ thy o Type.varifyT o Type.no_tvars o Term.no_dummyT o prep_typ thy; |
16337 | 723 |
fun prep (c, T, mx) = ((c, prepT T, mx) handle TYPE (msg, _, _) => error msg) |
18678 | 724 |
handle ERROR msg => |
725 |
cat_error msg ("in declaration of constant " ^ quote (Syntax.const_name c mx)); |
|
16337 | 726 |
val args = map prep raw_args; |
19366
a2040baa9444
pretty_term': early vs. late externing (support authentic syntax);
wenzelm
parents:
19289
diff
changeset
|
727 |
val decls = args |> map (fn (c, T, mx) => ((Syntax.const_name c mx, T), true)); |
16442
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
728 |
in |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
729 |
thy |
18062 | 730 |
|> map_consts (fold (Consts.declare (naming_of thy)) decls) |
16442
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
731 |
|> add_syntax_i args |
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
732 |
end; |
386 | 733 |
|
17995 | 734 |
in |
735 |
||
16337 | 736 |
val add_consts = gen_add_consts (read_typ o no_def_sort); |
737 |
val add_consts_i = gen_add_consts certify_typ; |
|
386 | 738 |
|
17995 | 739 |
end; |
740 |
||
386 | 741 |
|
18941 | 742 |
(* add abbreviations *) |
743 |
||
744 |
local |
|
745 |
||
19366
a2040baa9444
pretty_term': early vs. late externing (support authentic syntax);
wenzelm
parents:
19289
diff
changeset
|
746 |
fun gen_abbrevs prep_term (mode, inout) = fold (fn (raw_c, raw_t, raw_mx) => fn thy => |
18941 | 747 |
let |
748 |
val prep_tm = |
|
749 |
Compress.term thy o Logic.varify o no_vars (pp thy) o Term.no_dummy_patterns o prep_term thy; |
|
19366
a2040baa9444
pretty_term': early vs. late externing (support authentic syntax);
wenzelm
parents:
19289
diff
changeset
|
750 |
|
a2040baa9444
pretty_term': early vs. late externing (support authentic syntax);
wenzelm
parents:
19289
diff
changeset
|
751 |
val (c, mx) = Syntax.const_mixfix raw_c raw_mx; |
19384 | 752 |
val (c', b) = Syntax.mixfix_const (full_name thy c) mx; |
19366
a2040baa9444
pretty_term': early vs. late externing (support authentic syntax);
wenzelm
parents:
19289
diff
changeset
|
753 |
val t = (prep_tm raw_t handle TYPE (msg, _, _) => error msg) |
a2040baa9444
pretty_term': early vs. late externing (support authentic syntax);
wenzelm
parents:
19289
diff
changeset
|
754 |
handle ERROR msg => cat_error msg ("in constant abbreviation " ^ quote c); |
a2040baa9444
pretty_term': early vs. late externing (support authentic syntax);
wenzelm
parents:
19289
diff
changeset
|
755 |
val T = Term.fastype_of t; |
18941 | 756 |
in |
757 |
thy |
|
19384 | 758 |
|> map_consts (Consts.abbreviate (pp thy) (tsig_of thy) (naming_of thy) mode ((c, t), b)) |
19366
a2040baa9444
pretty_term': early vs. late externing (support authentic syntax);
wenzelm
parents:
19289
diff
changeset
|
759 |
|> map_syn (Syntax.extend_consts [c]) |
a2040baa9444
pretty_term': early vs. late externing (support authentic syntax);
wenzelm
parents:
19289
diff
changeset
|
760 |
|> add_modesyntax_i (mode, inout) [(c', T, mx)] |
a2040baa9444
pretty_term': early vs. late externing (support authentic syntax);
wenzelm
parents:
19289
diff
changeset
|
761 |
end); |
18941 | 762 |
|
763 |
in |
|
764 |
||
19366
a2040baa9444
pretty_term': early vs. late externing (support authentic syntax);
wenzelm
parents:
19289
diff
changeset
|
765 |
val add_abbrevs = gen_abbrevs read_term; |
a2040baa9444
pretty_term': early vs. late externing (support authentic syntax);
wenzelm
parents:
19289
diff
changeset
|
766 |
val add_abbrevs_i = gen_abbrevs cert_term_abbrev; |
18941 | 767 |
|
768 |
end; |
|
769 |
||
770 |
||
16941
0bda949449ee
added add_const_constraint(_i), const_constraint;
wenzelm
parents:
16894
diff
changeset
|
771 |
(* add constraints *) |
0bda949449ee
added add_const_constraint(_i), const_constraint;
wenzelm
parents:
16894
diff
changeset
|
772 |
|
19099
100bf66d7e85
add_const_constraint(_i): demand TFrees instead of TVars, optional type (i.e. may delete constraints);
wenzelm
parents:
19054
diff
changeset
|
773 |
fun gen_add_constraint int_const prep_typ (raw_c, opt_T) thy = |
16941
0bda949449ee
added add_const_constraint(_i), const_constraint;
wenzelm
parents:
16894
diff
changeset
|
774 |
let |
0bda949449ee
added add_const_constraint(_i), const_constraint;
wenzelm
parents:
16894
diff
changeset
|
775 |
val c = int_const thy raw_c; |
19099
100bf66d7e85
add_const_constraint(_i): demand TFrees instead of TVars, optional type (i.e. may delete constraints);
wenzelm
parents:
19054
diff
changeset
|
776 |
fun prepT raw_T = |
100bf66d7e85
add_const_constraint(_i): demand TFrees instead of TVars, optional type (i.e. may delete constraints);
wenzelm
parents:
19054
diff
changeset
|
777 |
let val T = Type.varifyT (Type.no_tvars (Term.no_dummyT (prep_typ thy raw_T))) |
100bf66d7e85
add_const_constraint(_i): demand TFrees instead of TVars, optional type (i.e. may delete constraints);
wenzelm
parents:
19054
diff
changeset
|
778 |
in cert_term thy (Const (c, T)); T end |
16941
0bda949449ee
added add_const_constraint(_i), const_constraint;
wenzelm
parents:
16894
diff
changeset
|
779 |
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
|
780 |
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
|
781 |
|
0bda949449ee
added add_const_constraint(_i), const_constraint;
wenzelm
parents:
16894
diff
changeset
|
782 |
val add_const_constraint = gen_add_constraint intern_const (read_typ o no_def_sort); |
0bda949449ee
added add_const_constraint(_i), const_constraint;
wenzelm
parents:
16894
diff
changeset
|
783 |
val add_const_constraint_i = gen_add_constraint (K I) certify_typ; |
0bda949449ee
added add_const_constraint(_i), const_constraint;
wenzelm
parents:
16894
diff
changeset
|
784 |
|
0bda949449ee
added add_const_constraint(_i), const_constraint;
wenzelm
parents:
16894
diff
changeset
|
785 |
|
19513
77ff7cd602d7
removed add_classes/classrel/arities (superceded by AxClass.axiomatize_class/classrel/arity);
wenzelm
parents:
19482
diff
changeset
|
786 |
(* primitive classes and arities *) |
386 | 787 |
|
19513
77ff7cd602d7
removed add_classes/classrel/arities (superceded by AxClass.axiomatize_class/classrel/arity);
wenzelm
parents:
19482
diff
changeset
|
788 |
fun primitive_class (bclass, classes) thy = |
16442
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
789 |
thy |> map_sign (fn (naming, syn, tsig, consts) => |
16337 | 790 |
let |
16597
5a5229a55964
eliminated separate syn type -- advanced trfuns already part of Syntax.syntax;
wenzelm
parents:
16536
diff
changeset
|
791 |
val syn' = Syntax.extend_consts [bclass] syn; |
19513
77ff7cd602d7
removed add_classes/classrel/arities (superceded by AxClass.axiomatize_class/classrel/arity);
wenzelm
parents:
19482
diff
changeset
|
792 |
val tsig' = Type.add_class (pp thy) naming (bclass, classes) tsig; |
16442
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
793 |
in (naming, syn', tsig', consts) end) |
19391 | 794 |
|> add_consts_i [(Logic.const_of_class bclass, Term.a_itselfT --> propT, NoSyn)]; |
3791
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
wenzelm
parents:
3552
diff
changeset
|
795 |
|
19513
77ff7cd602d7
removed add_classes/classrel/arities (superceded by AxClass.axiomatize_class/classrel/arity);
wenzelm
parents:
19482
diff
changeset
|
796 |
fun primitive_classrel arg thy = thy |> map_tsig (Type.add_classrel (pp thy) arg); |
77ff7cd602d7
removed add_classes/classrel/arities (superceded by AxClass.axiomatize_class/classrel/arity);
wenzelm
parents:
19482
diff
changeset
|
797 |
fun primitive_arity arg thy = thy |> map_tsig (Type.add_arity (pp thy) arg); |
421 | 798 |
|
799 |
||
14645 | 800 |
(* add translation functions *) |
801 |
||
15746 | 802 |
local |
803 |
||
804 |
fun mk trs = map Syntax.mk_trfun trs; |
|
805 |
||
16597
5a5229a55964
eliminated separate syn type -- advanced trfuns already part of Syntax.syntax;
wenzelm
parents:
16536
diff
changeset
|
806 |
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
|
807 |
map_syn (ext (mk atrs, mk trs, mk (map (apsnd non_typed) tr's), mk atr's)); |
14645 | 808 |
|
16597
5a5229a55964
eliminated separate syn type -- advanced trfuns already part of Syntax.syntax;
wenzelm
parents:
16536
diff
changeset
|
809 |
fun gen_add_trfunsT ext tr's = map_syn (ext ([], [], mk tr's, [])); |
14645 | 810 |
|
15746 | 811 |
in |
812 |
||
16597
5a5229a55964
eliminated separate syn type -- advanced trfuns already part of Syntax.syntax;
wenzelm
parents:
16536
diff
changeset
|
813 |
val add_trfuns = gen_add_trfuns Syntax.extend_trfuns Syntax.non_typed_tr'; |
5a5229a55964
eliminated separate syn type -- advanced trfuns already part of Syntax.syntax;
wenzelm
parents:
16536
diff
changeset
|
814 |
val add_trfunsT = gen_add_trfunsT Syntax.extend_trfuns; |
5a5229a55964
eliminated separate syn type -- advanced trfuns already part of Syntax.syntax;
wenzelm
parents:
16536
diff
changeset
|
815 |
val add_advanced_trfuns = gen_add_trfuns Syntax.extend_advanced_trfuns Syntax.non_typed_tr''; |
5a5229a55964
eliminated separate syn type -- advanced trfuns already part of Syntax.syntax;
wenzelm
parents:
16536
diff
changeset
|
816 |
val add_advanced_trfunsT = gen_add_trfunsT Syntax.extend_advanced_trfuns; |
14645 | 817 |
|
15746 | 818 |
end; |
819 |
||
16597
5a5229a55964
eliminated separate syn type -- advanced trfuns already part of Syntax.syntax;
wenzelm
parents:
16536
diff
changeset
|
820 |
val add_tokentrfuns = map_syn o Syntax.extend_tokentrfuns; |
16442
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
821 |
fun add_mode_tokentrfuns m = add_tokentrfuns o map (fn (s, f) => (m, s, f)); |
14645 | 822 |
|
823 |
||
17102
a83a80f1c8dd
added interfaces for compile translation functions (from Isar/isar_thy.ML);
wenzelm
parents:
17039
diff
changeset
|
824 |
(* compile translation functions *) |
a83a80f1c8dd
added interfaces for compile translation functions (from Isar/isar_thy.ML);
wenzelm
parents:
17039
diff
changeset
|
825 |
|
a83a80f1c8dd
added interfaces for compile translation functions (from Isar/isar_thy.ML);
wenzelm
parents:
17039
diff
changeset
|
826 |
local |
a83a80f1c8dd
added interfaces for compile translation functions (from Isar/isar_thy.ML);
wenzelm
parents:
17039
diff
changeset
|
827 |
|
a83a80f1c8dd
added interfaces for compile translation functions (from Isar/isar_thy.ML);
wenzelm
parents:
17039
diff
changeset
|
828 |
fun advancedT false = "" |
18857 | 829 |
| advancedT true = "Context.generic -> "; |
17102
a83a80f1c8dd
added interfaces for compile translation functions (from Isar/isar_thy.ML);
wenzelm
parents:
17039
diff
changeset
|
830 |
|
a83a80f1c8dd
added interfaces for compile translation functions (from Isar/isar_thy.ML);
wenzelm
parents:
17039
diff
changeset
|
831 |
fun advancedN false = "" |
a83a80f1c8dd
added interfaces for compile translation functions (from Isar/isar_thy.ML);
wenzelm
parents:
17039
diff
changeset
|
832 |
| advancedN true = "advanced_"; |
a83a80f1c8dd
added interfaces for compile translation functions (from Isar/isar_thy.ML);
wenzelm
parents:
17039
diff
changeset
|
833 |
|
a83a80f1c8dd
added interfaces for compile translation functions (from Isar/isar_thy.ML);
wenzelm
parents:
17039
diff
changeset
|
834 |
in |
a83a80f1c8dd
added interfaces for compile translation functions (from Isar/isar_thy.ML);
wenzelm
parents:
17039
diff
changeset
|
835 |
|
a83a80f1c8dd
added interfaces for compile translation functions (from Isar/isar_thy.ML);
wenzelm
parents:
17039
diff
changeset
|
836 |
fun parse_ast_translation (a, txt) = |
a83a80f1c8dd
added interfaces for compile translation functions (from Isar/isar_thy.ML);
wenzelm
parents:
17039
diff
changeset
|
837 |
txt |> Context.use_let ("val parse_ast_translation: (string * (" ^ advancedT a ^ |
a83a80f1c8dd
added interfaces for compile translation functions (from Isar/isar_thy.ML);
wenzelm
parents:
17039
diff
changeset
|
838 |
"Syntax.ast list -> Syntax.ast)) list") |
a83a80f1c8dd
added interfaces for compile translation functions (from Isar/isar_thy.ML);
wenzelm
parents:
17039
diff
changeset
|
839 |
("Sign.add_" ^ advancedN a ^ "trfuns (parse_ast_translation, [], [], [])"); |
a83a80f1c8dd
added interfaces for compile translation functions (from Isar/isar_thy.ML);
wenzelm
parents:
17039
diff
changeset
|
840 |
|
a83a80f1c8dd
added interfaces for compile translation functions (from Isar/isar_thy.ML);
wenzelm
parents:
17039
diff
changeset
|
841 |
fun parse_translation (a, txt) = |
a83a80f1c8dd
added interfaces for compile translation functions (from Isar/isar_thy.ML);
wenzelm
parents:
17039
diff
changeset
|
842 |
txt |> Context.use_let ("val parse_translation: (string * (" ^ advancedT a ^ |
a83a80f1c8dd
added interfaces for compile translation functions (from Isar/isar_thy.ML);
wenzelm
parents:
17039
diff
changeset
|
843 |
"term list -> term)) list") |
a83a80f1c8dd
added interfaces for compile translation functions (from Isar/isar_thy.ML);
wenzelm
parents:
17039
diff
changeset
|
844 |
("Sign.add_" ^ advancedN a ^ "trfuns ([], parse_translation, [], [])"); |
a83a80f1c8dd
added interfaces for compile translation functions (from Isar/isar_thy.ML);
wenzelm
parents:
17039
diff
changeset
|
845 |
|
a83a80f1c8dd
added interfaces for compile translation functions (from Isar/isar_thy.ML);
wenzelm
parents:
17039
diff
changeset
|
846 |
fun print_translation (a, txt) = |
a83a80f1c8dd
added interfaces for compile translation functions (from Isar/isar_thy.ML);
wenzelm
parents:
17039
diff
changeset
|
847 |
txt |> Context.use_let ("val print_translation: (string * (" ^ advancedT a ^ |
a83a80f1c8dd
added interfaces for compile translation functions (from Isar/isar_thy.ML);
wenzelm
parents:
17039
diff
changeset
|
848 |
"term list -> term)) list") |
a83a80f1c8dd
added interfaces for compile translation functions (from Isar/isar_thy.ML);
wenzelm
parents:
17039
diff
changeset
|
849 |
("Sign.add_" ^ advancedN a ^ "trfuns ([], [], print_translation, [])"); |
a83a80f1c8dd
added interfaces for compile translation functions (from Isar/isar_thy.ML);
wenzelm
parents:
17039
diff
changeset
|
850 |
|
a83a80f1c8dd
added interfaces for compile translation functions (from Isar/isar_thy.ML);
wenzelm
parents:
17039
diff
changeset
|
851 |
fun print_ast_translation (a, txt) = |
a83a80f1c8dd
added interfaces for compile translation functions (from Isar/isar_thy.ML);
wenzelm
parents:
17039
diff
changeset
|
852 |
txt |> Context.use_let ("val print_ast_translation: (string * (" ^ advancedT a ^ |
a83a80f1c8dd
added interfaces for compile translation functions (from Isar/isar_thy.ML);
wenzelm
parents:
17039
diff
changeset
|
853 |
"Syntax.ast list -> Syntax.ast)) list") |
a83a80f1c8dd
added interfaces for compile translation functions (from Isar/isar_thy.ML);
wenzelm
parents:
17039
diff
changeset
|
854 |
("Sign.add_" ^ advancedN a ^ "trfuns ([], [], [], print_ast_translation)"); |
a83a80f1c8dd
added interfaces for compile translation functions (from Isar/isar_thy.ML);
wenzelm
parents:
17039
diff
changeset
|
855 |
|
a83a80f1c8dd
added interfaces for compile translation functions (from Isar/isar_thy.ML);
wenzelm
parents:
17039
diff
changeset
|
856 |
fun typed_print_translation (a, txt) = |
a83a80f1c8dd
added interfaces for compile translation functions (from Isar/isar_thy.ML);
wenzelm
parents:
17039
diff
changeset
|
857 |
txt |> Context.use_let ("val typed_print_translation: (string * (" ^ advancedT a ^ |
a83a80f1c8dd
added interfaces for compile translation functions (from Isar/isar_thy.ML);
wenzelm
parents:
17039
diff
changeset
|
858 |
"bool -> typ -> term list -> term)) list") |
a83a80f1c8dd
added interfaces for compile translation functions (from Isar/isar_thy.ML);
wenzelm
parents:
17039
diff
changeset
|
859 |
("Sign.add_" ^ advancedN a ^ "trfunsT typed_print_translation"); |
a83a80f1c8dd
added interfaces for compile translation functions (from Isar/isar_thy.ML);
wenzelm
parents:
17039
diff
changeset
|
860 |
|
a83a80f1c8dd
added interfaces for compile translation functions (from Isar/isar_thy.ML);
wenzelm
parents:
17039
diff
changeset
|
861 |
val token_translation = |
a83a80f1c8dd
added interfaces for compile translation functions (from Isar/isar_thy.ML);
wenzelm
parents:
17039
diff
changeset
|
862 |
Context.use_let "val token_translation: (string * string * (string -> string * real)) list" |
a83a80f1c8dd
added interfaces for compile translation functions (from Isar/isar_thy.ML);
wenzelm
parents:
17039
diff
changeset
|
863 |
"Sign.add_tokentrfuns token_translation"; |
a83a80f1c8dd
added interfaces for compile translation functions (from Isar/isar_thy.ML);
wenzelm
parents:
17039
diff
changeset
|
864 |
|
a83a80f1c8dd
added interfaces for compile translation functions (from Isar/isar_thy.ML);
wenzelm
parents:
17039
diff
changeset
|
865 |
end; |
a83a80f1c8dd
added interfaces for compile translation functions (from Isar/isar_thy.ML);
wenzelm
parents:
17039
diff
changeset
|
866 |
|
a83a80f1c8dd
added interfaces for compile translation functions (from Isar/isar_thy.ML);
wenzelm
parents:
17039
diff
changeset
|
867 |
|
19258
ada9977f1e98
declared_const: check for type constraint only, i.e. admit abbreviations as well;
wenzelm
parents:
19250
diff
changeset
|
868 |
(* translation rules *) |
4619 | 869 |
|
19258
ada9977f1e98
declared_const: check for type constraint only, i.e. admit abbreviations as well;
wenzelm
parents:
19250
diff
changeset
|
870 |
fun gen_trrules f args thy = thy |> map_syn (fn syn => |
16442
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
871 |
let val rules = map (Syntax.map_trrule (apfst (intern_type thy))) args |
19258
ada9977f1e98
declared_const: check for type constraint only, i.e. admit abbreviations as well;
wenzelm
parents:
19250
diff
changeset
|
872 |
in f (Context.Theory thy) (is_logtype thy) syn rules syn end); |
8725 | 873 |
|
19258
ada9977f1e98
declared_const: check for type constraint only, i.e. admit abbreviations as well;
wenzelm
parents:
19250
diff
changeset
|
874 |
val add_trrules = gen_trrules Syntax.extend_trrules; |
ada9977f1e98
declared_const: check for type constraint only, i.e. admit abbreviations as well;
wenzelm
parents:
19250
diff
changeset
|
875 |
val del_trrules = gen_trrules Syntax.remove_trrules; |
16597
5a5229a55964
eliminated separate syn type -- advanced trfuns already part of Syntax.syntax;
wenzelm
parents:
16536
diff
changeset
|
876 |
val add_trrules_i = map_syn o Syntax.extend_trrules_i; |
19258
ada9977f1e98
declared_const: check for type constraint only, i.e. admit abbreviations as well;
wenzelm
parents:
19250
diff
changeset
|
877 |
val del_trrules_i = map_syn o Syntax.remove_trrules_i; |
386 | 878 |
|
879 |
||
16337 | 880 |
(* modify naming *) |
6546 | 881 |
|
19054
af7cc6063285
replaced qualified_force_prefix to sticky_prefix;
wenzelm
parents:
19013
diff
changeset
|
882 |
val add_path = map_naming o NameSpace.add_path; |
af7cc6063285
replaced qualified_force_prefix to sticky_prefix;
wenzelm
parents:
19013
diff
changeset
|
883 |
val no_base_names = map_naming NameSpace.no_base_names; |
af7cc6063285
replaced qualified_force_prefix to sticky_prefix;
wenzelm
parents:
19013
diff
changeset
|
884 |
val qualified_names = map_naming NameSpace.qualified_names; |
af7cc6063285
replaced qualified_force_prefix to sticky_prefix;
wenzelm
parents:
19013
diff
changeset
|
885 |
val sticky_prefix = map_naming o NameSpace.sticky_prefix; |
af7cc6063285
replaced qualified_force_prefix to sticky_prefix;
wenzelm
parents:
19013
diff
changeset
|
886 |
val set_policy = map_naming o NameSpace.set_policy; |
af7cc6063285
replaced qualified_force_prefix to sticky_prefix;
wenzelm
parents:
19013
diff
changeset
|
887 |
val restore_naming = map_naming o K o naming_of; |
6546 | 888 |
|
19013 | 889 |
val parent_path = add_path ".."; |
890 |
val root_path = add_path "/"; |
|
891 |
val absolute_path = add_path "//"; |
|
16442
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
892 |
|
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
893 |
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
|
894 |
|
6546 | 895 |
|
16337 | 896 |
(* hide names *) |
386 | 897 |
|
16442
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
898 |
fun hide_classes b xs thy = thy |> map_tsig (Type.hide_classes b (map (intern_class thy) xs)); |
16368
a06868ebeb0f
discontinued named name spaces (classK, typeK, constK);
wenzelm
parents:
16354
diff
changeset
|
899 |
val hide_classes_i = map_tsig oo Type.hide_classes; |
16442
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
wenzelm
parents:
16368
diff
changeset
|
900 |
fun hide_types b xs thy = thy |> map_tsig (Type.hide_types b (map (intern_type thy) xs)); |
16368
a06868ebeb0f
discontinued named name spaces (classK, typeK, constK);
wenzelm
parents:
16354
diff
changeset
|
901 |
val hide_types_i = map_tsig oo Type.hide_types; |
18062 | 902 |
fun hide_consts b xs thy = thy |> map_consts (fold (Consts.hide b o intern_const thy) xs); |
903 |
val hide_consts_i = map_consts oo (fold o Consts.hide); |
|
386 | 904 |
|
17343 | 905 |
local |
906 |
||
907 |
val kinds = |
|
908 |
[("class", (intern_class, can o certify_class, hide_classes_i)), |
|
909 |
("type", (intern_type, declared_tyname, hide_types_i)), |
|
910 |
("const", (intern_const, declared_const, hide_consts_i))]; |
|
911 |
||
912 |
fun gen_hide int b (kind, xnames) thy = |
|
913 |
(case AList.lookup (op =) kinds kind of |
|
914 |
SOME (intern, check, hide) => |
|
915 |
let |
|
916 |
val names = if int then map (intern thy) xnames else xnames; |
|
917 |
val bads = filter_out (check thy) names; |
|
918 |
in |
|
919 |
if null bads then hide b names thy |
|
920 |
else error ("Attempt to hide undeclared item(s): " ^ commas_quote bads) |
|
921 |
end |
|
922 |
| NONE => error ("Bad name space specification: " ^ quote kind)); |
|
923 |
||
924 |
in |
|
925 |
||
926 |
val hide_names = gen_hide true; |
|
927 |
val hide_names_i = gen_hide false; |
|
928 |
||
0 | 929 |
end; |
17343 | 930 |
|
931 |
end; |