| author | wenzelm | 
| Thu, 27 Mar 2008 15:32:19 +0100 | |
| changeset 26436 | dfd6947ab5c2 | 
| parent 26268 | 80aaf4d034be | 
| child 26631 | d6b6c74a8bcf | 
| 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: 
16368diff
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: 
16368diff
changeset | 9 | signature SIGN_THEORY = | 
| 3791 
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
 wenzelm parents: 
3552diff
changeset | 10 | sig | 
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 11 | val add_defsort: string -> theory -> theory | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 12 | val add_defsort_i: sort -> theory -> theory | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 13 | val add_types: (bstring * int * mixfix) list -> theory -> theory | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 14 | val add_nonterminals: bstring list -> theory -> theory | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 15 | val add_tyabbrs: (bstring * string list * string * mixfix) list -> theory -> theory | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 16 | 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: 
16368diff
changeset | 17 | val add_syntax: (bstring * string * mixfix) list -> theory -> theory | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 18 | val add_syntax_i: (bstring * typ * mixfix) list -> theory -> theory | 
| 20784 | 19 | val add_modesyntax: Syntax.mode -> (bstring * string * mixfix) list -> theory -> theory | 
| 20 | val add_modesyntax_i: Syntax.mode -> (bstring * typ * mixfix) list -> theory -> theory | |
| 21 | val del_modesyntax: Syntax.mode -> (bstring * string * mixfix) list -> theory -> theory | |
| 22 | val del_modesyntax_i: Syntax.mode -> (bstring * typ * mixfix) list -> theory -> theory | |
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 23 | val add_consts: (bstring * string * mixfix) list -> theory -> theory | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 24 | val add_consts_i: (bstring * typ * mixfix) list -> theory -> theory | 
| 1501 | 25 | val add_trfuns: | 
| 4344 | 26 | (string * (ast list -> ast)) list * | 
| 27 | (string * (term list -> term)) list * | |
| 28 | (string * (term list -> term)) list * | |
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 29 | (string * (ast list -> ast)) list -> theory -> theory | 
| 2385 | 30 | val add_trfunsT: | 
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 31 | (string * (bool -> typ -> term list -> term)) list -> theory -> theory | 
| 14645 | 32 | val add_advanced_trfuns: | 
| 21772 | 33 | (string * (Proof.context -> ast list -> ast)) list * | 
| 34 | (string * (Proof.context -> term list -> term)) list * | |
| 35 | (string * (Proof.context -> term list -> term)) list * | |
| 36 | (string * (Proof.context -> ast list -> ast)) list -> theory -> theory | |
| 14645 | 37 | val add_advanced_trfunsT: | 
| 21772 | 38 | (string * (Proof.context -> bool -> typ -> term list -> term)) list -> theory -> theory | 
| 2693 | 39 | val add_tokentrfuns: | 
| 23660 
18765718cf62
type output = string indicates raw system output;
 wenzelm parents: 
23615diff
changeset | 40 | (string * string * (string -> output * int)) list -> theory -> theory | 
| 
18765718cf62
type output = string indicates raw system output;
 wenzelm parents: 
23615diff
changeset | 41 | val add_mode_tokentrfuns: string -> (string * (string -> output * int)) list | 
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 42 | -> theory -> theory | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 43 | 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: 
19250diff
changeset | 44 | val del_trrules: (xstring * string) Syntax.trrule list -> theory -> theory | 
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 45 | 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: 
19250diff
changeset | 46 | val del_trrules_i: ast Syntax.trrule list -> theory -> theory | 
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 47 | val add_path: string -> theory -> theory | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 48 | val parent_path: theory -> theory | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 49 | val root_path: theory -> theory | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 50 | val absolute_path: theory -> theory | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 51 | val local_path: theory -> theory | 
| 19013 | 52 | val no_base_names: theory -> theory | 
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 53 | val qualified_names: theory -> theory | 
| 19054 
af7cc6063285
replaced qualified_force_prefix to sticky_prefix;
 wenzelm parents: 
19013diff
changeset | 54 | val sticky_prefix: string -> theory -> theory | 
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 55 | val restore_naming: theory -> theory -> theory | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 56 | end | 
| 0 | 57 | |
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 58 | signature SIGN = | 
| 5642 | 59 | sig | 
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 60 | val rep_sg: theory -> | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 61 |    {naming: NameSpace.naming,
 | 
| 16597 
5a5229a55964
eliminated separate syn type -- advanced trfuns already part of Syntax.syntax;
 wenzelm parents: 
16536diff
changeset | 62 | syn: Syntax.syntax, | 
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 63 | tsig: Type.tsig, | 
| 18062 | 64 | consts: Consts.T} | 
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 65 | val naming_of: theory -> NameSpace.naming | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 66 | val base_name: string -> bstring | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 67 | val full_name: theory -> bstring -> string | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 68 | val full_name_path: theory -> string -> bstring -> string | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 69 | val declare_name: theory -> string -> NameSpace.T -> NameSpace.T | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 70 | val syn_of: theory -> Syntax.syntax | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 71 | val tsig_of: theory -> Type.tsig | 
| 19642 | 72 | val classes_of: theory -> Sorts.algebra | 
| 21932 
7d592dc078e3
replaced classes by all_classes (topologically sorted);
 wenzelm parents: 
21796diff
changeset | 73 | val all_classes: theory -> class list | 
| 19407 | 74 | val super_classes: theory -> class -> class list | 
| 24732 | 75 | val minimize_sort: theory -> sort -> sort | 
| 76 | val complete_sort: theory -> sort -> sort | |
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 77 | val defaultS: theory -> sort | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 78 | val subsort: theory -> sort * sort -> bool | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 79 | val of_sort: theory -> typ * sort -> bool | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 80 | val witness_sorts: theory -> sort list -> sort list -> (typ * sort) list | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 81 | val universal_witness: theory -> (typ * sort) option | 
| 16655 | 82 | val all_sorts_nonempty: theory -> bool | 
| 24732 | 83 | val is_logtype: theory -> string -> bool | 
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 84 | val typ_instance: theory -> typ * typ -> bool | 
| 19427 | 85 | val typ_equiv: theory -> typ * typ -> bool | 
| 16941 
0bda949449ee
added add_const_constraint(_i), const_constraint;
 wenzelm parents: 
16894diff
changeset | 86 | val typ_match: theory -> typ * typ -> Type.tyenv -> Type.tyenv | 
| 
0bda949449ee
added add_const_constraint(_i), const_constraint;
 wenzelm parents: 
16894diff
changeset | 87 | val typ_unify: theory -> typ * typ -> Type.tyenv * int -> Type.tyenv * int | 
| 18967 | 88 | val consts_of: theory -> Consts.T | 
| 17037 | 89 | val the_const_constraint: theory -> string -> typ | 
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 90 | val const_type: theory -> string -> typ option | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 91 | val the_const_type: theory -> string -> typ | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 92 | val declared_tyname: theory -> string -> bool | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 93 | val declared_const: theory -> string -> bool | 
| 18062 | 94 | val const_monomorphic: theory -> string -> bool | 
| 21183 | 95 | val const_syntax_name: theory -> string -> string | 
| 18146 | 96 | val const_typargs: theory -> string * typ -> typ list | 
| 18164 | 97 | val const_instance: theory -> string * typ list -> typ | 
| 26268 | 98 | val mk_const: theory -> string * typ list -> term | 
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 99 | val class_space: theory -> NameSpace.T | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 100 | val type_space: theory -> NameSpace.T | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 101 | val const_space: theory -> NameSpace.T | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 102 | val intern_class: theory -> xstring -> string | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 103 | val extern_class: theory -> string -> xstring | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 104 | val intern_type: theory -> xstring -> string | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 105 | val extern_type: theory -> string -> xstring | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 106 | val intern_const: theory -> xstring -> string | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 107 | val extern_const: theory -> string -> xstring | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 108 | val intern_sort: theory -> sort -> sort | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 109 | val extern_sort: theory -> sort -> sort | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 110 | val intern_typ: theory -> typ -> typ | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 111 | val extern_typ: theory -> typ -> typ | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 112 | val intern_term: theory -> term -> term | 
| 18994 | 113 | val extern_term: (string -> xstring) -> theory -> term -> term | 
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 114 | val intern_tycons: theory -> typ -> typ | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 115 | val pretty_term: theory -> term -> Pretty.T | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 116 | val pretty_typ: theory -> typ -> Pretty.T | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 117 | val pretty_sort: theory -> sort -> Pretty.T | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 118 | val string_of_term: theory -> term -> string | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 119 | val string_of_typ: theory -> typ -> string | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 120 | val string_of_sort: theory -> sort -> string | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 121 | val pp: theory -> Pretty.pp | 
| 19462 | 122 | val arity_number: theory -> string -> int | 
| 123 | val arity_sorts: theory -> string -> sort -> sort list | |
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 124 | val certify_class: theory -> class -> class | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 125 | val certify_sort: theory -> sort -> sort | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 126 | val certify_typ: theory -> typ -> typ | 
| 24273 
1d4b411caf44
replaced certify_typ_syntax/abbrev by certify_typ_mode;
 wenzelm parents: 
24260diff
changeset | 127 | val certify_typ_mode: Type.mode -> theory -> typ -> typ | 
| 24674 
4ade7ac6a21c
certify': proper do_expand argument (which observes force_expand consts) instead of home-grown normalize;
 wenzelm parents: 
24517diff
changeset | 128 | val certify': bool -> Pretty.pp -> bool -> Consts.T -> theory -> term -> term * typ * int | 
| 18967 | 129 | val certify_term: theory -> term -> term * typ * int | 
| 130 | val certify_prop: theory -> term -> term * typ * int | |
| 16494 | 131 | val cert_term: theory -> term -> term | 
| 132 | val cert_prop: theory -> term -> term | |
| 21741 | 133 | val no_frees: Pretty.pp -> term -> term | 
| 18941 | 134 | val no_vars: Pretty.pp -> term -> term | 
| 24981 
4ec3f95190bf
dest/cert_def: replaced Pretty.pp by explicit Proof.context;
 wenzelm parents: 
24973diff
changeset | 135 | val cert_def: Proof.context -> term -> (string * typ) * term | 
| 19244 
1d7e51d9828b
added read_class, read/cert_classrel/arity (from axclass.ML);
 wenzelm parents: 
19099diff
changeset | 136 | val read_class: theory -> xstring -> class | 
| 
1d7e51d9828b
added read_class, read/cert_classrel/arity (from axclass.ML);
 wenzelm parents: 
19099diff
changeset | 137 | val read_arity: theory -> xstring * string list * string -> arity | 
| 
1d7e51d9828b
added read_class, read/cert_classrel/arity (from axclass.ML);
 wenzelm parents: 
19099diff
changeset | 138 | val cert_arity: theory -> arity -> arity | 
| 22765 | 139 | val get_sort: theory -> | 
| 140 | (indexname -> sort option) -> (indexname * sort) list -> indexname -> sort | |
| 22683 | 141 | val read_def_typ: theory * (indexname -> sort option) -> string -> typ | 
| 142 | val read_typ: theory -> string -> typ | |
| 143 | val read_typ_syntax: theory -> string -> typ | |
| 144 | val read_typ_abbrev: theory -> string -> typ | |
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 145 | val read_def_terms: | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 146 | theory * (indexname -> typ option) * (indexname -> sort option) -> | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 147 | string list -> bool -> (string * typ) list -> term list * (indexname * typ) list | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 148 | val simple_read_term: theory -> typ -> string -> term | 
| 16494 | 149 | val read_term: theory -> string -> term | 
| 150 | val read_prop: theory -> string -> term | |
| 24973 | 151 | val declare_const: Markup.property list -> bstring * typ * mixfix -> theory -> term * theory | 
| 24949 | 152 | val notation: bool -> Syntax.mode -> (term * mixfix) list -> theory -> theory | 
| 24776 
38afb780f622
add_consts_authentic/add_abbrev: tags (Markup.property list);
 wenzelm parents: 
24761diff
changeset | 153 | val add_abbrev: string -> Markup.property list -> | 
| 
38afb780f622
add_consts_authentic/add_abbrev: tags (Markup.property list);
 wenzelm parents: 
24761diff
changeset | 154 | bstring * term -> theory -> (term * term) * theory | 
| 25049 
ec0547a4fcf0
add_abbrev: removed Logic.legacy_varifyT, do not unvarify result (again);
 wenzelm parents: 
25042diff
changeset | 155 | val revert_abbrev: string -> string -> theory -> theory | 
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 156 | include SIGN_THEORY | 
| 24761 
d762ab297a07
removed obsolete external interface add_const_constraint;
 wenzelm parents: 
24732diff
changeset | 157 | val add_const_constraint: string * typ option -> theory -> theory | 
| 22811 | 158 | val primitive_class: string * class list -> theory -> theory | 
| 159 | val primitive_classrel: class * class -> theory -> theory | |
| 160 | val primitive_arity: arity -> theory -> theory | |
| 22796 | 161 | val hide_classes: bool -> xstring list -> theory -> theory | 
| 162 | val hide_classes_i: bool -> string list -> theory -> theory | |
| 163 | val hide_types: bool -> xstring list -> theory -> theory | |
| 164 | val hide_types_i: bool -> string list -> theory -> theory | |
| 165 | val hide_consts: bool -> xstring list -> theory -> theory | |
| 166 | val hide_consts_i: bool -> string list -> theory -> theory | |
| 167 | val hide_names: bool -> string * xstring list -> theory -> theory | |
| 168 | val hide_names_i: bool -> string * string list -> theory -> theory | |
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 169 | end | 
| 5642 | 170 | |
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 171 | structure Sign: SIGN = | 
| 143 | 172 | struct | 
| 0 | 173 | |
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 174 | (** datatype sign **) | 
| 16337 | 175 | |
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 176 | datatype sign = Sign of | 
| 18062 | 177 |  {naming: NameSpace.naming,     (*common naming conventions*)
 | 
| 178 | syn: Syntax.syntax, (*concrete syntax for terms, types, sorts*) | |
| 179 | tsig: Type.tsig, (*order-sorted signature of types*) | |
| 180 | consts: Consts.T}; (*polymorphic constants*) | |
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 181 | |
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 182 | fun make_sign (naming, syn, tsig, consts) = | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 183 |   Sign {naming = naming, syn = syn, tsig = tsig, consts = consts};
 | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 184 | |
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 185 | structure SignData = TheoryDataFun | 
| 22846 | 186 | ( | 
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 187 | type T = sign; | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 188 | val copy = I; | 
| 17405 | 189 |   fun extend (Sign {syn, tsig, consts, ...}) =
 | 
| 190 | make_sign (NameSpace.default_naming, syn, tsig, consts); | |
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 191 | |
| 18062 | 192 | val empty = | 
| 18714 | 193 | 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: 
16368diff
changeset | 194 | |
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 195 | fun merge pp (sign1, sign2) = | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 196 | let | 
| 18062 | 197 |       val Sign {naming = _, syn = syn1, tsig = tsig1, consts = consts1} = sign1;
 | 
| 198 |       val Sign {naming = _, syn = syn2, tsig = tsig2, consts = consts2} = sign2;
 | |
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 199 | |
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 200 | val naming = NameSpace.default_naming; | 
| 16597 
5a5229a55964
eliminated separate syn type -- advanced trfuns already part of Syntax.syntax;
 wenzelm parents: 
16536diff
changeset | 201 | val syn = Syntax.merge_syntaxes syn1 syn2; | 
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 202 | val tsig = Type.merge_tsigs pp (tsig1, tsig2); | 
| 18062 | 203 | val consts = Consts.merge (consts1, consts2); | 
| 204 | in make_sign (naming, syn, tsig, consts) end; | |
| 22846 | 205 | ); | 
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 206 | |
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 207 | fun rep_sg thy = SignData.get thy |> (fn Sign args => args); | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 208 | |
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 209 | 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: 
16368diff
changeset | 210 | make_sign (f (naming, syn, tsig, consts))); | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 211 | |
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 212 | 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: 
16368diff
changeset | 213 | 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: 
16368diff
changeset | 214 | 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: 
16368diff
changeset | 215 | 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: 
16368diff
changeset | 216 | |
| 16337 | 217 | |
| 218 | (* naming *) | |
| 219 | ||
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 220 | val naming_of = #naming o rep_sg; | 
| 16337 | 221 | val base_name = NameSpace.base; | 
| 222 | val full_name = NameSpace.full o naming_of; | |
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 223 | fun full_name_path thy elems = NameSpace.full (NameSpace.add_path elems (naming_of thy)); | 
| 16337 | 224 | val declare_name = NameSpace.declare o naming_of; | 
| 14645 | 225 | |
| 226 | ||
| 227 | (* syntax *) | |
| 228 | ||
| 16597 
5a5229a55964
eliminated separate syn type -- advanced trfuns already part of Syntax.syntax;
 wenzelm parents: 
16536diff
changeset | 229 | val syn_of = #syn o rep_sg; | 
| 14645 | 230 | |
| 0 | 231 | |
| 16337 | 232 | (* type signature *) | 
| 233 | ||
| 234 | val tsig_of = #tsig o rep_sg; | |
| 24732 | 235 | |
| 19642 | 236 | val classes_of = #2 o #classes o Type.rep_tsig o tsig_of; | 
| 21932 
7d592dc078e3
replaced classes by all_classes (topologically sorted);
 wenzelm parents: 
21796diff
changeset | 237 | val all_classes = Sorts.all_classes o classes_of; | 
| 
7d592dc078e3
replaced classes by all_classes (topologically sorted);
 wenzelm parents: 
21796diff
changeset | 238 | val minimal_classes = Sorts.minimal_classes o classes_of; | 
| 19642 | 239 | val super_classes = Sorts.super_classes o classes_of; | 
| 24732 | 240 | val minimize_sort = Sorts.minimize_sort o classes_of; | 
| 241 | val complete_sort = Sorts.complete_sort o classes_of; | |
| 242 | ||
| 4844 | 243 | val defaultS = Type.defaultS o tsig_of; | 
| 4568 | 244 | val subsort = Type.subsort o tsig_of; | 
| 7640 | 245 | val of_sort = Type.of_sort o tsig_of; | 
| 246 | 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: 
14700diff
changeset | 247 | val universal_witness = Type.universal_witness o tsig_of; | 
| 16655 | 248 | val all_sorts_nonempty = is_some o universal_witness; | 
| 24732 | 249 | val is_logtype = member (op =) o Type.logical_types o tsig_of; | 
| 250 | ||
| 14784 
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
 wenzelm parents: 
14700diff
changeset | 251 | val typ_instance = Type.typ_instance o tsig_of; | 
| 19427 | 252 | 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: 
16894diff
changeset | 253 | val typ_match = Type.typ_match o tsig_of; | 
| 
0bda949449ee
added add_const_constraint(_i), const_constraint;
 wenzelm parents: 
16894diff
changeset | 254 | val typ_unify = Type.unify o tsig_of; | 
| 4256 | 255 | |
| 256 | ||
| 18062 | 257 | (* polymorphic constants *) | 
| 16941 
0bda949449ee
added add_const_constraint(_i), const_constraint;
 wenzelm parents: 
16894diff
changeset | 258 | |
| 18062 | 259 | val consts_of = #consts o rep_sg; | 
| 21722 | 260 | val the_const_constraint = Consts.the_constraint o consts_of; | 
| 25042 
a33b78d63114
renamed Consts.the_declaration to Consts.the_type;
 wenzelm parents: 
25019diff
changeset | 261 | val the_const_type = Consts.the_type o consts_of; | 
| 18062 | 262 | val const_type = try o the_const_type; | 
| 21722 | 263 | val const_monomorphic = Consts.is_monomorphic o consts_of; | 
| 21183 | 264 | val const_syntax_name = Consts.syntax_name o consts_of; | 
| 18062 | 265 | val const_typargs = Consts.typargs o consts_of; | 
| 18164 | 266 | val const_instance = Consts.instance o consts_of; | 
| 4256 | 267 | |
| 26268 | 268 | fun mk_const thy (c, Ts) = Const (c, const_instance thy (c, Ts)); | 
| 269 | ||
| 16894 | 270 | val declared_tyname = Symtab.defined o #2 o #types o Type.rep_tsig o tsig_of; | 
| 24761 
d762ab297a07
removed obsolete external interface add_const_constraint;
 wenzelm parents: 
24732diff
changeset | 271 | val declared_const = can o the_const_constraint; | 
| 620 | 272 | |
| 402 | 273 | |
| 0 | 274 | |
| 16337 | 275 | (** intern / extern names **) | 
| 276 | ||
| 16368 
a06868ebeb0f
discontinued named name spaces (classK, typeK, constK);
 wenzelm parents: 
16354diff
changeset | 277 | val class_space = #1 o #classes o Type.rep_tsig o tsig_of; | 
| 
a06868ebeb0f
discontinued named name spaces (classK, typeK, constK);
 wenzelm parents: 
16354diff
changeset | 278 | val type_space = #1 o #types o Type.rep_tsig o tsig_of; | 
| 18967 | 279 | val const_space = Consts.space_of o consts_of; | 
| 14645 | 280 | |
| 16368 
a06868ebeb0f
discontinued named name spaces (classK, typeK, constK);
 wenzelm parents: 
16354diff
changeset | 281 | val intern_class = NameSpace.intern o class_space; | 
| 
a06868ebeb0f
discontinued named name spaces (classK, typeK, constK);
 wenzelm parents: 
16354diff
changeset | 282 | val extern_class = NameSpace.extern o class_space; | 
| 
a06868ebeb0f
discontinued named name spaces (classK, typeK, constK);
 wenzelm parents: 
16354diff
changeset | 283 | val intern_type = NameSpace.intern o type_space; | 
| 
a06868ebeb0f
discontinued named name spaces (classK, typeK, constK);
 wenzelm parents: 
16354diff
changeset | 284 | val extern_type = NameSpace.extern o type_space; | 
| 
a06868ebeb0f
discontinued named name spaces (classK, typeK, constK);
 wenzelm parents: 
16354diff
changeset | 285 | val intern_const = NameSpace.intern o const_space; | 
| 
a06868ebeb0f
discontinued named name spaces (classK, typeK, constK);
 wenzelm parents: 
16354diff
changeset | 286 | val extern_const = NameSpace.extern o const_space; | 
| 16337 | 287 | |
| 288 | val intern_sort = map o intern_class; | |
| 289 | val extern_sort = map o extern_class; | |
| 290 | ||
| 291 | local | |
| 14645 | 292 | |
| 18892 | 293 | fun map_typ f g (Type (c, Ts)) = Type (g c, map (map_typ f g) Ts) | 
| 294 | | map_typ f _ (TFree (x, S)) = TFree (x, map f S) | |
| 295 | | map_typ f _ (TVar (xi, S)) = TVar (xi, map f S); | |
| 296 | ||
| 297 | fun map_term f g h (Const (c, T)) = Const (h c, map_typ f g T) | |
| 298 | | map_term f g _ (Free (x, T)) = Free (x, map_typ f g T) | |
| 299 | | map_term f g _ (Var (xi, T)) = Var (xi, map_typ f g T) | |
| 300 | | map_term _ _ _ (t as Bound _) = t | |
| 301 | | map_term f g h (Abs (x, T, t)) = Abs (x, map_typ f g T, map_term f g h t) | |
| 302 | | map_term f g h (t $ u) = map_term f g h t $ map_term f g h u; | |
| 303 | ||
| 18994 | 304 | val add_classesT = Term.fold_atyps | 
| 305 | (fn TFree (_, S) => fold (insert (op =)) S | |
| 306 | | TVar (_, S) => fold (insert (op =)) S | |
| 307 | | _ => I); | |
| 308 | ||
| 309 | fun add_tyconsT (Type (c, Ts)) = insert (op =) c #> fold add_tyconsT Ts | |
| 310 | | add_tyconsT _ = I; | |
| 311 | ||
| 312 | val add_consts = Term.fold_aterms (fn Const (c, _) => insert (op =) c | _ => I); | |
| 313 | ||
| 16337 | 314 | fun mapping add_names f t = | 
| 315 | let | |
| 20664 | 316 | fun f' (x: string) = 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: 
19462diff
changeset | 317 | val tab = map_filter f' (add_names t []); | 
| 18941 | 318 | fun get x = the_default x (AList.lookup (op =) tab x); | 
| 16337 | 319 | in get end; | 
| 320 | ||
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 321 | fun typ_mapping f g thy T = | 
| 18892 | 322 | T |> map_typ | 
| 18994 | 323 | (mapping add_classesT (f thy) T) | 
| 324 | (mapping add_tyconsT (g thy) T); | |
| 14645 | 325 | |
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 326 | fun term_mapping f g h thy t = | 
| 18892 | 327 | t |> map_term | 
| 18994 | 328 | (mapping (Term.fold_types add_classesT) (f thy) t) | 
| 329 | (mapping (Term.fold_types add_tyconsT) (g thy) t) | |
| 330 | (mapping add_consts (h thy) t); | |
| 16337 | 331 | |
| 332 | in | |
| 14645 | 333 | |
| 16368 
a06868ebeb0f
discontinued named name spaces (classK, typeK, constK);
 wenzelm parents: 
16354diff
changeset | 334 | val intern_typ = typ_mapping intern_class intern_type; | 
| 
a06868ebeb0f
discontinued named name spaces (classK, typeK, constK);
 wenzelm parents: 
16354diff
changeset | 335 | val extern_typ = typ_mapping extern_class extern_type; | 
| 
a06868ebeb0f
discontinued named name spaces (classK, typeK, constK);
 wenzelm parents: 
16354diff
changeset | 336 | val intern_term = term_mapping intern_class intern_type intern_const; | 
| 18994 | 337 | fun extern_term h = term_mapping extern_class extern_type (K h); | 
| 16368 
a06868ebeb0f
discontinued named name spaces (classK, typeK, constK);
 wenzelm parents: 
16354diff
changeset | 338 | val intern_tycons = typ_mapping (K I) intern_type; | 
| 16337 | 339 | |
| 340 | end; | |
| 14645 | 341 | |
| 342 | ||
| 343 | ||
| 4249 | 344 | (** pretty printing of terms, types etc. **) | 
| 3937 | 345 | |
| 24921 | 346 | val pretty_term = Syntax.pretty_term o ProofContext.init; | 
| 347 | val pretty_typ = Syntax.pretty_typ o ProofContext.init; | |
| 348 | val pretty_sort = Syntax.pretty_sort o ProofContext.init; | |
| 18857 | 349 | |
| 24921 | 350 | val string_of_term = Syntax.string_of_term o ProofContext.init; | 
| 351 | val string_of_typ = Syntax.string_of_typ o ProofContext.init; | |
| 352 | val string_of_sort = Syntax.string_of_sort o ProofContext.init; | |
| 3937 | 353 | |
| 24921 | 354 | (*pp operations -- deferred evaluation*) | 
| 355 | fun pp thy = Pretty.pp | |
| 356 | (fn x => pretty_term thy x, | |
| 357 | fn x => pretty_typ thy x, | |
| 358 | fn x => pretty_sort thy x, | |
| 359 | fn x => Syntax.pretty_classrel (ProofContext.init thy) x, | |
| 360 | fn x => Syntax.pretty_arity (ProofContext.init thy) x); | |
| 14828 | 361 | |
| 3937 | 362 | |
| 363 | ||
| 16337 | 364 | (** certify entities **) (*exception TYPE*) | 
| 8898 | 365 | |
| 16337 | 366 | (* certify wrt. type signature *) | 
| 8898 | 367 | |
| 19462 | 368 | val arity_number = Type.arity_number o tsig_of; | 
| 369 | fun arity_sorts thy = Type.arity_sorts (pp thy) (tsig_of thy); | |
| 370 | ||
| 24273 
1d4b411caf44
replaced certify_typ_syntax/abbrev by certify_typ_mode;
 wenzelm parents: 
24260diff
changeset | 371 | val certify_class = Type.cert_class o tsig_of; | 
| 
1d4b411caf44
replaced certify_typ_syntax/abbrev by certify_typ_mode;
 wenzelm parents: 
24260diff
changeset | 372 | val certify_sort = Type.cert_sort o tsig_of; | 
| 
1d4b411caf44
replaced certify_typ_syntax/abbrev by certify_typ_mode;
 wenzelm parents: 
24260diff
changeset | 373 | val certify_typ = Type.cert_typ o tsig_of; | 
| 
1d4b411caf44
replaced certify_typ_syntax/abbrev by certify_typ_mode;
 wenzelm parents: 
24260diff
changeset | 374 | fun certify_typ_mode mode = Type.cert_typ_mode mode o tsig_of; | 
| 10443 
0a68dc9edba5
added certify_tycon, certify_tyabbr, certify_const;
 wenzelm parents: 
10404diff
changeset | 375 | |
| 4961 
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
 wenzelm parents: 
4951diff
changeset | 376 | |
| 18967 | 377 | (* certify term/prop *) | 
| 4961 
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
 wenzelm parents: 
4951diff
changeset | 378 | |
| 14987 | 379 | local | 
| 1494 
22f67e796445
added nodup_Vars check in cterm_of. Prevents same var with distinct types.
 nipkow parents: 
1460diff
changeset | 380 | |
| 16337 | 381 | fun type_check pp tm = | 
| 4961 
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
 wenzelm parents: 
4951diff
changeset | 382 | let | 
| 
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
 wenzelm parents: 
4951diff
changeset | 383 | fun err_appl why bs t T u U = | 
| 
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
 wenzelm parents: 
4951diff
changeset | 384 | let | 
| 10404 | 385 | val xs = map Free bs; (*we do not rename here*) | 
| 4961 
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
 wenzelm parents: 
4951diff
changeset | 386 | val t' = subst_bounds (xs, t); | 
| 
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
 wenzelm parents: 
4951diff
changeset | 387 | val u' = subst_bounds (xs, u); | 
| 16337 | 388 | val msg = cat_lines | 
| 14828 | 389 | (TypeInfer.appl_error (Syntax.pp_show_brackets pp) why t' T u' U); | 
| 16337 | 390 | in raise TYPE (msg, [T, U], [t', u']) end; | 
| 4961 
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
 wenzelm parents: 
4951diff
changeset | 391 | |
| 
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
 wenzelm parents: 
4951diff
changeset | 392 | fun typ_of (_, Const (_, T)) = T | 
| 
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
 wenzelm parents: 
4951diff
changeset | 393 | | typ_of (_, Free (_, T)) = T | 
| 
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
 wenzelm parents: 
4951diff
changeset | 394 | | typ_of (_, Var (_, T)) = T | 
| 15570 | 395 | | 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: 
4951diff
changeset | 396 |           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: 
4951diff
changeset | 397 | | 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: 
4951diff
changeset | 398 | | typ_of (bs, t $ u) = | 
| 
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
 wenzelm parents: 
4951diff
changeset | 399 | 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: 
4951diff
changeset | 400 | (case T of | 
| 
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
 wenzelm parents: 
4951diff
changeset | 401 |               Type ("fun", [T1, T2]) =>
 | 
| 14828 | 402 | if T1 = U then T2 else err_appl "Incompatible operand type" bs t T u U | 
| 403 | | _ => 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: 
4951diff
changeset | 404 | end; | 
| 18967 | 405 | in typ_of ([], tm) end; | 
| 4961 
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
 wenzelm parents: 
4951diff
changeset | 406 | |
| 18967 | 407 | fun err msg = raise TYPE (msg, [], []); | 
| 408 | ||
| 409 | fun check_vars (t $ u) = (check_vars t; check_vars u) | |
| 410 | | check_vars (Abs (_, _, t)) = check_vars t | |
| 411 | | check_vars (Var (xi as (_, i), _)) = | |
| 412 |       if i < 0 then err ("Malformed variable: " ^ quote (Term.string_of_vname xi)) else ()
 | |
| 413 | | check_vars _ = (); | |
| 0 | 414 | |
| 14987 | 415 | in | 
| 416 | ||
| 24674 
4ade7ac6a21c
certify': proper do_expand argument (which observes force_expand consts) instead of home-grown normalize;
 wenzelm parents: 
24517diff
changeset | 417 | fun certify' prop pp do_expand consts thy tm = | 
| 251 | 418 | let | 
| 18967 | 419 | val _ = check_vars tm; | 
| 20548 
8ef25fe585a8
renamed Term.map_term_types to Term.map_types (cf. Term.fold_types);
 wenzelm parents: 
20330diff
changeset | 420 | val tm' = Term.map_types (certify_typ thy) tm; | 
| 18967 | 421 | val T = type_check pp tm'; | 
| 422 | val _ = if prop andalso T <> propT then err "Term not of type prop" else (); | |
| 24674 
4ade7ac6a21c
certify': proper do_expand argument (which observes force_expand consts) instead of home-grown normalize;
 wenzelm parents: 
24517diff
changeset | 423 | val tm'' = Consts.certify pp (tsig_of thy) do_expand consts tm'; | 
| 18967 | 424 | in (if tm = tm'' then tm else tm'', T, Term.maxidx_of_term tm'') end; | 
| 169 | 425 | |
| 24674 
4ade7ac6a21c
certify': proper do_expand argument (which observes force_expand consts) instead of home-grown normalize;
 wenzelm parents: 
24517diff
changeset | 426 | fun certify_term thy = certify' false (pp thy) true (consts_of thy) thy; | 
| 
4ade7ac6a21c
certify': proper do_expand argument (which observes force_expand consts) instead of home-grown normalize;
 wenzelm parents: 
24517diff
changeset | 427 | fun certify_prop thy = certify' true (pp thy) true (consts_of thy) thy; | 
| 18967 | 428 | |
| 24674 
4ade7ac6a21c
certify': proper do_expand argument (which observes force_expand consts) instead of home-grown normalize;
 wenzelm parents: 
24517diff
changeset | 429 | fun cert_term_abbrev thy = #1 o certify' false (pp thy) false (consts_of thy) thy; | 
| 18967 | 430 | val cert_term = #1 oo certify_term; | 
| 431 | val cert_prop = #1 oo certify_prop; | |
| 251 | 432 | |
| 14987 | 433 | end; | 
| 434 | ||
| 251 | 435 | |
| 18941 | 436 | (* specifications *) | 
| 437 | ||
| 21741 | 438 | fun no_variables kind add addT mk mkT pp tm = | 
| 439 | (case (add tm [], addT tm []) of | |
| 18941 | 440 | ([], []) => tm | 
| 25117 | 441 | | (frees, tfrees) => error (Pretty.string_of (Pretty.block | 
| 442 |       (Pretty.str ("Illegal " ^ kind ^ " variable(s) in term:") :: Pretty.brk 1 ::
 | |
| 443 | Pretty.commas (map (Pretty.term pp o mk) frees @ map (Pretty.typ pp o mkT) tfrees))))); | |
| 21741 | 444 | |
| 445 | val no_frees = no_variables "free" Term.add_frees Term.add_tfrees Free TFree; | |
| 446 | val no_vars = no_variables "schematic" Term.add_vars Term.add_tvars Var TVar; | |
| 18941 | 447 | |
| 24981 
4ec3f95190bf
dest/cert_def: replaced Pretty.pp by explicit Proof.context;
 wenzelm parents: 
24973diff
changeset | 448 | fun cert_def ctxt tm = | 
| 18941 | 449 | let val ((lhs, rhs), _) = tm | 
| 24981 
4ec3f95190bf
dest/cert_def: replaced Pretty.pp by explicit Proof.context;
 wenzelm parents: 
24973diff
changeset | 450 | |> no_vars (Syntax.pp ctxt) | 
| 18941 | 451 | |> Logic.strip_imp_concl | 
| 24981 
4ec3f95190bf
dest/cert_def: replaced Pretty.pp by explicit Proof.context;
 wenzelm parents: 
24973diff
changeset | 452 | |> PrimitiveDefs.dest_def ctxt Term.is_Const (K false) (K false) | 
| 18941 | 453 | in (Term.dest_Const (Term.head_of lhs), rhs) end | 
| 454 | handle TERM (msg, _) => error msg; | |
| 455 | ||
| 456 | ||
| 16337 | 457 | |
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 458 | (** read and certify entities **) (*exception ERROR*) | 
| 16337 | 459 | |
| 24273 
1d4b411caf44
replaced certify_typ_syntax/abbrev by certify_typ_mode;
 wenzelm parents: 
24260diff
changeset | 460 | (* classes *) | 
| 19244 
1d7e51d9828b
added read_class, read/cert_classrel/arity (from axclass.ML);
 wenzelm parents: 
19099diff
changeset | 461 | |
| 19427 | 462 | fun read_class thy c = certify_class thy (intern_class thy c) | 
| 463 | handle TYPE (msg, _, _) => error msg; | |
| 16337 | 464 | |
| 465 | ||
| 19244 
1d7e51d9828b
added read_class, read/cert_classrel/arity (from axclass.ML);
 wenzelm parents: 
19099diff
changeset | 466 | (* type arities *) | 
| 
1d7e51d9828b
added read_class, read/cert_classrel/arity (from axclass.ML);
 wenzelm parents: 
19099diff
changeset | 467 | |
| 
1d7e51d9828b
added read_class, read/cert_classrel/arity (from axclass.ML);
 wenzelm parents: 
19099diff
changeset | 468 | fun prep_arity prep_tycon prep_sort thy (t, Ss, S) = | 
| 
1d7e51d9828b
added read_class, read/cert_classrel/arity (from axclass.ML);
 wenzelm parents: 
19099diff
changeset | 469 | 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: 
19482diff
changeset | 470 | 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: 
19099diff
changeset | 471 | |
| 24707 | 472 | val read_arity = prep_arity intern_type Syntax.read_sort_global; | 
| 19244 
1d7e51d9828b
added read_class, read/cert_classrel/arity (from axclass.ML);
 wenzelm parents: 
19099diff
changeset | 473 | val cert_arity = prep_arity (K I) certify_sort; | 
| 
1d7e51d9828b
added read_class, read/cert_classrel/arity (from axclass.ML);
 wenzelm parents: 
19099diff
changeset | 474 | |
| 
1d7e51d9828b
added read_class, read/cert_classrel/arity (from axclass.ML);
 wenzelm parents: 
19099diff
changeset | 475 | |
| 16337 | 476 | (* types *) | 
| 477 | ||
| 22765 | 478 | fun get_sort thy def_sort raw_env = | 
| 22696 | 479 | let | 
| 22765 | 480 | val tsig = tsig_of thy; | 
| 481 | ||
| 22696 | 482 | fun eq ((xi, S), (xi', S')) = | 
| 483 | Term.eq_ix (xi, xi') andalso Type.eq_sort tsig (S, S'); | |
| 484 | val env = distinct eq raw_env; | |
| 485 | val _ = (case duplicates (eq_fst (op =)) env of [] => () | |
| 486 |       | dups => error ("Inconsistent sort constraints for type variable(s) "
 | |
| 487 | ^ commas_quote (map (Term.string_of_vname' o fst) dups))); | |
| 488 | ||
| 489 | fun get xi = | |
| 490 | (case (AList.lookup (op =) env xi, def_sort xi) of | |
| 491 | (NONE, NONE) => Type.defaultS tsig | |
| 492 | | (NONE, SOME S) => S | |
| 493 | | (SOME S, NONE) => S | |
| 494 | | (SOME S, SOME S') => | |
| 495 | if Type.eq_sort tsig (S, S') then S' | |
| 496 |           else error ("Sort constraint inconsistent with default for type variable " ^
 | |
| 497 | quote (Term.string_of_vname' xi))); | |
| 498 | in get end; | |
| 499 | ||
| 16337 | 500 | local | 
| 501 | ||
| 24273 
1d4b411caf44
replaced certify_typ_syntax/abbrev by certify_typ_mode;
 wenzelm parents: 
24260diff
changeset | 502 | fun gen_read_typ mode (thy, def_sort) str = | 
| 16337 | 503 | let | 
| 24273 
1d4b411caf44
replaced certify_typ_syntax/abbrev by certify_typ_mode;
 wenzelm parents: 
24260diff
changeset | 504 | val ctxt = ProofContext.init thy; | 
| 
1d4b411caf44
replaced certify_typ_syntax/abbrev by certify_typ_mode;
 wenzelm parents: 
24260diff
changeset | 505 | val syn = syn_of thy; | 
| 22696 | 506 | val T = intern_tycons thy | 
| 24273 
1d4b411caf44
replaced certify_typ_syntax/abbrev by certify_typ_mode;
 wenzelm parents: 
24260diff
changeset | 507 | (Syntax.standard_parse_typ ctxt syn (get_sort thy def_sort) (intern_sort thy) str); | 
| 
1d4b411caf44
replaced certify_typ_syntax/abbrev by certify_typ_mode;
 wenzelm parents: 
24260diff
changeset | 508 | in certify_typ_mode mode thy T handle TYPE (msg, _, _) => error msg end | 
| 18678 | 509 |   handle ERROR msg => cat_error msg ("The error(s) above occurred in type " ^ quote str);
 | 
| 16337 | 510 | |
| 511 | in | |
| 512 | ||
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 513 | fun no_def_sort thy = (thy: theory, K NONE); | 
| 16337 | 514 | |
| 24273 
1d4b411caf44
replaced certify_typ_syntax/abbrev by certify_typ_mode;
 wenzelm parents: 
24260diff
changeset | 515 | val read_def_typ = gen_read_typ Type.mode_default; | 
| 
1d4b411caf44
replaced certify_typ_syntax/abbrev by certify_typ_mode;
 wenzelm parents: 
24260diff
changeset | 516 | val read_typ = gen_read_typ Type.mode_default o no_def_sort; | 
| 
1d4b411caf44
replaced certify_typ_syntax/abbrev by certify_typ_mode;
 wenzelm parents: 
24260diff
changeset | 517 | val read_typ_syntax = gen_read_typ Type.mode_syntax o no_def_sort; | 
| 
1d4b411caf44
replaced certify_typ_syntax/abbrev by certify_typ_mode;
 wenzelm parents: 
24260diff
changeset | 518 | val read_typ_abbrev = gen_read_typ Type.mode_abbrev o no_def_sort; | 
| 16337 | 519 | |
| 520 | end; | |
| 521 | ||
| 522 | ||
| 22696 | 523 | (* read_def_terms -- read terms and infer types *) (*exception ERROR*) | 
| 251 | 524 | |
| 2979 | 525 | (* | 
| 16337 | 526 | def_type: partial map from indexnames to types (constrains Frees and Vars) | 
| 527 | def_sort: partial map from indexnames to sorts (constrains TFrees and TVars) | |
| 20155 | 528 | used: context of already used type variables | 
| 2979 | 529 | freeze: if true then generated parameters are turned into TFrees, else TVars | 
| 530 | *) | |
| 531 | ||
| 24233 
5bec1b4149e7
read_def_terms': restrict scope of disambiguation to individual term;
 wenzelm parents: 
24142diff
changeset | 532 | fun read_def_terms' | 
| 
5bec1b4149e7
read_def_terms': restrict scope of disambiguation to individual term;
 wenzelm parents: 
24142diff
changeset | 533 | pp is_logtype syn consts map_free ctxt (def_type, def_sort) used freeze raw_args = | 
| 251 | 534 | let | 
| 22696 | 535 | val thy = ProofContext.theory_of ctxt; | 
| 24517 
eaed6ac5f7f2
read_def_terms: replaced full Syntax.check_typs by certify_typ, to workaround problems with illegal schematic type vars;
 wenzelm parents: 
24485diff
changeset | 536 | fun check_typs Ts = map (certify_typ thy) Ts | 
| 
eaed6ac5f7f2
read_def_terms: replaced full Syntax.check_typs by certify_typ, to workaround problems with illegal schematic type vars;
 wenzelm parents: 
24485diff
changeset | 537 | handle TYPE (msg, _, _) => error msg; | 
| 22696 | 538 | |
| 24485 
687bbb686ef9
infer_types: general check_typs instead of Type.cert_typ_mode;
 wenzelm parents: 
24370diff
changeset | 539 | fun infer args = TypeInfer.infer_types pp (tsig_of thy) check_typs | 
| 24761 
d762ab297a07
removed obsolete external interface add_const_constraint;
 wenzelm parents: 
24732diff
changeset | 540 | (try (Consts.the_constraint consts)) def_type used ~1 (SOME freeze) args |>> map fst | 
| 24233 
5bec1b4149e7
read_def_terms': restrict scope of disambiguation to individual term;
 wenzelm parents: 
24142diff
changeset | 541 | handle TYPE (msg, _, _) => error msg; | 
| 22696 | 542 | |
| 25476 
03da46cfab9e
standard_parse_term: check ambiguous results without changing the result yet;
 wenzelm parents: 
25458diff
changeset | 543 | fun check T t = (singleton (fst o infer) (t, T); NONE) handle ERROR msg => SOME msg; | 
| 24233 
5bec1b4149e7
read_def_terms': restrict scope of disambiguation to individual term;
 wenzelm parents: 
24142diff
changeset | 544 | val map_const = try (#1 o Term.dest_Const o Consts.read_const consts); | 
| 24370 | 545 | fun read T = Syntax.standard_parse_term pp (check T) (get_sort thy def_sort) map_const map_free | 
| 24233 
5bec1b4149e7
read_def_terms': restrict scope of disambiguation to individual term;
 wenzelm parents: 
24142diff
changeset | 546 | (intern_tycons thy) (intern_sort thy) ctxt is_logtype syn T; | 
| 4249 | 547 | in | 
| 24233 
5bec1b4149e7
read_def_terms': restrict scope of disambiguation to individual term;
 wenzelm parents: 
24142diff
changeset | 548 | raw_args | 
| 
5bec1b4149e7
read_def_terms': restrict scope of disambiguation to individual term;
 wenzelm parents: 
24142diff
changeset | 549 | |> map (fn (s, raw_T) => | 
| 
5bec1b4149e7
read_def_terms': restrict scope of disambiguation to individual term;
 wenzelm parents: 
24142diff
changeset | 550 | let val T = certify_typ thy raw_T handle TYPE (msg, _, _) => error msg | 
| 
5bec1b4149e7
read_def_terms': restrict scope of disambiguation to individual term;
 wenzelm parents: 
24142diff
changeset | 551 | in (read (#1 (TypeInfer.paramify_dummies T 0)) s, T) end) | 
| 
5bec1b4149e7
read_def_terms': restrict scope of disambiguation to individual term;
 wenzelm parents: 
24142diff
changeset | 552 | |> infer | 
| 4249 | 553 | end; | 
| 623 | 554 | |
| 20230 
04cb2d917de5
read_def_cterms (legacy version): Consts.certify;
 wenzelm parents: 
20211diff
changeset | 555 | fun read_def_terms (thy, types, sorts) used freeze sTs = | 
| 
04cb2d917de5
read_def_cterms (legacy version): Consts.certify;
 wenzelm parents: 
20211diff
changeset | 556 | let | 
| 
04cb2d917de5
read_def_cterms (legacy version): Consts.certify;
 wenzelm parents: 
20211diff
changeset | 557 | val pp = pp thy; | 
| 
04cb2d917de5
read_def_cterms (legacy version): Consts.certify;
 wenzelm parents: 
20211diff
changeset | 558 | val consts = consts_of thy; | 
| 24674 
4ade7ac6a21c
certify': proper do_expand argument (which observes force_expand consts) instead of home-grown normalize;
 wenzelm parents: 
24517diff
changeset | 559 | val cert_consts = Consts.certify pp (tsig_of thy) true consts; | 
| 22765 | 560 | fun map_free x = if is_some (types (x, ~1)) then SOME x else NONE; | 
| 20230 
04cb2d917de5
read_def_cterms (legacy version): Consts.certify;
 wenzelm parents: 
20211diff
changeset | 561 | val (ts, inst) = | 
| 22765 | 562 | read_def_terms' pp (is_logtype thy) (syn_of thy) consts map_free | 
| 21772 | 563 | (ProofContext.init thy) (types, sorts) (Name.make_context used) freeze sTs; | 
| 20230 
04cb2d917de5
read_def_cterms (legacy version): Consts.certify;
 wenzelm parents: 
20211diff
changeset | 564 | in (map cert_consts ts, inst) end; | 
| 12068 
469f372d63db
added pretty_term', read_typ', read_typ_no_norm', read_def_terms'
 wenzelm parents: 
11720diff
changeset | 565 | |
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 566 | fun simple_read_term thy T s = | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 567 | let val ([t], _) = read_def_terms (thy, K NONE, K NONE) [] true [(s, T)] | 
| 20230 
04cb2d917de5
read_def_cterms (legacy version): Consts.certify;
 wenzelm parents: 
20211diff
changeset | 568 |   in t end handle ERROR msg => cat_error msg ("The error(s) above occurred for term " ^ s);
 | 
| 8802 | 569 | |
| 22709 | 570 | fun read_term thy = simple_read_term thy dummyT; | 
| 16494 | 571 | fun read_prop thy = simple_read_term thy propT; | 
| 572 | ||
| 8607 | 573 | |
| 2979 | 574 | |
| 16337 | 575 | (** signature extension functions **) (*exception ERROR/TYPE*) | 
| 386 | 576 | |
| 577 | (* add default sort *) | |
| 578 | ||
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 579 | fun gen_add_defsort prep_sort s thy = | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 580 | thy |> map_tsig (Type.set_defsort (prep_sort thy s)); | 
| 8898 | 581 | |
| 24707 | 582 | val add_defsort = gen_add_defsort Syntax.read_sort_global; | 
| 16337 | 583 | val add_defsort_i = gen_add_defsort certify_sort; | 
| 386 | 584 | |
| 585 | ||
| 586 | (* add type constructors *) | |
| 587 | ||
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 588 | fun add_types types thy = thy |> map_sign (fn (naming, syn, tsig, consts) => | 
| 14856 | 589 | let | 
| 25390 
8bfa6566ac6b
syntax operations: turned extend'' into update'' (absorb duplicates);
 wenzelm parents: 
25383diff
changeset | 590 | val syn' = Syntax.update_type_gram types syn; | 
| 16368 
a06868ebeb0f
discontinued named name spaces (classK, typeK, constK);
 wenzelm parents: 
16354diff
changeset | 591 | 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: 
16368diff
changeset | 592 | val tsig' = Type.add_types naming decls tsig; | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 593 | in (naming, syn', tsig', consts) end); | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 594 | |
| 16337 | 595 | |
| 596 | (* add nonterminals *) | |
| 597 | ||
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 598 | fun add_nonterminals ns thy = thy |> map_sign (fn (naming, syn, tsig, consts) => | 
| 16337 | 599 | let | 
| 25390 
8bfa6566ac6b
syntax operations: turned extend'' into update'' (absorb duplicates);
 wenzelm parents: 
25383diff
changeset | 600 | val syn' = Syntax.update_consts ns syn; | 
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 601 | val tsig' = Type.add_nonterminals naming ns tsig; | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 602 | in (naming, syn', tsig', consts) end); | 
| 386 | 603 | |
| 604 | ||
| 605 | (* add type abbreviations *) | |
| 606 | ||
| 25366 
05c2ae18cc51
tyabbr/syntax/consts: replaced obsolete read_typ by Syntax.parse_typ/certify_typ;
 wenzelm parents: 
25351diff
changeset | 607 | fun gen_add_tyabbr parse_typ (a, vs, rhs, mx) thy = | 
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 608 | thy |> map_sign (fn (naming, syn, tsig, consts) => | 
| 16337 | 609 | let | 
| 25366 
05c2ae18cc51
tyabbr/syntax/consts: replaced obsolete read_typ by Syntax.parse_typ/certify_typ;
 wenzelm parents: 
25351diff
changeset | 610 | val ctxt = ProofContext.init thy; | 
| 25390 
8bfa6566ac6b
syntax operations: turned extend'' into update'' (absorb duplicates);
 wenzelm parents: 
25383diff
changeset | 611 | val syn' = Syntax.update_type_gram [(a, length vs, mx)] syn; | 
| 16368 
a06868ebeb0f
discontinued named name spaces (classK, typeK, constK);
 wenzelm parents: 
16354diff
changeset | 612 | val a' = Syntax.type_name a mx; | 
| 25366 
05c2ae18cc51
tyabbr/syntax/consts: replaced obsolete read_typ by Syntax.parse_typ/certify_typ;
 wenzelm parents: 
25351diff
changeset | 613 | val abbr = (a', vs, certify_typ_mode Type.mode_syntax thy (parse_typ ctxt rhs)) | 
| 18678 | 614 |         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: 
16368diff
changeset | 615 | val tsig' = Type.add_abbrevs naming [abbr] tsig; | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 616 | in (naming, syn', tsig', consts) end); | 
| 386 | 617 | |
| 24707 | 618 | val add_tyabbrs = fold (gen_add_tyabbr Syntax.parse_typ); | 
| 24273 
1d4b411caf44
replaced certify_typ_syntax/abbrev by certify_typ_mode;
 wenzelm parents: 
24260diff
changeset | 619 | val add_tyabbrs_i = fold (gen_add_tyabbr (K I)); | 
| 14784 
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
 wenzelm parents: 
14700diff
changeset | 620 | |
| 
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
 wenzelm parents: 
14700diff
changeset | 621 | |
| 16337 | 622 | (* modify syntax *) | 
| 623 | ||
| 25366 
05c2ae18cc51
tyabbr/syntax/consts: replaced obsolete read_typ by Syntax.parse_typ/certify_typ;
 wenzelm parents: 
25351diff
changeset | 624 | fun gen_syntax change_gram parse_typ mode args thy = | 
| 16337 | 625 | let | 
| 25366 
05c2ae18cc51
tyabbr/syntax/consts: replaced obsolete read_typ by Syntax.parse_typ/certify_typ;
 wenzelm parents: 
25351diff
changeset | 626 | val ctxt = ProofContext.init thy; | 
| 
05c2ae18cc51
tyabbr/syntax/consts: replaced obsolete read_typ by Syntax.parse_typ/certify_typ;
 wenzelm parents: 
25351diff
changeset | 627 | fun prep (c, T, mx) = (c, certify_typ_mode Type.mode_syntax thy (parse_typ ctxt T), mx) | 
| 24273 
1d4b411caf44
replaced certify_typ_syntax/abbrev by certify_typ_mode;
 wenzelm parents: 
24260diff
changeset | 628 | handle ERROR msg => | 
| 
1d4b411caf44
replaced certify_typ_syntax/abbrev by certify_typ_mode;
 wenzelm parents: 
24260diff
changeset | 629 |         cat_error msg ("in syntax declaration " ^ quote (Syntax.const_name c mx));
 | 
| 20784 | 630 | in thy |> map_syn (change_gram (is_logtype thy) mode (map prep args)) end; | 
| 16337 | 631 | |
| 25390 
8bfa6566ac6b
syntax operations: turned extend'' into update'' (absorb duplicates);
 wenzelm parents: 
25383diff
changeset | 632 | fun gen_add_syntax x = gen_syntax Syntax.update_const_gram x; | 
| 386 | 633 | |
| 24707 | 634 | val add_modesyntax = gen_add_syntax Syntax.parse_typ; | 
| 24273 
1d4b411caf44
replaced certify_typ_syntax/abbrev by certify_typ_mode;
 wenzelm parents: 
24260diff
changeset | 635 | val add_modesyntax_i = gen_add_syntax (K I); | 
| 24959 
119793c84647
replaced Sign.add_consts_authentic by Sign.declare_const;
 wenzelm parents: 
24949diff
changeset | 636 | val add_syntax = add_modesyntax Syntax.mode_default; | 
| 
119793c84647
replaced Sign.add_consts_authentic by Sign.declare_const;
 wenzelm parents: 
24949diff
changeset | 637 | val add_syntax_i = add_modesyntax_i Syntax.mode_default; | 
| 24707 | 638 | val del_modesyntax = gen_syntax Syntax.remove_const_gram Syntax.parse_typ; | 
| 24273 
1d4b411caf44
replaced certify_typ_syntax/abbrev by certify_typ_mode;
 wenzelm parents: 
24260diff
changeset | 639 | val del_modesyntax_i = gen_syntax Syntax.remove_const_gram (K I); | 
| 3805 | 640 | |
| 25383 
2e766dd19e4f
notation: based on Syntax.update_const_gram (avoids duplicates);
 wenzelm parents: 
25366diff
changeset | 641 | fun notation add mode args thy = | 
| 
2e766dd19e4f
notation: based on Syntax.update_const_gram (avoids duplicates);
 wenzelm parents: 
25366diff
changeset | 642 | let | 
| 
2e766dd19e4f
notation: based on Syntax.update_const_gram (avoids duplicates);
 wenzelm parents: 
25366diff
changeset | 643 | val change_gram = if add then Syntax.update_const_gram else Syntax.remove_const_gram; | 
| 
2e766dd19e4f
notation: based on Syntax.update_const_gram (avoids duplicates);
 wenzelm parents: 
25366diff
changeset | 644 | fun const_syntax (Const (c, _), mx) = try (Consts.syntax (consts_of thy)) (c, mx) | 
| 
2e766dd19e4f
notation: based on Syntax.update_const_gram (avoids duplicates);
 wenzelm parents: 
25366diff
changeset | 645 | | const_syntax _ = NONE; | 
| 
2e766dd19e4f
notation: based on Syntax.update_const_gram (avoids duplicates);
 wenzelm parents: 
25366diff
changeset | 646 | in gen_syntax change_gram (K I) mode (map_filter const_syntax args) thy end; | 
| 19658 | 647 | |
| 16337 | 648 | |
| 649 | (* add constants *) | |
| 386 | 650 | |
| 17995 | 651 | local | 
| 652 | ||
| 25366 
05c2ae18cc51
tyabbr/syntax/consts: replaced obsolete read_typ by Syntax.parse_typ/certify_typ;
 wenzelm parents: 
25351diff
changeset | 653 | fun gen_add_consts parse_typ authentic tags raw_args thy = | 
| 386 | 654 | let | 
| 25366 
05c2ae18cc51
tyabbr/syntax/consts: replaced obsolete read_typ by Syntax.parse_typ/certify_typ;
 wenzelm parents: 
25351diff
changeset | 655 | val ctxt = ProofContext.init thy; | 
| 
05c2ae18cc51
tyabbr/syntax/consts: replaced obsolete read_typ by Syntax.parse_typ/certify_typ;
 wenzelm parents: 
25351diff
changeset | 656 | val prepT = Type.no_tvars o Term.no_dummyT o certify_typ thy o parse_typ ctxt; | 
| 19658 | 657 | fun prep (raw_c, raw_T, raw_mx) = | 
| 658 | let | |
| 659 | val (c, mx) = Syntax.const_mixfix raw_c raw_mx; | |
| 24959 
119793c84647
replaced Sign.add_consts_authentic by Sign.declare_const;
 wenzelm parents: 
24949diff
changeset | 660 | val full_c = full_name thy c; | 
| 
119793c84647
replaced Sign.add_consts_authentic by Sign.declare_const;
 wenzelm parents: 
24949diff
changeset | 661 | val c' = if authentic then Syntax.constN ^ full_c else c; | 
| 19658 | 662 | val T = (prepT raw_T handle TYPE (msg, _, _) => error msg) handle ERROR msg => | 
| 663 |           cat_error msg ("in declaration of constant " ^ quote c);
 | |
| 24959 
119793c84647
replaced Sign.add_consts_authentic by Sign.declare_const;
 wenzelm parents: 
24949diff
changeset | 664 | val T' = Compress.typ thy (Logic.varifyT T); | 
| 
119793c84647
replaced Sign.add_consts_authentic by Sign.declare_const;
 wenzelm parents: 
24949diff
changeset | 665 | in ((c, T'), (c', T', mx), Const (full_c, T)) end; | 
| 16337 | 666 | val args = map prep raw_args; | 
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 667 | in | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 668 | thy | 
| 24776 
38afb780f622
add_consts_authentic/add_abbrev: tags (Markup.property list);
 wenzelm parents: 
24761diff
changeset | 669 | |> map_consts (fold (Consts.declare authentic (naming_of thy) tags o #1) args) | 
| 19658 | 670 | |> add_syntax_i (map #2 args) | 
| 24959 
119793c84647
replaced Sign.add_consts_authentic by Sign.declare_const;
 wenzelm parents: 
24949diff
changeset | 671 | |> pair (map #3 args) | 
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 672 | end; | 
| 386 | 673 | |
| 17995 | 674 | in | 
| 675 | ||
| 25366 
05c2ae18cc51
tyabbr/syntax/consts: replaced obsolete read_typ by Syntax.parse_typ/certify_typ;
 wenzelm parents: 
25351diff
changeset | 676 | val add_consts = snd oo gen_add_consts Syntax.parse_typ false []; | 
| 
05c2ae18cc51
tyabbr/syntax/consts: replaced obsolete read_typ by Syntax.parse_typ/certify_typ;
 wenzelm parents: 
25351diff
changeset | 677 | val add_consts_i = snd oo gen_add_consts (K I) false []; | 
| 24959 
119793c84647
replaced Sign.add_consts_authentic by Sign.declare_const;
 wenzelm parents: 
24949diff
changeset | 678 | |
| 25366 
05c2ae18cc51
tyabbr/syntax/consts: replaced obsolete read_typ by Syntax.parse_typ/certify_typ;
 wenzelm parents: 
25351diff
changeset | 679 | fun declare_const tags arg = gen_add_consts (K I) true tags [arg] #>> the_single; | 
| 386 | 680 | |
| 17995 | 681 | end; | 
| 682 | ||
| 386 | 683 | |
| 25049 
ec0547a4fcf0
add_abbrev: removed Logic.legacy_varifyT, do not unvarify result (again);
 wenzelm parents: 
25042diff
changeset | 684 | (* abbreviations *) | 
| 18941 | 685 | |
| 24776 
38afb780f622
add_consts_authentic/add_abbrev: tags (Markup.property list);
 wenzelm parents: 
24761diff
changeset | 686 | fun add_abbrev mode tags (c, raw_t) thy = | 
| 18941 | 687 | let | 
| 21741 | 688 | val pp = pp thy; | 
| 25049 
ec0547a4fcf0
add_abbrev: removed Logic.legacy_varifyT, do not unvarify result (again);
 wenzelm parents: 
25042diff
changeset | 689 | val prep_tm = Compress.term thy o no_frees pp o Term.no_dummy_patterns o cert_term_abbrev thy; | 
| 19806 | 690 | val t = (prep_tm raw_t handle TYPE (msg, _, _) => error msg | TERM (msg, _) => error msg) | 
| 19366 
a2040baa9444
pretty_term': early vs. late externing (support authentic syntax);
 wenzelm parents: 
19289diff
changeset | 691 |       handle ERROR msg => cat_error msg ("in constant abbreviation " ^ quote c);
 | 
| 21696 | 692 | val (res, consts') = consts_of thy | 
| 24776 
38afb780f622
add_consts_authentic/add_abbrev: tags (Markup.property list);
 wenzelm parents: 
24761diff
changeset | 693 | |> Consts.abbreviate pp (tsig_of thy) (naming_of thy) mode tags (c, t); | 
| 25049 
ec0547a4fcf0
add_abbrev: removed Logic.legacy_varifyT, do not unvarify result (again);
 wenzelm parents: 
25042diff
changeset | 694 | in (res, thy |> map_consts (K consts')) end; | 
| 
ec0547a4fcf0
add_abbrev: removed Logic.legacy_varifyT, do not unvarify result (again);
 wenzelm parents: 
25042diff
changeset | 695 | |
| 
ec0547a4fcf0
add_abbrev: removed Logic.legacy_varifyT, do not unvarify result (again);
 wenzelm parents: 
25042diff
changeset | 696 | fun revert_abbrev mode c = map_consts (Consts.revert_abbrev mode c); | 
| 18941 | 697 | |
| 698 | ||
| 16941 
0bda949449ee
added add_const_constraint(_i), const_constraint;
 wenzelm parents: 
16894diff
changeset | 699 | (* add constraints *) | 
| 
0bda949449ee
added add_const_constraint(_i), const_constraint;
 wenzelm parents: 
16894diff
changeset | 700 | |
| 24761 
d762ab297a07
removed obsolete external interface add_const_constraint;
 wenzelm parents: 
24732diff
changeset | 701 | fun add_const_constraint (c, opt_T) thy = | 
| 16941 
0bda949449ee
added add_const_constraint(_i), const_constraint;
 wenzelm parents: 
16894diff
changeset | 702 | let | 
| 19099 
100bf66d7e85
add_const_constraint(_i): demand TFrees instead of TVars, optional type (i.e. may delete constraints);
 wenzelm parents: 
19054diff
changeset | 703 | fun prepT raw_T = | 
| 24761 
d762ab297a07
removed obsolete external interface add_const_constraint;
 wenzelm parents: 
24732diff
changeset | 704 | let val T = Logic.varifyT (Type.no_tvars (Term.no_dummyT (certify_typ thy raw_T))) | 
| 19099 
100bf66d7e85
add_const_constraint(_i): demand TFrees instead of TVars, optional type (i.e. may delete constraints);
 wenzelm parents: 
19054diff
changeset | 705 | in cert_term thy (Const (c, T)); T end | 
| 16941 
0bda949449ee
added add_const_constraint(_i), const_constraint;
 wenzelm parents: 
16894diff
changeset | 706 | 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: 
19054diff
changeset | 707 | in thy |> map_consts (Consts.constrain (c, Option.map prepT opt_T)) end; | 
| 16941 
0bda949449ee
added add_const_constraint(_i), const_constraint;
 wenzelm parents: 
16894diff
changeset | 708 | |
| 
0bda949449ee
added add_const_constraint(_i), const_constraint;
 wenzelm parents: 
16894diff
changeset | 709 | |
| 19513 
77ff7cd602d7
removed add_classes/classrel/arities (superceded by AxClass.axiomatize_class/classrel/arity);
 wenzelm parents: 
19482diff
changeset | 710 | (* primitive classes and arities *) | 
| 386 | 711 | |
| 19513 
77ff7cd602d7
removed add_classes/classrel/arities (superceded by AxClass.axiomatize_class/classrel/arity);
 wenzelm parents: 
19482diff
changeset | 712 | fun primitive_class (bclass, classes) thy = | 
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 713 | thy |> map_sign (fn (naming, syn, tsig, consts) => | 
| 16337 | 714 | let | 
| 25390 
8bfa6566ac6b
syntax operations: turned extend'' into update'' (absorb duplicates);
 wenzelm parents: 
25383diff
changeset | 715 | val syn' = Syntax.update_consts [bclass] syn; | 
| 19513 
77ff7cd602d7
removed add_classes/classrel/arities (superceded by AxClass.axiomatize_class/classrel/arity);
 wenzelm parents: 
19482diff
changeset | 716 | 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: 
16368diff
changeset | 717 | in (naming, syn', tsig', consts) end) | 
| 19391 | 718 | |> add_consts_i [(Logic.const_of_class bclass, Term.a_itselfT --> propT, NoSyn)]; | 
| 3791 
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
 wenzelm parents: 
3552diff
changeset | 719 | |
| 19513 
77ff7cd602d7
removed add_classes/classrel/arities (superceded by AxClass.axiomatize_class/classrel/arity);
 wenzelm parents: 
19482diff
changeset | 720 | 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: 
19482diff
changeset | 721 | fun primitive_arity arg thy = thy |> map_tsig (Type.add_arity (pp thy) arg); | 
| 421 | 722 | |
| 723 | ||
| 14645 | 724 | (* add translation functions *) | 
| 725 | ||
| 15746 | 726 | local | 
| 727 | ||
| 728 | fun mk trs = map Syntax.mk_trfun trs; | |
| 729 | ||
| 16597 
5a5229a55964
eliminated separate syn type -- advanced trfuns already part of Syntax.syntax;
 wenzelm parents: 
16536diff
changeset | 730 | 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: 
16536diff
changeset | 731 | map_syn (ext (mk atrs, mk trs, mk (map (apsnd non_typed) tr's), mk atr's)); | 
| 14645 | 732 | |
| 16597 
5a5229a55964
eliminated separate syn type -- advanced trfuns already part of Syntax.syntax;
 wenzelm parents: 
16536diff
changeset | 733 | fun gen_add_trfunsT ext tr's = map_syn (ext ([], [], mk tr's, [])); | 
| 14645 | 734 | |
| 15746 | 735 | in | 
| 736 | ||
| 25390 
8bfa6566ac6b
syntax operations: turned extend'' into update'' (absorb duplicates);
 wenzelm parents: 
25383diff
changeset | 737 | val add_trfuns = gen_add_trfuns Syntax.update_trfuns Syntax.non_typed_tr'; | 
| 
8bfa6566ac6b
syntax operations: turned extend'' into update'' (absorb duplicates);
 wenzelm parents: 
25383diff
changeset | 738 | val add_trfunsT = gen_add_trfunsT Syntax.update_trfuns; | 
| 
8bfa6566ac6b
syntax operations: turned extend'' into update'' (absorb duplicates);
 wenzelm parents: 
25383diff
changeset | 739 | val add_advanced_trfuns = gen_add_trfuns Syntax.update_advanced_trfuns Syntax.non_typed_tr''; | 
| 
8bfa6566ac6b
syntax operations: turned extend'' into update'' (absorb duplicates);
 wenzelm parents: 
25383diff
changeset | 740 | val add_advanced_trfunsT = gen_add_trfunsT Syntax.update_advanced_trfuns; | 
| 14645 | 741 | |
| 15746 | 742 | end; | 
| 743 | ||
| 16597 
5a5229a55964
eliminated separate syn type -- advanced trfuns already part of Syntax.syntax;
 wenzelm parents: 
16536diff
changeset | 744 | val add_tokentrfuns = map_syn o Syntax.extend_tokentrfuns; | 
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 745 | fun add_mode_tokentrfuns m = add_tokentrfuns o map (fn (s, f) => (m, s, f)); | 
| 14645 | 746 | |
| 747 | ||
| 19258 
ada9977f1e98
declared_const: check for type constraint only, i.e. admit abbreviations as well;
 wenzelm parents: 
19250diff
changeset | 748 | (* translation rules *) | 
| 4619 | 749 | |
| 19258 
ada9977f1e98
declared_const: check for type constraint only, i.e. admit abbreviations as well;
 wenzelm parents: 
19250diff
changeset | 750 | 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: 
16368diff
changeset | 751 | let val rules = map (Syntax.map_trrule (apfst (intern_type thy))) args | 
| 21772 | 752 | in f (ProofContext.init thy) (is_logtype thy) syn rules syn end); | 
| 8725 | 753 | |
| 25390 
8bfa6566ac6b
syntax operations: turned extend'' into update'' (absorb duplicates);
 wenzelm parents: 
25383diff
changeset | 754 | val add_trrules = gen_trrules Syntax.update_trrules; | 
| 19258 
ada9977f1e98
declared_const: check for type constraint only, i.e. admit abbreviations as well;
 wenzelm parents: 
19250diff
changeset | 755 | val del_trrules = gen_trrules Syntax.remove_trrules; | 
| 25390 
8bfa6566ac6b
syntax operations: turned extend'' into update'' (absorb duplicates);
 wenzelm parents: 
25383diff
changeset | 756 | val add_trrules_i = map_syn o Syntax.update_trrules_i; | 
| 19258 
ada9977f1e98
declared_const: check for type constraint only, i.e. admit abbreviations as well;
 wenzelm parents: 
19250diff
changeset | 757 | val del_trrules_i = map_syn o Syntax.remove_trrules_i; | 
| 386 | 758 | |
| 759 | ||
| 16337 | 760 | (* modify naming *) | 
| 6546 | 761 | |
| 19054 
af7cc6063285
replaced qualified_force_prefix to sticky_prefix;
 wenzelm parents: 
19013diff
changeset | 762 | val add_path = map_naming o NameSpace.add_path; | 
| 
af7cc6063285
replaced qualified_force_prefix to sticky_prefix;
 wenzelm parents: 
19013diff
changeset | 763 | val no_base_names = map_naming NameSpace.no_base_names; | 
| 
af7cc6063285
replaced qualified_force_prefix to sticky_prefix;
 wenzelm parents: 
19013diff
changeset | 764 | val qualified_names = map_naming NameSpace.qualified_names; | 
| 
af7cc6063285
replaced qualified_force_prefix to sticky_prefix;
 wenzelm parents: 
19013diff
changeset | 765 | val sticky_prefix = map_naming o NameSpace.sticky_prefix; | 
| 
af7cc6063285
replaced qualified_force_prefix to sticky_prefix;
 wenzelm parents: 
19013diff
changeset | 766 | val restore_naming = map_naming o K o naming_of; | 
| 6546 | 767 | |
| 19013 | 768 | val parent_path = add_path ".."; | 
| 769 | val root_path = add_path "/"; | |
| 770 | val absolute_path = add_path "//"; | |
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 771 | |
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 772 | 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: 
16368diff
changeset | 773 | |
| 6546 | 774 | |
| 16337 | 775 | (* hide names *) | 
| 386 | 776 | |
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 777 | 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: 
16354diff
changeset | 778 | val hide_classes_i = map_tsig oo Type.hide_classes; | 
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 779 | 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: 
16354diff
changeset | 780 | val hide_types_i = map_tsig oo Type.hide_types; | 
| 18062 | 781 | fun hide_consts b xs thy = thy |> map_consts (fold (Consts.hide b o intern_const thy) xs); | 
| 782 | val hide_consts_i = map_consts oo (fold o Consts.hide); | |
| 386 | 783 | |
| 17343 | 784 | local | 
| 785 | ||
| 786 | val kinds = | |
| 787 |  [("class", (intern_class, can o certify_class, hide_classes_i)),
 | |
| 788 |   ("type", (intern_type, declared_tyname, hide_types_i)),
 | |
| 789 |   ("const", (intern_const, declared_const, hide_consts_i))];
 | |
| 790 | ||
| 791 | fun gen_hide int b (kind, xnames) thy = | |
| 792 | (case AList.lookup (op =) kinds kind of | |
| 793 | SOME (intern, check, hide) => | |
| 794 | let | |
| 795 | val names = if int then map (intern thy) xnames else xnames; | |
| 796 | val bads = filter_out (check thy) names; | |
| 797 | in | |
| 798 | if null bads then hide b names thy | |
| 799 |         else error ("Attempt to hide undeclared item(s): " ^ commas_quote bads)
 | |
| 800 | end | |
| 801 |   | NONE => error ("Bad name space specification: " ^ quote kind));
 | |
| 802 | ||
| 803 | in | |
| 804 | ||
| 805 | val hide_names = gen_hide true; | |
| 806 | val hide_names_i = gen_hide false; | |
| 807 | ||
| 0 | 808 | end; | 
| 17343 | 809 | |
| 810 | end; |