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