| author | wenzelm | 
| Tue, 21 Jul 2009 20:37:32 +0200 | |
| changeset 32104 | d1d98a02473e | 
| parent 31946 | 99ac0321cd47 | 
| child 32789 | d89327de0b3c | 
| permissions | -rw-r--r-- | 
| 19 | 1 | (* Title: Pure/sign.ML | 
| 251 | 2 | Author: Lawrence C Paulson and Markus Wenzel | 
| 0 | 3 | |
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 4 | Logical signature content: naming conventions, concrete syntax, type | 
| 18062 | 5 | signature, polymorphic constants. | 
| 0 | 6 | *) | 
| 7 | ||
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 8 | signature SIGN = | 
| 5642 | 9 | sig | 
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 10 | val rep_sg: theory -> | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 11 |    {naming: NameSpace.naming,
 | 
| 16597 
5a5229a55964
eliminated separate syn type -- advanced trfuns already part of Syntax.syntax;
 wenzelm parents: 
16536diff
changeset | 12 | syn: Syntax.syntax, | 
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 13 | tsig: Type.tsig, | 
| 18062 | 14 | consts: Consts.T} | 
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 15 | val naming_of: theory -> NameSpace.naming | 
| 29581 | 16 | val full_name: theory -> binding -> string | 
| 30343 
79f022df8527
replace old bstring by binding for logical primitives: class, type, const etc.;
 wenzelm parents: 
30280diff
changeset | 17 | val full_name_path: theory -> string -> binding -> string | 
| 28965 | 18 | val full_bname: theory -> bstring -> string | 
| 19 | val full_bname_path: theory -> string -> bstring -> string | |
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 20 | val syn_of: theory -> Syntax.syntax | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 21 | val tsig_of: theory -> Type.tsig | 
| 19642 | 22 | val classes_of: theory -> Sorts.algebra | 
| 21932 
7d592dc078e3
replaced classes by all_classes (topologically sorted);
 wenzelm parents: 
21796diff
changeset | 23 | val all_classes: theory -> class list | 
| 19407 | 24 | val super_classes: theory -> class -> class list | 
| 24732 | 25 | val minimize_sort: theory -> sort -> sort | 
| 26 | val complete_sort: theory -> sort -> sort | |
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 27 | val defaultS: theory -> sort | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 28 | val subsort: theory -> sort * sort -> bool | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 29 | val of_sort: theory -> typ * sort -> bool | 
| 31946 
99ac0321cd47
witness_sorts: proper type witnesses for hyps, not invented "'hyp" variables;
 wenzelm parents: 
30585diff
changeset | 30 | val witness_sorts: theory -> (typ * sort) list -> sort list -> (typ * sort) list | 
| 24732 | 31 | val is_logtype: theory -> string -> bool | 
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 32 | val typ_instance: theory -> typ * typ -> bool | 
| 19427 | 33 | val typ_equiv: theory -> typ * typ -> bool | 
| 16941 
0bda949449ee
added add_const_constraint(_i), const_constraint;
 wenzelm parents: 
16894diff
changeset | 34 | val typ_match: theory -> typ * typ -> Type.tyenv -> Type.tyenv | 
| 
0bda949449ee
added add_const_constraint(_i), const_constraint;
 wenzelm parents: 
16894diff
changeset | 35 | val typ_unify: theory -> typ * typ -> Type.tyenv * int -> Type.tyenv * int | 
| 18967 | 36 | val consts_of: theory -> Consts.T | 
| 17037 | 37 | val the_const_constraint: theory -> string -> typ | 
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 38 | val const_type: theory -> string -> typ option | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 39 | val the_const_type: theory -> string -> typ | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 40 | val declared_tyname: theory -> string -> bool | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 41 | val declared_const: theory -> string -> bool | 
| 18062 | 42 | val const_monomorphic: theory -> string -> bool | 
| 21183 | 43 | val const_syntax_name: theory -> string -> string | 
| 18146 | 44 | val const_typargs: theory -> string * typ -> typ list | 
| 18164 | 45 | val const_instance: theory -> string * typ list -> typ | 
| 26268 | 46 | val mk_const: theory -> string * typ list -> term | 
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 47 | val class_space: theory -> NameSpace.T | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 48 | val type_space: theory -> NameSpace.T | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 49 | val const_space: theory -> NameSpace.T | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 50 | val intern_class: theory -> xstring -> string | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 51 | val extern_class: theory -> string -> xstring | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 52 | val intern_type: theory -> xstring -> string | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 53 | val extern_type: theory -> string -> xstring | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 54 | val intern_const: theory -> xstring -> string | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 55 | val extern_const: theory -> string -> xstring | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 56 | val intern_sort: theory -> sort -> sort | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 57 | val extern_sort: theory -> sort -> sort | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 58 | val intern_typ: theory -> typ -> typ | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 59 | val extern_typ: theory -> typ -> typ | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 60 | val intern_term: theory -> term -> term | 
| 18994 | 61 | val extern_term: (string -> xstring) -> theory -> term -> term | 
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 62 | val intern_tycons: theory -> typ -> typ | 
| 19462 | 63 | val arity_number: theory -> string -> int | 
| 64 | val arity_sorts: theory -> string -> sort -> sort list | |
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 65 | val certify_class: theory -> class -> class | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 66 | val certify_sort: theory -> sort -> sort | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 67 | val certify_typ: theory -> typ -> typ | 
| 24273 
1d4b411caf44
replaced certify_typ_syntax/abbrev by certify_typ_mode;
 wenzelm parents: 
24260diff
changeset | 68 | 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 | 69 | val certify': bool -> Pretty.pp -> bool -> Consts.T -> theory -> term -> term * typ * int | 
| 18967 | 70 | val certify_term: theory -> term -> term * typ * int | 
| 71 | val certify_prop: theory -> term -> term * typ * int | |
| 16494 | 72 | val cert_term: theory -> term -> term | 
| 73 | val cert_prop: theory -> term -> term | |
| 21741 | 74 | val no_frees: Pretty.pp -> term -> term | 
| 18941 | 75 | val no_vars: Pretty.pp -> term -> term | 
| 24981 
4ec3f95190bf
dest/cert_def: replaced Pretty.pp by explicit Proof.context;
 wenzelm parents: 
24973diff
changeset | 76 | 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 | 77 | val read_class: theory -> xstring -> class | 
| 
1d7e51d9828b
added read_class, read/cert_classrel/arity (from axclass.ML);
 wenzelm parents: 
19099diff
changeset | 78 | val read_arity: theory -> xstring * string list * string -> arity | 
| 
1d7e51d9828b
added read_class, read/cert_classrel/arity (from axclass.ML);
 wenzelm parents: 
19099diff
changeset | 79 | val cert_arity: theory -> arity -> arity | 
| 26667 
660b69b3c28a
removed obsolete SIGN_THEORY -- no name aliases in structure Theory;
 wenzelm parents: 
26637diff
changeset | 80 | val add_defsort: string -> theory -> theory | 
| 
660b69b3c28a
removed obsolete SIGN_THEORY -- no name aliases in structure Theory;
 wenzelm parents: 
26637diff
changeset | 81 | val add_defsort_i: sort -> theory -> theory | 
| 30343 
79f022df8527
replace old bstring by binding for logical primitives: class, type, const etc.;
 wenzelm parents: 
30280diff
changeset | 82 | val add_types: (binding * int * mixfix) list -> theory -> theory | 
| 
79f022df8527
replace old bstring by binding for logical primitives: class, type, const etc.;
 wenzelm parents: 
30280diff
changeset | 83 | val add_nonterminals: binding list -> theory -> theory | 
| 
79f022df8527
replace old bstring by binding for logical primitives: class, type, const etc.;
 wenzelm parents: 
30280diff
changeset | 84 | val add_tyabbrs: (binding * string list * string * mixfix) list -> theory -> theory | 
| 
79f022df8527
replace old bstring by binding for logical primitives: class, type, const etc.;
 wenzelm parents: 
30280diff
changeset | 85 | val add_tyabbrs_i: (binding * string list * typ * mixfix) list -> theory -> theory | 
| 
79f022df8527
replace old bstring by binding for logical primitives: class, type, const etc.;
 wenzelm parents: 
30280diff
changeset | 86 | val add_syntax: (string * string * mixfix) list -> theory -> theory | 
| 
79f022df8527
replace old bstring by binding for logical primitives: class, type, const etc.;
 wenzelm parents: 
30280diff
changeset | 87 | val add_syntax_i: (string * typ * mixfix) list -> theory -> theory | 
| 
79f022df8527
replace old bstring by binding for logical primitives: class, type, const etc.;
 wenzelm parents: 
30280diff
changeset | 88 | val add_modesyntax: Syntax.mode -> (string * string * mixfix) list -> theory -> theory | 
| 
79f022df8527
replace old bstring by binding for logical primitives: class, type, const etc.;
 wenzelm parents: 
30280diff
changeset | 89 | val add_modesyntax_i: Syntax.mode -> (string * typ * mixfix) list -> theory -> theory | 
| 
79f022df8527
replace old bstring by binding for logical primitives: class, type, const etc.;
 wenzelm parents: 
30280diff
changeset | 90 | val del_modesyntax: Syntax.mode -> (string * string * mixfix) list -> theory -> theory | 
| 
79f022df8527
replace old bstring by binding for logical primitives: class, type, const etc.;
 wenzelm parents: 
30280diff
changeset | 91 | val del_modesyntax_i: Syntax.mode -> (string * typ * mixfix) list -> theory -> theory | 
| 26667 
660b69b3c28a
removed obsolete SIGN_THEORY -- no name aliases in structure Theory;
 wenzelm parents: 
26637diff
changeset | 92 | val notation: bool -> Syntax.mode -> (term * mixfix) list -> theory -> theory | 
| 29581 | 93 | val declare_const: Properties.T -> (binding * typ) * mixfix -> theory -> term * theory | 
| 30343 
79f022df8527
replace old bstring by binding for logical primitives: class, type, const etc.;
 wenzelm parents: 
30280diff
changeset | 94 | val add_consts: (binding * string * mixfix) list -> theory -> theory | 
| 
79f022df8527
replace old bstring by binding for logical primitives: class, type, const etc.;
 wenzelm parents: 
30280diff
changeset | 95 | val add_consts_i: (binding * typ * mixfix) list -> theory -> theory | 
| 29581 | 96 | val add_abbrev: string -> Properties.T -> binding * term -> theory -> (term * term) * theory | 
| 25049 
ec0547a4fcf0
add_abbrev: removed Logic.legacy_varifyT, do not unvarify result (again);
 wenzelm parents: 
25042diff
changeset | 97 | val revert_abbrev: string -> string -> theory -> theory | 
| 24761 
d762ab297a07
removed obsolete external interface add_const_constraint;
 wenzelm parents: 
24732diff
changeset | 98 | val add_const_constraint: string * typ option -> theory -> theory | 
| 30343 
79f022df8527
replace old bstring by binding for logical primitives: class, type, const etc.;
 wenzelm parents: 
30280diff
changeset | 99 | val primitive_class: binding * class list -> theory -> theory | 
| 22811 | 100 | val primitive_classrel: class * class -> theory -> theory | 
| 101 | val primitive_arity: arity -> theory -> theory | |
| 26667 
660b69b3c28a
removed obsolete SIGN_THEORY -- no name aliases in structure Theory;
 wenzelm parents: 
26637diff
changeset | 102 | val add_trfuns: | 
| 
660b69b3c28a
removed obsolete SIGN_THEORY -- no name aliases in structure Theory;
 wenzelm parents: 
26637diff
changeset | 103 | (string * (ast list -> ast)) list * | 
| 
660b69b3c28a
removed obsolete SIGN_THEORY -- no name aliases in structure Theory;
 wenzelm parents: 
26637diff
changeset | 104 | (string * (term list -> term)) list * | 
| 
660b69b3c28a
removed obsolete SIGN_THEORY -- no name aliases in structure Theory;
 wenzelm parents: 
26637diff
changeset | 105 | (string * (term list -> term)) list * | 
| 
660b69b3c28a
removed obsolete SIGN_THEORY -- no name aliases in structure Theory;
 wenzelm parents: 
26637diff
changeset | 106 | (string * (ast list -> ast)) list -> theory -> theory | 
| 
660b69b3c28a
removed obsolete SIGN_THEORY -- no name aliases in structure Theory;
 wenzelm parents: 
26637diff
changeset | 107 | val add_trfunsT: | 
| 
660b69b3c28a
removed obsolete SIGN_THEORY -- no name aliases in structure Theory;
 wenzelm parents: 
26637diff
changeset | 108 | (string * (bool -> typ -> term list -> term)) list -> theory -> theory | 
| 
660b69b3c28a
removed obsolete SIGN_THEORY -- no name aliases in structure Theory;
 wenzelm parents: 
26637diff
changeset | 109 | val add_advanced_trfuns: | 
| 
660b69b3c28a
removed obsolete SIGN_THEORY -- no name aliases in structure Theory;
 wenzelm parents: 
26637diff
changeset | 110 | (string * (Proof.context -> ast list -> ast)) list * | 
| 
660b69b3c28a
removed obsolete SIGN_THEORY -- no name aliases in structure Theory;
 wenzelm parents: 
26637diff
changeset | 111 | (string * (Proof.context -> term list -> term)) list * | 
| 
660b69b3c28a
removed obsolete SIGN_THEORY -- no name aliases in structure Theory;
 wenzelm parents: 
26637diff
changeset | 112 | (string * (Proof.context -> term list -> term)) list * | 
| 
660b69b3c28a
removed obsolete SIGN_THEORY -- no name aliases in structure Theory;
 wenzelm parents: 
26637diff
changeset | 113 | (string * (Proof.context -> ast list -> ast)) list -> theory -> theory | 
| 
660b69b3c28a
removed obsolete SIGN_THEORY -- no name aliases in structure Theory;
 wenzelm parents: 
26637diff
changeset | 114 | val add_advanced_trfunsT: | 
| 
660b69b3c28a
removed obsolete SIGN_THEORY -- no name aliases in structure Theory;
 wenzelm parents: 
26637diff
changeset | 115 | (string * (Proof.context -> bool -> typ -> term list -> term)) list -> theory -> theory | 
| 
660b69b3c28a
removed obsolete SIGN_THEORY -- no name aliases in structure Theory;
 wenzelm parents: 
26637diff
changeset | 116 | val add_tokentrfuns: | 
| 26701 
341c4d51d1c2
token translations: context dependent, result Pretty.T;
 wenzelm parents: 
26667diff
changeset | 117 | (string * string * (Proof.context -> string -> Pretty.T)) list -> theory -> theory | 
| 
341c4d51d1c2
token translations: context dependent, result Pretty.T;
 wenzelm parents: 
26667diff
changeset | 118 | val add_mode_tokentrfuns: string -> (string * (Proof.context -> string -> Pretty.T)) list | 
| 26667 
660b69b3c28a
removed obsolete SIGN_THEORY -- no name aliases in structure Theory;
 wenzelm parents: 
26637diff
changeset | 119 | -> theory -> theory | 
| 
660b69b3c28a
removed obsolete SIGN_THEORY -- no name aliases in structure Theory;
 wenzelm parents: 
26637diff
changeset | 120 | val add_trrules: (xstring * string) Syntax.trrule list -> theory -> theory | 
| 
660b69b3c28a
removed obsolete SIGN_THEORY -- no name aliases in structure Theory;
 wenzelm parents: 
26637diff
changeset | 121 | val del_trrules: (xstring * string) Syntax.trrule list -> theory -> theory | 
| 
660b69b3c28a
removed obsolete SIGN_THEORY -- no name aliases in structure Theory;
 wenzelm parents: 
26637diff
changeset | 122 | val add_trrules_i: ast Syntax.trrule list -> theory -> theory | 
| 
660b69b3c28a
removed obsolete SIGN_THEORY -- no name aliases in structure Theory;
 wenzelm parents: 
26637diff
changeset | 123 | val del_trrules_i: ast Syntax.trrule list -> theory -> theory | 
| 
660b69b3c28a
removed obsolete SIGN_THEORY -- no name aliases in structure Theory;
 wenzelm parents: 
26637diff
changeset | 124 | val add_path: string -> theory -> theory | 
| 30421 | 125 | val root_path: theory -> theory | 
| 26667 
660b69b3c28a
removed obsolete SIGN_THEORY -- no name aliases in structure Theory;
 wenzelm parents: 
26637diff
changeset | 126 | val parent_path: theory -> theory | 
| 30469 | 127 | val mandatory_path: string -> theory -> theory | 
| 26667 
660b69b3c28a
removed obsolete SIGN_THEORY -- no name aliases in structure Theory;
 wenzelm parents: 
26637diff
changeset | 128 | val local_path: theory -> theory | 
| 
660b69b3c28a
removed obsolete SIGN_THEORY -- no name aliases in structure Theory;
 wenzelm parents: 
26637diff
changeset | 129 | val restore_naming: theory -> theory -> theory | 
| 
660b69b3c28a
removed obsolete SIGN_THEORY -- no name aliases in structure Theory;
 wenzelm parents: 
26637diff
changeset | 130 | val hide_class: bool -> string -> theory -> theory | 
| 
660b69b3c28a
removed obsolete SIGN_THEORY -- no name aliases in structure Theory;
 wenzelm parents: 
26637diff
changeset | 131 | val hide_type: bool -> string -> theory -> theory | 
| 
660b69b3c28a
removed obsolete SIGN_THEORY -- no name aliases in structure Theory;
 wenzelm parents: 
26637diff
changeset | 132 | val hide_const: bool -> string -> theory -> theory | 
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 133 | end | 
| 5642 | 134 | |
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 135 | structure Sign: SIGN = | 
| 143 | 136 | struct | 
| 0 | 137 | |
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 138 | (** datatype sign **) | 
| 16337 | 139 | |
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 140 | datatype sign = Sign of | 
| 18062 | 141 |  {naming: NameSpace.naming,     (*common naming conventions*)
 | 
| 142 | syn: Syntax.syntax, (*concrete syntax for terms, types, sorts*) | |
| 143 | tsig: Type.tsig, (*order-sorted signature of types*) | |
| 144 | consts: Consts.T}; (*polymorphic constants*) | |
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 145 | |
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 146 | fun make_sign (naming, syn, tsig, consts) = | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 147 |   Sign {naming = naming, syn = syn, tsig = tsig, consts = consts};
 | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 148 | |
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 149 | structure SignData = TheoryDataFun | 
| 22846 | 150 | ( | 
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 151 | type T = sign; | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 152 | val copy = I; | 
| 17405 | 153 |   fun extend (Sign {syn, tsig, consts, ...}) =
 | 
| 154 | make_sign (NameSpace.default_naming, syn, tsig, consts); | |
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 155 | |
| 18062 | 156 | val empty = | 
| 18714 | 157 | 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 | 158 | |
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 159 | fun merge pp (sign1, sign2) = | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 160 | let | 
| 18062 | 161 |       val Sign {naming = _, syn = syn1, tsig = tsig1, consts = consts1} = sign1;
 | 
| 162 |       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 | 163 | |
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 164 | val naming = NameSpace.default_naming; | 
| 16597 
5a5229a55964
eliminated separate syn type -- advanced trfuns already part of Syntax.syntax;
 wenzelm parents: 
16536diff
changeset | 165 | val syn = Syntax.merge_syntaxes syn1 syn2; | 
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 166 | val tsig = Type.merge_tsigs pp (tsig1, tsig2); | 
| 18062 | 167 | val consts = Consts.merge (consts1, consts2); | 
| 168 | in make_sign (naming, syn, tsig, consts) end; | |
| 22846 | 169 | ); | 
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 170 | |
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 171 | 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 | 172 | |
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 173 | 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 | 174 | make_sign (f (naming, syn, tsig, consts))); | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 175 | |
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 176 | 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 | 177 | 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 | 178 | 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 | 179 | 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 | 180 | |
| 16337 | 181 | |
| 182 | (* naming *) | |
| 183 | ||
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 184 | val naming_of = #naming o rep_sg; | 
| 28792 | 185 | |
| 28965 | 186 | val full_name = NameSpace.full_name o naming_of; | 
| 30343 
79f022df8527
replace old bstring by binding for logical primitives: class, type, const etc.;
 wenzelm parents: 
30280diff
changeset | 187 | fun full_name_path thy path = NameSpace.full_name (NameSpace.add_path path (naming_of thy)); | 
| 
79f022df8527
replace old bstring by binding for logical primitives: class, type, const etc.;
 wenzelm parents: 
30280diff
changeset | 188 | |
| 28965 | 189 | fun full_bname thy = NameSpace.full_name (naming_of thy) o Binding.name; | 
| 30343 
79f022df8527
replace old bstring by binding for logical primitives: class, type, const etc.;
 wenzelm parents: 
30280diff
changeset | 190 | fun full_bname_path thy path = full_name_path thy path o Binding.name; | 
| 14645 | 191 | |
| 192 | ||
| 193 | (* syntax *) | |
| 194 | ||
| 16597 
5a5229a55964
eliminated separate syn type -- advanced trfuns already part of Syntax.syntax;
 wenzelm parents: 
16536diff
changeset | 195 | val syn_of = #syn o rep_sg; | 
| 14645 | 196 | |
| 0 | 197 | |
| 16337 | 198 | (* type signature *) | 
| 199 | ||
| 200 | val tsig_of = #tsig o rep_sg; | |
| 24732 | 201 | |
| 19642 | 202 | 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 | 203 | val all_classes = Sorts.all_classes o classes_of; | 
| 19642 | 204 | val super_classes = Sorts.super_classes o classes_of; | 
| 24732 | 205 | val minimize_sort = Sorts.minimize_sort o classes_of; | 
| 206 | val complete_sort = Sorts.complete_sort o classes_of; | |
| 207 | ||
| 4844 | 208 | val defaultS = Type.defaultS o tsig_of; | 
| 4568 | 209 | val subsort = Type.subsort o tsig_of; | 
| 7640 | 210 | val of_sort = Type.of_sort o tsig_of; | 
| 211 | val witness_sorts = Type.witness_sorts o tsig_of; | |
| 24732 | 212 | val is_logtype = member (op =) o Type.logical_types o tsig_of; | 
| 213 | ||
| 14784 
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
 wenzelm parents: 
14700diff
changeset | 214 | val typ_instance = Type.typ_instance o tsig_of; | 
| 19427 | 215 | 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 | 216 | val typ_match = Type.typ_match o tsig_of; | 
| 
0bda949449ee
added add_const_constraint(_i), const_constraint;
 wenzelm parents: 
16894diff
changeset | 217 | val typ_unify = Type.unify o tsig_of; | 
| 4256 | 218 | |
| 219 | ||
| 18062 | 220 | (* polymorphic constants *) | 
| 16941 
0bda949449ee
added add_const_constraint(_i), const_constraint;
 wenzelm parents: 
16894diff
changeset | 221 | |
| 18062 | 222 | val consts_of = #consts o rep_sg; | 
| 21722 | 223 | val the_const_constraint = Consts.the_constraint o consts_of; | 
| 25042 
a33b78d63114
renamed Consts.the_declaration to Consts.the_type;
 wenzelm parents: 
25019diff
changeset | 224 | val the_const_type = Consts.the_type o consts_of; | 
| 18062 | 225 | val const_type = try o the_const_type; | 
| 21722 | 226 | val const_monomorphic = Consts.is_monomorphic o consts_of; | 
| 21183 | 227 | val const_syntax_name = Consts.syntax_name o consts_of; | 
| 18062 | 228 | val const_typargs = Consts.typargs o consts_of; | 
| 18164 | 229 | val const_instance = Consts.instance o consts_of; | 
| 4256 | 230 | |
| 26268 | 231 | fun mk_const thy (c, Ts) = Const (c, const_instance thy (c, Ts)); | 
| 232 | ||
| 16894 | 233 | 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 | 234 | val declared_const = can o the_const_constraint; | 
| 620 | 235 | |
| 402 | 236 | |
| 0 | 237 | |
| 16337 | 238 | (** intern / extern names **) | 
| 239 | ||
| 16368 
a06868ebeb0f
discontinued named name spaces (classK, typeK, constK);
 wenzelm parents: 
16354diff
changeset | 240 | 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 | 241 | val type_space = #1 o #types o Type.rep_tsig o tsig_of; | 
| 18967 | 242 | val const_space = Consts.space_of o consts_of; | 
| 14645 | 243 | |
| 16368 
a06868ebeb0f
discontinued named name spaces (classK, typeK, constK);
 wenzelm parents: 
16354diff
changeset | 244 | val intern_class = NameSpace.intern o class_space; | 
| 
a06868ebeb0f
discontinued named name spaces (classK, typeK, constK);
 wenzelm parents: 
16354diff
changeset | 245 | val extern_class = NameSpace.extern o class_space; | 
| 
a06868ebeb0f
discontinued named name spaces (classK, typeK, constK);
 wenzelm parents: 
16354diff
changeset | 246 | val intern_type = NameSpace.intern o type_space; | 
| 
a06868ebeb0f
discontinued named name spaces (classK, typeK, constK);
 wenzelm parents: 
16354diff
changeset | 247 | val extern_type = NameSpace.extern o type_space; | 
| 
a06868ebeb0f
discontinued named name spaces (classK, typeK, constK);
 wenzelm parents: 
16354diff
changeset | 248 | val intern_const = NameSpace.intern o const_space; | 
| 
a06868ebeb0f
discontinued named name spaces (classK, typeK, constK);
 wenzelm parents: 
16354diff
changeset | 249 | val extern_const = NameSpace.extern o const_space; | 
| 16337 | 250 | |
| 251 | val intern_sort = map o intern_class; | |
| 252 | val extern_sort = map o extern_class; | |
| 253 | ||
| 254 | local | |
| 14645 | 255 | |
| 18892 | 256 | fun map_typ f g (Type (c, Ts)) = Type (g c, map (map_typ f g) Ts) | 
| 257 | | map_typ f _ (TFree (x, S)) = TFree (x, map f S) | |
| 258 | | map_typ f _ (TVar (xi, S)) = TVar (xi, map f S); | |
| 259 | ||
| 260 | fun map_term f g h (Const (c, T)) = Const (h c, map_typ f g T) | |
| 261 | | map_term f g _ (Free (x, T)) = Free (x, map_typ f g T) | |
| 262 | | map_term f g _ (Var (xi, T)) = Var (xi, map_typ f g T) | |
| 263 | | map_term _ _ _ (t as Bound _) = t | |
| 264 | | map_term f g h (Abs (x, T, t)) = Abs (x, map_typ f g T, map_term f g h t) | |
| 265 | | map_term f g h (t $ u) = map_term f g h t $ map_term f g h u; | |
| 266 | ||
| 18994 | 267 | val add_classesT = Term.fold_atyps | 
| 268 | (fn TFree (_, S) => fold (insert (op =)) S | |
| 269 | | TVar (_, S) => fold (insert (op =)) S | |
| 270 | | _ => I); | |
| 271 | ||
| 272 | fun add_tyconsT (Type (c, Ts)) = insert (op =) c #> fold add_tyconsT Ts | |
| 273 | | add_tyconsT _ = I; | |
| 274 | ||
| 275 | val add_consts = Term.fold_aterms (fn Const (c, _) => insert (op =) c | _ => I); | |
| 276 | ||
| 16337 | 277 | fun mapping add_names f t = | 
| 278 | let | |
| 20664 | 279 | 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 | 280 | val tab = map_filter f' (add_names t []); | 
| 18941 | 281 | fun get x = the_default x (AList.lookup (op =) tab x); | 
| 16337 | 282 | in get end; | 
| 283 | ||
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 284 | fun typ_mapping f g thy T = | 
| 18892 | 285 | T |> map_typ | 
| 18994 | 286 | (mapping add_classesT (f thy) T) | 
| 287 | (mapping add_tyconsT (g thy) T); | |
| 14645 | 288 | |
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 289 | fun term_mapping f g h thy t = | 
| 18892 | 290 | t |> map_term | 
| 18994 | 291 | (mapping (Term.fold_types add_classesT) (f thy) t) | 
| 292 | (mapping (Term.fold_types add_tyconsT) (g thy) t) | |
| 293 | (mapping add_consts (h thy) t); | |
| 16337 | 294 | |
| 295 | in | |
| 14645 | 296 | |
| 16368 
a06868ebeb0f
discontinued named name spaces (classK, typeK, constK);
 wenzelm parents: 
16354diff
changeset | 297 | val intern_typ = typ_mapping intern_class intern_type; | 
| 
a06868ebeb0f
discontinued named name spaces (classK, typeK, constK);
 wenzelm parents: 
16354diff
changeset | 298 | val extern_typ = typ_mapping extern_class extern_type; | 
| 
a06868ebeb0f
discontinued named name spaces (classK, typeK, constK);
 wenzelm parents: 
16354diff
changeset | 299 | val intern_term = term_mapping intern_class intern_type intern_const; | 
| 18994 | 300 | 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 | 301 | val intern_tycons = typ_mapping (K I) intern_type; | 
| 16337 | 302 | |
| 303 | end; | |
| 14645 | 304 | |
| 305 | ||
| 306 | ||
| 16337 | 307 | (** certify entities **) (*exception TYPE*) | 
| 8898 | 308 | |
| 16337 | 309 | (* certify wrt. type signature *) | 
| 8898 | 310 | |
| 19462 | 311 | val arity_number = Type.arity_number o tsig_of; | 
| 26939 
1035c89b4c02
moved global pretty/string_of functions from Sign to Syntax;
 wenzelm parents: 
26929diff
changeset | 312 | fun arity_sorts thy = Type.arity_sorts (Syntax.pp_global thy) (tsig_of thy); | 
| 19462 | 313 | |
| 24273 
1d4b411caf44
replaced certify_typ_syntax/abbrev by certify_typ_mode;
 wenzelm parents: 
24260diff
changeset | 314 | val certify_class = Type.cert_class o tsig_of; | 
| 
1d4b411caf44
replaced certify_typ_syntax/abbrev by certify_typ_mode;
 wenzelm parents: 
24260diff
changeset | 315 | val certify_sort = Type.cert_sort o tsig_of; | 
| 
1d4b411caf44
replaced certify_typ_syntax/abbrev by certify_typ_mode;
 wenzelm parents: 
24260diff
changeset | 316 | val certify_typ = Type.cert_typ o tsig_of; | 
| 
1d4b411caf44
replaced certify_typ_syntax/abbrev by certify_typ_mode;
 wenzelm parents: 
24260diff
changeset | 317 | 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 | 318 | |
| 4961 
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
 wenzelm parents: 
4951diff
changeset | 319 | |
| 18967 | 320 | (* certify term/prop *) | 
| 4961 
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
 wenzelm parents: 
4951diff
changeset | 321 | |
| 14987 | 322 | local | 
| 1494 
22f67e796445
added nodup_Vars check in cterm_of. Prevents same var with distinct types.
 nipkow parents: 
1460diff
changeset | 323 | |
| 16337 | 324 | fun type_check pp tm = | 
| 4961 
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
 wenzelm parents: 
4951diff
changeset | 325 | let | 
| 
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
 wenzelm parents: 
4951diff
changeset | 326 | fun err_appl why bs t T u U = | 
| 
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
 wenzelm parents: 
4951diff
changeset | 327 | let | 
| 10404 | 328 | 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 | 329 | val t' = subst_bounds (xs, t); | 
| 
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
 wenzelm parents: 
4951diff
changeset | 330 | val u' = subst_bounds (xs, u); | 
| 16337 | 331 | val msg = cat_lines | 
| 14828 | 332 | (TypeInfer.appl_error (Syntax.pp_show_brackets pp) why t' T u' U); | 
| 16337 | 333 | 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 | 334 | |
| 
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
 wenzelm parents: 
4951diff
changeset | 335 | fun typ_of (_, Const (_, T)) = T | 
| 
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
 wenzelm parents: 
4951diff
changeset | 336 | | typ_of (_, Free (_, T)) = T | 
| 
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
 wenzelm parents: 
4951diff
changeset | 337 | | typ_of (_, Var (_, T)) = T | 
| 30146 | 338 | | typ_of (bs, Bound i) = snd (nth bs i handle Subscript => | 
| 4961 
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
 wenzelm parents: 
4951diff
changeset | 339 |           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 | 340 | | 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 | 341 | | typ_of (bs, t $ u) = | 
| 
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
 wenzelm parents: 
4951diff
changeset | 342 | 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 | 343 | (case T of | 
| 
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
 wenzelm parents: 
4951diff
changeset | 344 |               Type ("fun", [T1, T2]) =>
 | 
| 14828 | 345 | if T1 = U then T2 else err_appl "Incompatible operand type" bs t T u U | 
| 346 | | _ => 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 | 347 | end; | 
| 18967 | 348 | in typ_of ([], tm) end; | 
| 4961 
27f559b54c57
certify_term: type_check replaces Term.type_of, providing sensible
 wenzelm parents: 
4951diff
changeset | 349 | |
| 18967 | 350 | fun err msg = raise TYPE (msg, [], []); | 
| 351 | ||
| 352 | fun check_vars (t $ u) = (check_vars t; check_vars u) | |
| 353 | | check_vars (Abs (_, _, t)) = check_vars t | |
| 27205 | 354 | | check_vars (Free (x, _)) = | 
| 30364 
577edc39b501
moved basic algebra of long names from structure NameSpace to Long_Name;
 wenzelm parents: 
30343diff
changeset | 355 |       if Long_Name.is_qualified x then err ("Malformed variable: " ^ quote x) else ()
 | 
| 18967 | 356 | | check_vars (Var (xi as (_, i), _)) = | 
| 357 |       if i < 0 then err ("Malformed variable: " ^ quote (Term.string_of_vname xi)) else ()
 | |
| 358 | | check_vars _ = (); | |
| 0 | 359 | |
| 14987 | 360 | in | 
| 361 | ||
| 24674 
4ade7ac6a21c
certify': proper do_expand argument (which observes force_expand consts) instead of home-grown normalize;
 wenzelm parents: 
24517diff
changeset | 362 | fun certify' prop pp do_expand consts thy tm = | 
| 251 | 363 | let | 
| 18967 | 364 | val _ = check_vars tm; | 
| 20548 
8ef25fe585a8
renamed Term.map_term_types to Term.map_types (cf. Term.fold_types);
 wenzelm parents: 
20330diff
changeset | 365 | val tm' = Term.map_types (certify_typ thy) tm; | 
| 18967 | 366 | val T = type_check pp tm'; | 
| 367 | 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 | 368 | val tm'' = Consts.certify pp (tsig_of thy) do_expand consts tm'; | 
| 18967 | 369 | in (if tm = tm'' then tm else tm'', T, Term.maxidx_of_term tm'') end; | 
| 169 | 370 | |
| 26939 
1035c89b4c02
moved global pretty/string_of functions from Sign to Syntax;
 wenzelm parents: 
26929diff
changeset | 371 | fun certify_term thy = certify' false (Syntax.pp_global thy) true (consts_of thy) thy; | 
| 
1035c89b4c02
moved global pretty/string_of functions from Sign to Syntax;
 wenzelm parents: 
26929diff
changeset | 372 | fun certify_prop thy = certify' true (Syntax.pp_global thy) true (consts_of thy) thy; | 
| 18967 | 373 | |
| 26939 
1035c89b4c02
moved global pretty/string_of functions from Sign to Syntax;
 wenzelm parents: 
26929diff
changeset | 374 | fun cert_term_abbrev thy = #1 o certify' false (Syntax.pp_global thy) false (consts_of thy) thy; | 
| 18967 | 375 | val cert_term = #1 oo certify_term; | 
| 376 | val cert_prop = #1 oo certify_prop; | |
| 251 | 377 | |
| 14987 | 378 | end; | 
| 379 | ||
| 251 | 380 | |
| 18941 | 381 | (* specifications *) | 
| 382 | ||
| 21741 | 383 | fun no_variables kind add addT mk mkT pp tm = | 
| 384 | (case (add tm [], addT tm []) of | |
| 18941 | 385 | ([], []) => tm | 
| 25117 | 386 | | (frees, tfrees) => error (Pretty.string_of (Pretty.block | 
| 387 |       (Pretty.str ("Illegal " ^ kind ^ " variable(s) in term:") :: Pretty.brk 1 ::
 | |
| 388 | Pretty.commas (map (Pretty.term pp o mk) frees @ map (Pretty.typ pp o mkT) tfrees))))); | |
| 21741 | 389 | |
| 390 | val no_frees = no_variables "free" Term.add_frees Term.add_tfrees Free TFree; | |
| 391 | val no_vars = no_variables "schematic" Term.add_vars Term.add_tvars Var TVar; | |
| 18941 | 392 | |
| 24981 
4ec3f95190bf
dest/cert_def: replaced Pretty.pp by explicit Proof.context;
 wenzelm parents: 
24973diff
changeset | 393 | fun cert_def ctxt tm = | 
| 18941 | 394 | let val ((lhs, rhs), _) = tm | 
| 24981 
4ec3f95190bf
dest/cert_def: replaced Pretty.pp by explicit Proof.context;
 wenzelm parents: 
24973diff
changeset | 395 | |> no_vars (Syntax.pp ctxt) | 
| 18941 | 396 | |> Logic.strip_imp_concl | 
| 24981 
4ec3f95190bf
dest/cert_def: replaced Pretty.pp by explicit Proof.context;
 wenzelm parents: 
24973diff
changeset | 397 | |> PrimitiveDefs.dest_def ctxt Term.is_Const (K false) (K false) | 
| 18941 | 398 | in (Term.dest_Const (Term.head_of lhs), rhs) end | 
| 399 | handle TERM (msg, _) => error msg; | |
| 400 | ||
| 401 | ||
| 16337 | 402 | |
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 403 | (** read and certify entities **) (*exception ERROR*) | 
| 16337 | 404 | |
| 24273 
1d4b411caf44
replaced certify_typ_syntax/abbrev by certify_typ_mode;
 wenzelm parents: 
24260diff
changeset | 405 | (* classes *) | 
| 19244 
1d7e51d9828b
added read_class, read/cert_classrel/arity (from axclass.ML);
 wenzelm parents: 
19099diff
changeset | 406 | |
| 19427 | 407 | fun read_class thy c = certify_class thy (intern_class thy c) | 
| 408 | handle TYPE (msg, _, _) => error msg; | |
| 16337 | 409 | |
| 410 | ||
| 19244 
1d7e51d9828b
added read_class, read/cert_classrel/arity (from axclass.ML);
 wenzelm parents: 
19099diff
changeset | 411 | (* type arities *) | 
| 
1d7e51d9828b
added read_class, read/cert_classrel/arity (from axclass.ML);
 wenzelm parents: 
19099diff
changeset | 412 | |
| 
1d7e51d9828b
added read_class, read/cert_classrel/arity (from axclass.ML);
 wenzelm parents: 
19099diff
changeset | 413 | 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 | 414 | let val arity = (prep_tycon thy t, map (prep_sort thy) Ss, prep_sort thy S) | 
| 26939 
1035c89b4c02
moved global pretty/string_of functions from Sign to Syntax;
 wenzelm parents: 
26929diff
changeset | 415 | in Type.add_arity (Syntax.pp_global thy) arity (tsig_of thy); arity end; | 
| 19244 
1d7e51d9828b
added read_class, read/cert_classrel/arity (from axclass.ML);
 wenzelm parents: 
19099diff
changeset | 416 | |
| 24707 | 417 | 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 | 418 | val cert_arity = prep_arity (K I) certify_sort; | 
| 
1d7e51d9828b
added read_class, read/cert_classrel/arity (from axclass.ML);
 wenzelm parents: 
19099diff
changeset | 419 | |
| 
1d7e51d9828b
added read_class, read/cert_classrel/arity (from axclass.ML);
 wenzelm parents: 
19099diff
changeset | 420 | |
| 2979 | 421 | |
| 16337 | 422 | (** signature extension functions **) (*exception ERROR/TYPE*) | 
| 386 | 423 | |
| 424 | (* add default sort *) | |
| 425 | ||
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 426 | fun gen_add_defsort prep_sort s thy = | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 427 | thy |> map_tsig (Type.set_defsort (prep_sort thy s)); | 
| 8898 | 428 | |
| 24707 | 429 | val add_defsort = gen_add_defsort Syntax.read_sort_global; | 
| 16337 | 430 | val add_defsort_i = gen_add_defsort certify_sort; | 
| 386 | 431 | |
| 432 | ||
| 433 | (* add type constructors *) | |
| 434 | ||
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 435 | fun add_types types thy = thy |> map_sign (fn (naming, syn, tsig, consts) => | 
| 14856 | 436 | let | 
| 30585 
6b2ba4666336
use Name.of_binding for basic logical entities without name space (fixes, case names etc.);
 wenzelm parents: 
30522diff
changeset | 437 | val syn' = Syntax.update_type_gram (map (fn (a, n, mx) => (Name.of_binding a, n, mx)) types) syn; | 
| 30343 
79f022df8527
replace old bstring by binding for logical primitives: class, type, const etc.;
 wenzelm parents: 
30280diff
changeset | 438 | val decls = map (fn (a, n, mx) => (Binding.map_name (Syntax.type_name mx) a, n)) types; | 
| 27302 | 439 | val tags = [(Markup.theory_nameN, Context.theory_name thy)]; | 
| 440 | val tsig' = fold (Type.add_type naming tags) decls tsig; | |
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 441 | in (naming, syn', tsig', consts) end); | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 442 | |
| 16337 | 443 | |
| 444 | (* add nonterminals *) | |
| 445 | ||
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 446 | fun add_nonterminals ns thy = thy |> map_sign (fn (naming, syn, tsig, consts) => | 
| 16337 | 447 | let | 
| 30585 
6b2ba4666336
use Name.of_binding for basic logical entities without name space (fixes, case names etc.);
 wenzelm parents: 
30522diff
changeset | 448 | val syn' = Syntax.update_consts (map Name.of_binding ns) syn; | 
| 27302 | 449 | val tsig' = fold (Type.add_nonterminal naming []) ns tsig; | 
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 450 | in (naming, syn', tsig', consts) end); | 
| 386 | 451 | |
| 452 | ||
| 453 | (* add type abbreviations *) | |
| 454 | ||
| 25366 
05c2ae18cc51
tyabbr/syntax/consts: replaced obsolete read_typ by Syntax.parse_typ/certify_typ;
 wenzelm parents: 
25351diff
changeset | 455 | 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 | 456 | thy |> map_sign (fn (naming, syn, tsig, consts) => | 
| 16337 | 457 | let | 
| 25366 
05c2ae18cc51
tyabbr/syntax/consts: replaced obsolete read_typ by Syntax.parse_typ/certify_typ;
 wenzelm parents: 
25351diff
changeset | 458 | val ctxt = ProofContext.init thy; | 
| 30585 
6b2ba4666336
use Name.of_binding for basic logical entities without name space (fixes, case names etc.);
 wenzelm parents: 
30522diff
changeset | 459 | val syn' = Syntax.update_type_gram [(Name.of_binding a, length vs, mx)] syn; | 
| 30343 
79f022df8527
replace old bstring by binding for logical primitives: class, type, const etc.;
 wenzelm parents: 
30280diff
changeset | 460 | val b = Binding.map_name (Syntax.type_name mx) a; | 
| 
79f022df8527
replace old bstring by binding for logical primitives: class, type, const etc.;
 wenzelm parents: 
30280diff
changeset | 461 | val abbr = (b, vs, certify_typ_mode Type.mode_syntax thy (parse_typ ctxt rhs)) | 
| 
79f022df8527
replace old bstring by binding for logical primitives: class, type, const etc.;
 wenzelm parents: 
30280diff
changeset | 462 |         handle ERROR msg => cat_error msg ("in type abbreviation " ^ quote (Binding.str_of b));
 | 
| 27302 | 463 | val tsig' = Type.add_abbrev naming [] abbr tsig; | 
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 464 | in (naming, syn', tsig', consts) end); | 
| 386 | 465 | |
| 24707 | 466 | 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 | 467 | 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 | 468 | |
| 
e65d77313a94
xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
 wenzelm parents: 
14700diff
changeset | 469 | |
| 16337 | 470 | (* modify syntax *) | 
| 471 | ||
| 25366 
05c2ae18cc51
tyabbr/syntax/consts: replaced obsolete read_typ by Syntax.parse_typ/certify_typ;
 wenzelm parents: 
25351diff
changeset | 472 | fun gen_syntax change_gram parse_typ mode args thy = | 
| 16337 | 473 | let | 
| 25366 
05c2ae18cc51
tyabbr/syntax/consts: replaced obsolete read_typ by Syntax.parse_typ/certify_typ;
 wenzelm parents: 
25351diff
changeset | 474 | val ctxt = ProofContext.init thy; | 
| 
05c2ae18cc51
tyabbr/syntax/consts: replaced obsolete read_typ by Syntax.parse_typ/certify_typ;
 wenzelm parents: 
25351diff
changeset | 475 | 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 | 476 | handle ERROR msg => | 
| 30343 
79f022df8527
replace old bstring by binding for logical primitives: class, type, const etc.;
 wenzelm parents: 
30280diff
changeset | 477 |         cat_error msg ("in syntax declaration " ^ quote (Syntax.const_name mx c));
 | 
| 20784 | 478 | in thy |> map_syn (change_gram (is_logtype thy) mode (map prep args)) end; | 
| 16337 | 479 | |
| 25390 
8bfa6566ac6b
syntax operations: turned extend'' into update'' (absorb duplicates);
 wenzelm parents: 
25383diff
changeset | 480 | fun gen_add_syntax x = gen_syntax Syntax.update_const_gram x; | 
| 386 | 481 | |
| 24707 | 482 | val add_modesyntax = gen_add_syntax Syntax.parse_typ; | 
| 24273 
1d4b411caf44
replaced certify_typ_syntax/abbrev by certify_typ_mode;
 wenzelm parents: 
24260diff
changeset | 483 | val add_modesyntax_i = gen_add_syntax (K I); | 
| 24959 
119793c84647
replaced Sign.add_consts_authentic by Sign.declare_const;
 wenzelm parents: 
24949diff
changeset | 484 | val add_syntax = add_modesyntax Syntax.mode_default; | 
| 
119793c84647
replaced Sign.add_consts_authentic by Sign.declare_const;
 wenzelm parents: 
24949diff
changeset | 485 | val add_syntax_i = add_modesyntax_i Syntax.mode_default; | 
| 24707 | 486 | 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 | 487 | val del_modesyntax_i = gen_syntax Syntax.remove_const_gram (K I); | 
| 3805 | 488 | |
| 25383 
2e766dd19e4f
notation: based on Syntax.update_const_gram (avoids duplicates);
 wenzelm parents: 
25366diff
changeset | 489 | fun notation add mode args thy = | 
| 
2e766dd19e4f
notation: based on Syntax.update_const_gram (avoids duplicates);
 wenzelm parents: 
25366diff
changeset | 490 | let | 
| 
2e766dd19e4f
notation: based on Syntax.update_const_gram (avoids duplicates);
 wenzelm parents: 
25366diff
changeset | 491 | 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 | 492 | 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 | 493 | | const_syntax _ = NONE; | 
| 
2e766dd19e4f
notation: based on Syntax.update_const_gram (avoids duplicates);
 wenzelm parents: 
25366diff
changeset | 494 | in gen_syntax change_gram (K I) mode (map_filter const_syntax args) thy end; | 
| 19658 | 495 | |
| 16337 | 496 | |
| 497 | (* add constants *) | |
| 386 | 498 | |
| 17995 | 499 | local | 
| 500 | ||
| 25366 
05c2ae18cc51
tyabbr/syntax/consts: replaced obsolete read_typ by Syntax.parse_typ/certify_typ;
 wenzelm parents: 
25351diff
changeset | 501 | fun gen_add_consts parse_typ authentic tags raw_args thy = | 
| 386 | 502 | let | 
| 25366 
05c2ae18cc51
tyabbr/syntax/consts: replaced obsolete read_typ by Syntax.parse_typ/certify_typ;
 wenzelm parents: 
25351diff
changeset | 503 | val ctxt = ProofContext.init thy; | 
| 
05c2ae18cc51
tyabbr/syntax/consts: replaced obsolete read_typ by Syntax.parse_typ/certify_typ;
 wenzelm parents: 
25351diff
changeset | 504 | val prepT = Type.no_tvars o Term.no_dummyT o certify_typ thy o parse_typ ctxt; | 
| 28861 | 505 | fun prep (raw_b, raw_T, raw_mx) = | 
| 19658 | 506 | let | 
| 30585 
6b2ba4666336
use Name.of_binding for basic logical entities without name space (fixes, case names etc.);
 wenzelm parents: 
30522diff
changeset | 507 | val (mx_name, mx) = Syntax.const_mixfix (Name.of_binding raw_b) raw_mx; | 
| 30223 
24d975352879
renamed Binding.name_pos to Binding.make, renamed Binding.base_name to Binding.name_of, renamed Binding.map_base to Binding.map_name, added mandatory flag to Binding.qualify;
 wenzelm parents: 
30218diff
changeset | 508 | val b = Binding.map_name (K mx_name) raw_b; | 
| 28965 | 509 | val c = full_name thy b; | 
| 30585 
6b2ba4666336
use Name.of_binding for basic logical entities without name space (fixes, case names etc.);
 wenzelm parents: 
30522diff
changeset | 510 | val c_syn = if authentic then Syntax.constN ^ c else Name.of_binding b; | 
| 19658 | 511 | val T = (prepT raw_T handle TYPE (msg, _, _) => error msg) handle ERROR msg => | 
| 30218 | 512 |           cat_error msg ("in declaration of constant " ^ quote (Binding.str_of b));
 | 
| 26631 
d6b6c74a8bcf
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26268diff
changeset | 513 | val T' = Logic.varifyT T; | 
| 28861 | 514 | in ((b, T'), (c_syn, T', mx), Const (c, T)) end; | 
| 16337 | 515 | val args = map prep raw_args; | 
| 28017 | 516 | val tags' = tags |> Properties.put (Markup.theory_nameN, Context.theory_name thy); | 
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 517 | in | 
| 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 518 | thy | 
| 26978 | 519 | |> map_consts (fold (Consts.declare authentic (naming_of thy) tags' o #1) args) | 
| 19658 | 520 | |> add_syntax_i (map #2 args) | 
| 24959 
119793c84647
replaced Sign.add_consts_authentic by Sign.declare_const;
 wenzelm parents: 
24949diff
changeset | 521 | |> pair (map #3 args) | 
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 522 | end; | 
| 386 | 523 | |
| 17995 | 524 | in | 
| 525 | ||
| 30343 
79f022df8527
replace old bstring by binding for logical primitives: class, type, const etc.;
 wenzelm parents: 
30280diff
changeset | 526 | fun add_consts args = snd o gen_add_consts Syntax.parse_typ false [] args; | 
| 
79f022df8527
replace old bstring by binding for logical primitives: class, type, const etc.;
 wenzelm parents: 
30280diff
changeset | 527 | fun add_consts_i args = snd o gen_add_consts (K I) false [] args; | 
| 24959 
119793c84647
replaced Sign.add_consts_authentic by Sign.declare_const;
 wenzelm parents: 
24949diff
changeset | 528 | |
| 28111 
ea22fd4685fb
declare_const: Name.binding, store/report position;
 wenzelm parents: 
28017diff
changeset | 529 | fun declare_const tags ((b, T), mx) thy = | 
| 
ea22fd4685fb
declare_const: Name.binding, store/report position;
 wenzelm parents: 
28017diff
changeset | 530 | let | 
| 28941 | 531 | val pos = Binding.pos_of b; | 
| 28111 
ea22fd4685fb
declare_const: Name.binding, store/report position;
 wenzelm parents: 
28017diff
changeset | 532 | val tags' = Position.default_properties pos tags; | 
| 28861 | 533 | val ([const as Const (c, _)], thy') = gen_add_consts (K I) true tags' [(b, T, mx)] thy; | 
| 534 | val _ = Position.report (Markup.const_decl c) pos; | |
| 28111 
ea22fd4685fb
declare_const: Name.binding, store/report position;
 wenzelm parents: 
28017diff
changeset | 535 | in (const, thy') end; | 
| 386 | 536 | |
| 17995 | 537 | end; | 
| 538 | ||
| 386 | 539 | |
| 25049 
ec0547a4fcf0
add_abbrev: removed Logic.legacy_varifyT, do not unvarify result (again);
 wenzelm parents: 
25042diff
changeset | 540 | (* abbreviations *) | 
| 18941 | 541 | |
| 28861 | 542 | fun add_abbrev mode tags (b, raw_t) thy = | 
| 18941 | 543 | let | 
| 26939 
1035c89b4c02
moved global pretty/string_of functions from Sign to Syntax;
 wenzelm parents: 
26929diff
changeset | 544 | val pp = Syntax.pp_global thy; | 
| 26631 
d6b6c74a8bcf
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26268diff
changeset | 545 | val prep_tm = no_frees pp o Term.no_dummy_patterns o cert_term_abbrev thy; | 
| 19806 | 546 | val t = (prep_tm raw_t handle TYPE (msg, _, _) => error msg | TERM (msg, _) => error msg) | 
| 30218 | 547 |       handle ERROR msg => cat_error msg ("in constant abbreviation " ^ quote (Binding.str_of b));
 | 
| 21696 | 548 | val (res, consts') = consts_of thy | 
| 28861 | 549 | |> Consts.abbreviate pp (tsig_of thy) (naming_of thy) mode tags (b, t); | 
| 25049 
ec0547a4fcf0
add_abbrev: removed Logic.legacy_varifyT, do not unvarify result (again);
 wenzelm parents: 
25042diff
changeset | 550 | in (res, thy |> map_consts (K consts')) end; | 
| 
ec0547a4fcf0
add_abbrev: removed Logic.legacy_varifyT, do not unvarify result (again);
 wenzelm parents: 
25042diff
changeset | 551 | |
| 
ec0547a4fcf0
add_abbrev: removed Logic.legacy_varifyT, do not unvarify result (again);
 wenzelm parents: 
25042diff
changeset | 552 | fun revert_abbrev mode c = map_consts (Consts.revert_abbrev mode c); | 
| 18941 | 553 | |
| 554 | ||
| 16941 
0bda949449ee
added add_const_constraint(_i), const_constraint;
 wenzelm parents: 
16894diff
changeset | 555 | (* add constraints *) | 
| 
0bda949449ee
added add_const_constraint(_i), const_constraint;
 wenzelm parents: 
16894diff
changeset | 556 | |
| 24761 
d762ab297a07
removed obsolete external interface add_const_constraint;
 wenzelm parents: 
24732diff
changeset | 557 | fun add_const_constraint (c, opt_T) thy = | 
| 16941 
0bda949449ee
added add_const_constraint(_i), const_constraint;
 wenzelm parents: 
16894diff
changeset | 558 | let | 
| 19099 
100bf66d7e85
add_const_constraint(_i): demand TFrees instead of TVars, optional type (i.e. may delete constraints);
 wenzelm parents: 
19054diff
changeset | 559 | fun prepT raw_T = | 
| 24761 
d762ab297a07
removed obsolete external interface add_const_constraint;
 wenzelm parents: 
24732diff
changeset | 560 | 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 | 561 | in cert_term thy (Const (c, T)); T end | 
| 16941 
0bda949449ee
added add_const_constraint(_i), const_constraint;
 wenzelm parents: 
16894diff
changeset | 562 | 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 | 563 | 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 | 564 | |
| 
0bda949449ee
added add_const_constraint(_i), const_constraint;
 wenzelm parents: 
16894diff
changeset | 565 | |
| 19513 
77ff7cd602d7
removed add_classes/classrel/arities (superceded by AxClass.axiomatize_class/classrel/arity);
 wenzelm parents: 
19482diff
changeset | 566 | (* primitive classes and arities *) | 
| 386 | 567 | |
| 19513 
77ff7cd602d7
removed add_classes/classrel/arities (superceded by AxClass.axiomatize_class/classrel/arity);
 wenzelm parents: 
19482diff
changeset | 568 | fun primitive_class (bclass, classes) thy = | 
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 569 | thy |> map_sign (fn (naming, syn, tsig, consts) => | 
| 16337 | 570 | let | 
| 30585 
6b2ba4666336
use Name.of_binding for basic logical entities without name space (fixes, case names etc.);
 wenzelm parents: 
30522diff
changeset | 571 | val syn' = Syntax.update_consts [Name.of_binding bclass] syn; | 
| 26939 
1035c89b4c02
moved global pretty/string_of functions from Sign to Syntax;
 wenzelm parents: 
26929diff
changeset | 572 | val tsig' = Type.add_class (Syntax.pp_global thy) naming (bclass, classes) tsig; | 
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 573 | in (naming, syn', tsig', consts) end) | 
| 30343 
79f022df8527
replace old bstring by binding for logical primitives: class, type, const etc.;
 wenzelm parents: 
30280diff
changeset | 574 | |> add_consts_i [(Binding.map_name Logic.const_of_class bclass, Term.a_itselfT --> propT, NoSyn)]; | 
| 3791 
c5db2c87a646
now supports qualified names (intern vs. extern) !!!
 wenzelm parents: 
3552diff
changeset | 575 | |
| 26939 
1035c89b4c02
moved global pretty/string_of functions from Sign to Syntax;
 wenzelm parents: 
26929diff
changeset | 576 | fun primitive_classrel arg thy = thy |> map_tsig (Type.add_classrel (Syntax.pp_global thy) arg); | 
| 
1035c89b4c02
moved global pretty/string_of functions from Sign to Syntax;
 wenzelm parents: 
26929diff
changeset | 577 | fun primitive_arity arg thy = thy |> map_tsig (Type.add_arity (Syntax.pp_global thy) arg); | 
| 421 | 578 | |
| 579 | ||
| 14645 | 580 | (* add translation functions *) | 
| 581 | ||
| 15746 | 582 | local | 
| 583 | ||
| 584 | fun mk trs = map Syntax.mk_trfun trs; | |
| 585 | ||
| 16597 
5a5229a55964
eliminated separate syn type -- advanced trfuns already part of Syntax.syntax;
 wenzelm parents: 
16536diff
changeset | 586 | 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 | 587 | map_syn (ext (mk atrs, mk trs, mk (map (apsnd non_typed) tr's), mk atr's)); | 
| 14645 | 588 | |
| 16597 
5a5229a55964
eliminated separate syn type -- advanced trfuns already part of Syntax.syntax;
 wenzelm parents: 
16536diff
changeset | 589 | fun gen_add_trfunsT ext tr's = map_syn (ext ([], [], mk tr's, [])); | 
| 14645 | 590 | |
| 15746 | 591 | in | 
| 592 | ||
| 25390 
8bfa6566ac6b
syntax operations: turned extend'' into update'' (absorb duplicates);
 wenzelm parents: 
25383diff
changeset | 593 | 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 | 594 | val add_trfunsT = gen_add_trfunsT Syntax.update_trfuns; | 
| 
8bfa6566ac6b
syntax operations: turned extend'' into update'' (absorb duplicates);
 wenzelm parents: 
25383diff
changeset | 595 | 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 | 596 | val add_advanced_trfunsT = gen_add_trfunsT Syntax.update_advanced_trfuns; | 
| 14645 | 597 | |
| 15746 | 598 | end; | 
| 599 | ||
| 16597 
5a5229a55964
eliminated separate syn type -- advanced trfuns already part of Syntax.syntax;
 wenzelm parents: 
16536diff
changeset | 600 | 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 | 601 | fun add_mode_tokentrfuns m = add_tokentrfuns o map (fn (s, f) => (m, s, f)); | 
| 14645 | 602 | |
| 603 | ||
| 19258 
ada9977f1e98
declared_const: check for type constraint only, i.e. admit abbreviations as well;
 wenzelm parents: 
19250diff
changeset | 604 | (* translation rules *) | 
| 4619 | 605 | |
| 19258 
ada9977f1e98
declared_const: check for type constraint only, i.e. admit abbreviations as well;
 wenzelm parents: 
19250diff
changeset | 606 | 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 | 607 | let val rules = map (Syntax.map_trrule (apfst (intern_type thy))) args | 
| 21772 | 608 | in f (ProofContext.init thy) (is_logtype thy) syn rules syn end); | 
| 8725 | 609 | |
| 25390 
8bfa6566ac6b
syntax operations: turned extend'' into update'' (absorb duplicates);
 wenzelm parents: 
25383diff
changeset | 610 | 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 | 611 | val del_trrules = gen_trrules Syntax.remove_trrules; | 
| 25390 
8bfa6566ac6b
syntax operations: turned extend'' into update'' (absorb duplicates);
 wenzelm parents: 
25383diff
changeset | 612 | 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 | 613 | val del_trrules_i = map_syn o Syntax.remove_trrules_i; | 
| 386 | 614 | |
| 615 | ||
| 26667 
660b69b3c28a
removed obsolete SIGN_THEORY -- no name aliases in structure Theory;
 wenzelm parents: 
26637diff
changeset | 616 | (* naming *) | 
| 6546 | 617 | |
| 30522 | 618 | val add_path = map_naming o NameSpace.add_path; | 
| 619 | val root_path = map_naming NameSpace.root_path; | |
| 620 | val parent_path = map_naming NameSpace.parent_path; | |
| 621 | val mandatory_path = map_naming o NameSpace.mandatory_path; | |
| 6546 | 622 | |
| 16442 
1171ecf7fb7e
obsolete type sg is now an alias for Context.theory;
 wenzelm parents: 
16368diff
changeset | 623 | 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 | 624 | |
| 30522 | 625 | val restore_naming = map_naming o K o naming_of; | 
| 30421 | 626 | |
| 6546 | 627 | |
| 16337 | 628 | (* hide names *) | 
| 386 | 629 | |
| 26667 
660b69b3c28a
removed obsolete SIGN_THEORY -- no name aliases in structure Theory;
 wenzelm parents: 
26637diff
changeset | 630 | val hide_class = map_tsig oo Type.hide_class; | 
| 
660b69b3c28a
removed obsolete SIGN_THEORY -- no name aliases in structure Theory;
 wenzelm parents: 
26637diff
changeset | 631 | val hide_type = map_tsig oo Type.hide_type; | 
| 
660b69b3c28a
removed obsolete SIGN_THEORY -- no name aliases in structure Theory;
 wenzelm parents: 
26637diff
changeset | 632 | val hide_const = map_consts oo Consts.hide; | 
| 17343 | 633 | |
| 0 | 634 | end; |