src/Pure/sign.ML
author wenzelm
Sun, 15 Dec 2024 20:12:45 +0100
changeset 81596 af21a61dadad
parent 81594 7e1b66416b7f
permissions -rw-r--r--
clarified signature (see also 2157039256d3);
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
19
929ad32d63fc Pure/ROOT.ML
wenzelm
parents: 0
diff changeset
     1
(*  Title:      Pure/sign.ML
251
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
     2
    Author:     Lawrence C Paulson and Markus Wenzel
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     3
16442
1171ecf7fb7e obsolete type sg is now an alias for Context.theory;
wenzelm
parents: 16368
diff changeset
     4
Logical signature content: naming conventions, concrete syntax, type
18062
7a666583e869 moved consts declarations to consts.ML;
wenzelm
parents: 18032
diff changeset
     5
signature, polymorphic constants.
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     6
*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     7
16442
1171ecf7fb7e obsolete type sg is now an alias for Context.theory;
wenzelm
parents: 16368
diff changeset
     8
signature SIGN =
5642
1b3e48bdbb93 PRIVATE sig parts;
wenzelm
parents: 5635
diff changeset
     9
sig
56056
4d46d53566e6 more efficient local theory operations, by imposing a linear change discipline on the main types/consts tables, in order to speed-up Proof_Context.transfer_syntax required for Local_Theory.raw_theory_result;
wenzelm
parents: 56026
diff changeset
    10
  val change_begin: theory -> theory
4d46d53566e6 more efficient local theory operations, by imposing a linear change discipline on the main types/consts tables, in order to speed-up Proof_Context.transfer_syntax required for Local_Theory.raw_theory_result;
wenzelm
parents: 56026
diff changeset
    11
  val change_end: theory -> theory
4d46d53566e6 more efficient local theory operations, by imposing a linear change discipline on the main types/consts tables, in order to speed-up Proof_Context.transfer_syntax required for Local_Theory.raw_theory_result;
wenzelm
parents: 56026
diff changeset
    12
  val change_end_local: Proof.context -> Proof.context
56057
ad6bd8030d88 more explicit Sign.change_check -- detect structural mistakes where they emerge, not at later theory merges;
wenzelm
parents: 56056
diff changeset
    13
  val change_check: theory -> theory
80074
951c371c1cd9 clarified names: discontinue odd convention from 3 decades ago;
wenzelm
parents: 79471
diff changeset
    14
  val syntax_of: theory -> Syntax.syntax
16442
1171ecf7fb7e obsolete type sg is now an alias for Context.theory;
wenzelm
parents: 16368
diff changeset
    15
  val tsig_of: theory -> Type.tsig
19642
ea7162f84677 more abstract interface to classes/arities;
wenzelm
parents: 19513
diff changeset
    16
  val classes_of: theory -> Sorts.algebra
21932
7d592dc078e3 replaced classes by all_classes (topologically sorted);
wenzelm
parents: 21796
diff changeset
    17
  val all_classes: theory -> class list
19407
7c7a2e337504 added super_classes (from sorts.ML);
wenzelm
parents: 19391
diff changeset
    18
  val super_classes: theory -> class -> class list
24732
08c2dd5378c7 added minimize_sort, complete_sort;
wenzelm
parents: 24707
diff changeset
    19
  val minimize_sort: theory -> sort -> sort
08c2dd5378c7 added minimize_sort, complete_sort;
wenzelm
parents: 24707
diff changeset
    20
  val complete_sort: theory -> sort -> sort
36449
78721f3adb13 modernized/simplified Sign.set_defsort;
wenzelm
parents: 36179
diff changeset
    21
  val set_defsort: sort -> theory -> theory
16442
1171ecf7fb7e obsolete type sg is now an alias for Context.theory;
wenzelm
parents: 16368
diff changeset
    22
  val defaultS: theory -> sort
1171ecf7fb7e obsolete type sg is now an alias for Context.theory;
wenzelm
parents: 16368
diff changeset
    23
  val subsort: theory -> sort * sort -> bool
1171ecf7fb7e obsolete type sg is now an alias for Context.theory;
wenzelm
parents: 16368
diff changeset
    24
  val of_sort: theory -> typ * sort -> bool
39290
44e4d8dfd6bf load type_infer.ML later -- proper context for Type_Infer.infer_types;
wenzelm
parents: 39289
diff changeset
    25
  val inter_sort: theory -> sort * sort -> sort
79395
40e3d97b277e tuned whitespace;
wenzelm
parents: 79394
diff changeset
    26
  val witness_sorts: theory ->
40e3d97b277e tuned whitespace;
wenzelm
parents: 79394
diff changeset
    27
    (typ * sort) list -> sort Ord_List.T ->
79394
2ff5ffd8731b clarified signature;
wenzelm
parents: 79368
diff changeset
    28
    (typ * sort) list * sort Ord_List.T
59841
2551ac44150e tuned signature;
wenzelm
parents: 56240
diff changeset
    29
  val logical_types: theory -> string list
16442
1171ecf7fb7e obsolete type sg is now an alias for Context.theory;
wenzelm
parents: 16368
diff changeset
    30
  val typ_instance: theory -> typ * typ -> bool
19427
f086002893ad added typ_equiv;
wenzelm
parents: 19407
diff changeset
    31
  val typ_equiv: theory -> typ * typ -> bool
16941
0bda949449ee added add_const_constraint(_i), const_constraint;
wenzelm
parents: 16894
diff changeset
    32
  val typ_match: theory -> typ * typ -> Type.tyenv -> Type.tyenv
0bda949449ee added add_const_constraint(_i), const_constraint;
wenzelm
parents: 16894
diff changeset
    33
  val typ_unify: theory -> typ * typ -> Type.tyenv * int -> Type.tyenv * int
18967
ea42ab6c08d1 export consts_of;
wenzelm
parents: 18941
diff changeset
    34
  val consts_of: theory -> Consts.T
17037
bd15f69bd947 added 'the_const_constraint'
haftmann
parents: 16988
diff changeset
    35
  val the_const_constraint: theory -> string -> typ
16442
1171ecf7fb7e obsolete type sg is now an alias for Context.theory;
wenzelm
parents: 16368
diff changeset
    36
  val const_type: theory -> string -> typ option
1171ecf7fb7e obsolete type sg is now an alias for Context.theory;
wenzelm
parents: 16368
diff changeset
    37
  val the_const_type: theory -> string -> typ
1171ecf7fb7e obsolete type sg is now an alias for Context.theory;
wenzelm
parents: 16368
diff changeset
    38
  val declared_tyname: theory -> string -> bool
1171ecf7fb7e obsolete type sg is now an alias for Context.theory;
wenzelm
parents: 16368
diff changeset
    39
  val declared_const: theory -> string -> bool
47005
421760a1efe7 maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents: 45632
diff changeset
    40
  val naming_of: theory -> Name_Space.naming
421760a1efe7 maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents: 45632
diff changeset
    41
  val map_naming: (Name_Space.naming -> Name_Space.naming) -> theory -> theory
421760a1efe7 maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents: 45632
diff changeset
    42
  val restore_naming: theory -> theory -> theory
421760a1efe7 maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents: 45632
diff changeset
    43
  val inherit_naming: theory -> Proof.context -> Context.generic
421760a1efe7 maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents: 45632
diff changeset
    44
  val full_name: theory -> binding -> string
421760a1efe7 maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents: 45632
diff changeset
    45
  val full_name_path: theory -> string -> binding -> string
421760a1efe7 maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents: 45632
diff changeset
    46
  val full_bname: theory -> bstring -> string
421760a1efe7 maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents: 45632
diff changeset
    47
  val full_bname_path: theory -> string -> bstring -> string
79368
a2d8ecb13d3f clarified signature;
wenzelm
parents: 79345
diff changeset
    48
  val full_name_pos: theory -> binding -> string * Position.T
18062
7a666583e869 moved consts declarations to consts.ML;
wenzelm
parents: 18032
diff changeset
    49
  val const_monomorphic: theory -> string -> bool
18146
47463b1825c6 uncurried Consts.typargs;
wenzelm
parents: 18062
diff changeset
    50
  val const_typargs: theory -> string * typ -> typ list
18164
eb4206c930cd added const_instance;
wenzelm
parents: 18146
diff changeset
    51
  val const_instance: theory -> string * typ list -> typ
26268
80aaf4d034be added mk_const functions
haftmann
parents: 25476
diff changeset
    52
  val mk_const: theory -> string * typ list -> term
33095
bbd52d2f8696 renamed NameSpace to Name_Space -- also to emphasize its subtle change in semantics;
wenzelm
parents: 32789
diff changeset
    53
  val class_space: theory -> Name_Space.T
bbd52d2f8696 renamed NameSpace to Name_Space -- also to emphasize its subtle change in semantics;
wenzelm
parents: 32789
diff changeset
    54
  val type_space: theory -> Name_Space.T
bbd52d2f8696 renamed NameSpace to Name_Space -- also to emphasize its subtle change in semantics;
wenzelm
parents: 32789
diff changeset
    55
  val const_space: theory -> Name_Space.T
42359
6ca5407863ed prefer local name spaces;
wenzelm
parents: 42358
diff changeset
    56
  val intern_class: theory -> xstring -> string
6ca5407863ed prefer local name spaces;
wenzelm
parents: 42358
diff changeset
    57
  val intern_type: theory -> xstring -> string
6ca5407863ed prefer local name spaces;
wenzelm
parents: 42358
diff changeset
    58
  val intern_const: theory -> xstring -> string
35680
897740382442 aliases for class/type/const;
wenzelm
parents: 35669
diff changeset
    59
  val type_alias: binding -> string -> theory -> theory
897740382442 aliases for class/type/const;
wenzelm
parents: 35669
diff changeset
    60
  val const_alias: binding -> string -> theory -> theory
19462
26d5f3bcc933 added arity_number/sorts;
wenzelm
parents: 19427
diff changeset
    61
  val arity_number: theory -> string -> int
26d5f3bcc933 added arity_number/sorts;
wenzelm
parents: 19427
diff changeset
    62
  val arity_sorts: theory -> string -> sort -> sort list
16442
1171ecf7fb7e obsolete type sg is now an alias for Context.theory;
wenzelm
parents: 16368
diff changeset
    63
  val certify_class: theory -> class -> class
1171ecf7fb7e obsolete type sg is now an alias for Context.theory;
wenzelm
parents: 16368
diff changeset
    64
  val certify_sort: theory -> sort -> sort
1171ecf7fb7e obsolete type sg is now an alias for Context.theory;
wenzelm
parents: 16368
diff changeset
    65
  val certify_typ: theory -> typ -> typ
24273
1d4b411caf44 replaced certify_typ_syntax/abbrev by certify_typ_mode;
wenzelm
parents: 24260
diff changeset
    66
  val certify_typ_mode: Type.mode -> theory -> typ -> typ
79471
593fdddc6d98 clarified signature;
wenzelm
parents: 79463
diff changeset
    67
  val certify_flags: {prop: bool, normalize: bool} -> Context.generic -> Consts.T -> theory ->
79454
6b6e9af552f5 clarified signature: avoid redundant Term.maxidx_of_term;
wenzelm
parents: 79453
diff changeset
    68
    term -> term * typ
6b6e9af552f5 clarified signature: avoid redundant Term.maxidx_of_term;
wenzelm
parents: 79453
diff changeset
    69
  val certify_term: theory -> term -> term * typ
16494
6961e8ab33e1 added certify_prop, cert_term, cert_prop;
wenzelm
parents: 16442
diff changeset
    70
  val cert_term: theory -> term -> term
6961e8ab33e1 added certify_prop, cert_term, cert_prop;
wenzelm
parents: 16442
diff changeset
    71
  val cert_prop: theory -> term -> term
39133
70d3915c92f0 pretty printing: prefer regular Proof.context over Pretty.pp, which is mostly for special bootstrap purposes involving theory merge, for example;
wenzelm
parents: 37145
diff changeset
    72
  val no_frees: Proof.context -> term -> term
70d3915c92f0 pretty printing: prefer regular Proof.context over Pretty.pp, which is mostly for special bootstrap purposes involving theory merge, for example;
wenzelm
parents: 37145
diff changeset
    73
  val no_vars: Proof.context -> term -> term
47005
421760a1efe7 maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents: 45632
diff changeset
    74
  val add_type: Proof.context -> binding * int * mixfix -> theory -> theory
42375
774df7c59508 report Name_Space.declare/define, relatively to context;
wenzelm
parents: 42360
diff changeset
    75
  val add_types_global: (binding * int * mixfix) list -> theory -> theory
774df7c59508 report Name_Space.declare/define, relatively to context;
wenzelm
parents: 42360
diff changeset
    76
  val add_nonterminals: Proof.context -> binding list -> theory -> theory
774df7c59508 report Name_Space.declare/define, relatively to context;
wenzelm
parents: 42360
diff changeset
    77
  val add_nonterminals_global: binding list -> theory -> theory
774df7c59508 report Name_Space.declare/define, relatively to context;
wenzelm
parents: 42360
diff changeset
    78
  val add_type_abbrev: Proof.context -> binding * string list * typ -> theory -> theory
80897
5328d67ec647 more explicit context for syn_ext/mixfix operations, but it often degenerates to background theory;
wenzelm
parents: 80896
diff changeset
    79
  val syntax: Proof.context -> bool -> Syntax.mode -> (string * typ * mixfix) list ->
5328d67ec647 more explicit context for syn_ext/mixfix operations, but it often degenerates to background theory;
wenzelm
parents: 80896
diff changeset
    80
    theory -> theory
5328d67ec647 more explicit context for syn_ext/mixfix operations, but it often degenerates to background theory;
wenzelm
parents: 80896
diff changeset
    81
  val syntax_global: bool -> Syntax.mode -> (string * typ * mixfix) list -> theory -> theory
80748
43c4817375bf support for syntax const dependencies, with minimal integrity checks;
wenzelm
parents: 80074
diff changeset
    82
  val syntax_deps: (string * string list) list -> theory -> theory
80897
5328d67ec647 more explicit context for syn_ext/mixfix operations, but it often degenerates to background theory;
wenzelm
parents: 80896
diff changeset
    83
  val type_notation_global: bool -> Syntax.mode -> (typ * mixfix) list -> theory -> theory
5328d67ec647 more explicit context for syn_ext/mixfix operations, but it often degenerates to background theory;
wenzelm
parents: 80896
diff changeset
    84
  val notation_global: bool -> Syntax.mode -> (term * mixfix) list -> theory -> theory
42375
774df7c59508 report Name_Space.declare/define, relatively to context;
wenzelm
parents: 42360
diff changeset
    85
  val declare_const: Proof.context -> (binding * typ) * mixfix -> theory -> term * theory
774df7c59508 report Name_Space.declare/define, relatively to context;
wenzelm
parents: 42360
diff changeset
    86
  val declare_const_global: (binding * typ) * mixfix -> theory -> term * theory
56239
17df7145a871 tuned signature;
wenzelm
parents: 56057
diff changeset
    87
  val add_consts: (binding * typ * mixfix) list -> theory -> theory
17df7145a871 tuned signature;
wenzelm
parents: 56057
diff changeset
    88
  val add_consts_cmd: (binding * string * mixfix) list -> theory -> theory
33173
b8ca12f6681a eliminated obsolete tags for types/consts -- now handled via name space, in strongly typed fashion;
wenzelm
parents: 33172
diff changeset
    89
  val add_abbrev: string -> binding * term -> theory -> (term * term) * theory
25049
ec0547a4fcf0 add_abbrev: removed Logic.legacy_varifyT, do not unvarify result (again);
wenzelm
parents: 25042
diff changeset
    90
  val revert_abbrev: string -> string -> theory -> theory
24761
d762ab297a07 removed obsolete external interface add_const_constraint;
wenzelm
parents: 24732
diff changeset
    91
  val add_const_constraint: string * typ option -> theory -> theory
30343
79f022df8527 replace old bstring by binding for logical primitives: class, type, const etc.;
wenzelm
parents: 30280
diff changeset
    92
  val primitive_class: binding * class list -> theory -> theory
22811
eb59c9b76d52 renamed some old names Theory.xxx to Sign.xxx;
wenzelm
parents: 22796
diff changeset
    93
  val primitive_classrel: class * class -> theory -> theory
eb59c9b76d52 renamed some old names Theory.xxx to Sign.xxx;
wenzelm
parents: 22796
diff changeset
    94
  val primitive_arity: arity -> theory -> theory
52143
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 47008
diff changeset
    95
  val parse_ast_translation:
42224
578a51fae383 discontinued special treatment of structure Ast: no pervasive content, no inclusion in structure Syntax;
wenzelm
parents: 42204
diff changeset
    96
    (string * (Proof.context -> Ast.ast list -> Ast.ast)) list -> theory -> theory
52143
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 47008
diff changeset
    97
  val parse_translation:
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 47008
diff changeset
    98
    (string * (Proof.context -> term list -> term)) list -> theory -> theory
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 47008
diff changeset
    99
  val print_translation:
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 47008
diff changeset
   100
    (string * (Proof.context -> term list -> term)) list -> theory -> theory
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 47008
diff changeset
   101
  val typed_print_translation:
42247
12fe41a92cd5 typed_print_translation: discontinued show_sorts argument;
wenzelm
parents: 42224
diff changeset
   102
    (string * (Proof.context -> typ -> term list -> term)) list -> theory -> theory
52143
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 47008
diff changeset
   103
  val print_ast_translation:
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 47008
diff changeset
   104
    (string * (Proof.context -> Ast.ast list -> Ast.ast)) list -> theory -> theory
81594
7e1b66416b7f commands 'syntax_types' and 'syntax_consts' now work in a local theory context;
wenzelm
parents: 81593
diff changeset
   105
  val check_syntax_dep: Proof.context -> string -> unit
81591
d570d215e380 syntax translations now work in a local theory context;
wenzelm
parents: 81590
diff changeset
   106
  val check_translations: Proof.context -> Ast.ast Syntax.trrule list -> unit
d570d215e380 syntax translations now work in a local theory context;
wenzelm
parents: 81590
diff changeset
   107
  val translations: Proof.context -> bool -> Ast.ast Syntax.trrule list -> theory -> theory
81590
e656c5edc352 clarified signature;
wenzelm
parents: 81116
diff changeset
   108
  val translations_global: bool -> Ast.ast Syntax.trrule list -> theory -> theory
59886
e0dc738eb08c support for explicit scope of private entries;
wenzelm
parents: 59880
diff changeset
   109
  val get_scope: theory -> Binding.scope option
e0dc738eb08c support for explicit scope of private entries;
wenzelm
parents: 59880
diff changeset
   110
  val new_scope: theory -> Binding.scope * theory
33724
5ee13e0428d2 uniform new_group/reset_group;
wenzelm
parents: 33385
diff changeset
   111
  val new_group: theory -> theory
5ee13e0428d2 uniform new_group/reset_group;
wenzelm
parents: 33385
diff changeset
   112
  val reset_group: theory -> theory
26667
660b69b3c28a removed obsolete SIGN_THEORY -- no name aliases in structure Theory;
wenzelm
parents: 26637
diff changeset
   113
  val add_path: string -> theory -> theory
30421
9498e99e58a6 explicit root_path, parent_path;
wenzelm
parents: 30364
diff changeset
   114
  val root_path: theory -> theory
26667
660b69b3c28a removed obsolete SIGN_THEORY -- no name aliases in structure Theory;
wenzelm
parents: 26637
diff changeset
   115
  val parent_path: theory -> theory
30469
de9e8f1d927c renamed sticky_prefix to mandatory_path;
wenzelm
parents: 30438
diff changeset
   116
  val mandatory_path: string -> theory -> theory
35200
aaddb2b526d6 more systematic treatment of qualified names derived from binding;
wenzelm
parents: 35129
diff changeset
   117
  val qualified_path: bool -> binding -> theory -> theory
26667
660b69b3c28a removed obsolete SIGN_THEORY -- no name aliases in structure Theory;
wenzelm
parents: 26637
diff changeset
   118
  val local_path: theory -> theory
72053
4ed33ea8d957 prefer conservative extend/merge of theory naming;
wenzelm
parents: 71257
diff changeset
   119
  val init_naming: theory -> theory
59923
b21c82422d65 support private scope for individual local theory commands;
wenzelm
parents: 59896
diff changeset
   120
  val private_scope: Binding.scope -> theory -> theory
b21c82422d65 support private scope for individual local theory commands;
wenzelm
parents: 59896
diff changeset
   121
  val private: Position.T -> theory -> theory
59990
a81dc82ecba3 clarified keyword 'qualified' in accordance to a similar keyword from Haskell (despite unrelated Binding.qualified in Isabelle/ML);
wenzelm
parents: 59939
diff changeset
   122
  val qualified_scope: Binding.scope -> theory -> theory
a81dc82ecba3 clarified keyword 'qualified' in accordance to a similar keyword from Haskell (despite unrelated Binding.qualified in Isabelle/ML);
wenzelm
parents: 59939
diff changeset
   123
  val qualified: Position.T -> theory -> theory
59880
30687c3f2b10 clarified role of naming for background theory: transform_binding (e.g. for "concealed" flag) uses naming of hypothetical context;
wenzelm
parents: 59841
diff changeset
   124
  val concealed: theory -> theory
26667
660b69b3c28a removed obsolete SIGN_THEORY -- no name aliases in structure Theory;
wenzelm
parents: 26637
diff changeset
   125
  val hide_class: bool -> string -> theory -> theory
660b69b3c28a removed obsolete SIGN_THEORY -- no name aliases in structure Theory;
wenzelm
parents: 26637
diff changeset
   126
  val hide_type: bool -> string -> theory -> theory
660b69b3c28a removed obsolete SIGN_THEORY -- no name aliases in structure Theory;
wenzelm
parents: 26637
diff changeset
   127
  val hide_const: bool -> string -> theory -> theory
16442
1171ecf7fb7e obsolete type sg is now an alias for Context.theory;
wenzelm
parents: 16368
diff changeset
   128
end
5642
1b3e48bdbb93 PRIVATE sig parts;
wenzelm
parents: 5635
diff changeset
   129
16442
1171ecf7fb7e obsolete type sg is now an alias for Context.theory;
wenzelm
parents: 16368
diff changeset
   130
structure Sign: SIGN =
143
f8152ca36cd5 Sign.extend: Syntax.extend now called with read_ty;
wenzelm
parents: 19
diff changeset
   131
struct
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   132
16442
1171ecf7fb7e obsolete type sg is now an alias for Context.theory;
wenzelm
parents: 16368
diff changeset
   133
(** datatype sign **)
16337
5734de2f7ace Major cleanup:
wenzelm
parents: 16288
diff changeset
   134
16442
1171ecf7fb7e obsolete type sg is now an alias for Context.theory;
wenzelm
parents: 16368
diff changeset
   135
datatype sign = Sign of
47005
421760a1efe7 maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents: 45632
diff changeset
   136
 {syn: Syntax.syntax,           (*concrete syntax for terms, types, sorts*)
18062
7a666583e869 moved consts declarations to consts.ML;
wenzelm
parents: 18032
diff changeset
   137
  tsig: Type.tsig,              (*order-sorted signature of types*)
7a666583e869 moved consts declarations to consts.ML;
wenzelm
parents: 18032
diff changeset
   138
  consts: Consts.T};            (*polymorphic constants*)
16442
1171ecf7fb7e obsolete type sg is now an alias for Context.theory;
wenzelm
parents: 16368
diff changeset
   139
77895
655bd3b0671b support n-ary merge theory data;
wenzelm
parents: 77889
diff changeset
   140
fun rep_sign (Sign args) = args;
47005
421760a1efe7 maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents: 45632
diff changeset
   141
fun make_sign (syn, tsig, consts) = Sign {syn = syn, tsig = tsig, consts = consts};
16442
1171ecf7fb7e obsolete type sg is now an alias for Context.theory;
wenzelm
parents: 16368
diff changeset
   142
61262
7bd1eb4b056e tuned signature: eliminated pointless type Context.pretty;
wenzelm
parents: 59990
diff changeset
   143
structure Data = Theory_Data'
22846
fb79144af9a3 simplified DataFun interfaces;
wenzelm
parents: 22811
diff changeset
   144
(
16442
1171ecf7fb7e obsolete type sg is now an alias for Context.theory;
wenzelm
parents: 16368
diff changeset
   145
  type T = sign;
47005
421760a1efe7 maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents: 45632
diff changeset
   146
  val empty = make_sign (Syntax.empty_syntax, Type.empty_tsig, Consts.empty);
77895
655bd3b0671b support n-ary merge theory data;
wenzelm
parents: 77889
diff changeset
   147
  fun merge args =
16442
1171ecf7fb7e obsolete type sg is now an alias for Context.theory;
wenzelm
parents: 16368
diff changeset
   148
    let
77895
655bd3b0671b support n-ary merge theory data;
wenzelm
parents: 77889
diff changeset
   149
      val context0 = Context.Theory (#1 (hd args));
655bd3b0671b support n-ary merge theory data;
wenzelm
parents: 77889
diff changeset
   150
      val syn' = Library.foldl1 Syntax.merge_syntax (map (#syn o rep_sign o #2) args);
655bd3b0671b support n-ary merge theory data;
wenzelm
parents: 77889
diff changeset
   151
      val tsig' = Library.foldl1 (Type.merge_tsig context0) (map (#tsig o rep_sign o #2) args);
655bd3b0671b support n-ary merge theory data;
wenzelm
parents: 77889
diff changeset
   152
      val consts' = Library.foldl1 Consts.merge (map (#consts o rep_sign o #2) args);
655bd3b0671b support n-ary merge theory data;
wenzelm
parents: 77889
diff changeset
   153
    in make_sign (syn', tsig', consts') end;
22846
fb79144af9a3 simplified DataFun interfaces;
wenzelm
parents: 22811
diff changeset
   154
);
16442
1171ecf7fb7e obsolete type sg is now an alias for Context.theory;
wenzelm
parents: 16368
diff changeset
   155
77895
655bd3b0671b support n-ary merge theory data;
wenzelm
parents: 77889
diff changeset
   156
val rep_sg = rep_sign o Data.get;
16442
1171ecf7fb7e obsolete type sg is now an alias for Context.theory;
wenzelm
parents: 16368
diff changeset
   157
47005
421760a1efe7 maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents: 45632
diff changeset
   158
fun map_sign f = Data.map (fn Sign {syn, tsig, consts} => make_sign (f (syn, tsig, consts)));
16337
5734de2f7ace Major cleanup:
wenzelm
parents: 16288
diff changeset
   159
47005
421760a1efe7 maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents: 45632
diff changeset
   160
fun map_syn f = map_sign (fn (syn, tsig, consts) => (f syn, tsig, consts));
421760a1efe7 maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents: 45632
diff changeset
   161
fun map_tsig f = map_sign (fn (syn, tsig, consts) => (syn, f tsig, consts));
421760a1efe7 maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents: 45632
diff changeset
   162
fun map_consts f = map_sign (fn (syn, tsig, consts) => (syn, tsig, f consts));
14645
83776a9f0a9c support for advanced translation functions;
wenzelm
parents: 14383
diff changeset
   163
80897
5328d67ec647 more explicit context for syn_ext/mixfix operations, but it often degenerates to background theory;
wenzelm
parents: 80896
diff changeset
   164
fun update_syn_global f args thy = map_syn (f (Proof_Context.init_global thy) args) thy;
5328d67ec647 more explicit context for syn_ext/mixfix operations, but it often degenerates to background theory;
wenzelm
parents: 80896
diff changeset
   165
14645
83776a9f0a9c support for advanced translation functions;
wenzelm
parents: 14383
diff changeset
   166
56056
4d46d53566e6 more efficient local theory operations, by imposing a linear change discipline on the main types/consts tables, in order to speed-up Proof_Context.transfer_syntax required for Local_Theory.raw_theory_result;
wenzelm
parents: 56026
diff changeset
   167
(* linear change discipline *)
4d46d53566e6 more efficient local theory operations, by imposing a linear change discipline on the main types/consts tables, in order to speed-up Proof_Context.transfer_syntax required for Local_Theory.raw_theory_result;
wenzelm
parents: 56026
diff changeset
   168
4d46d53566e6 more efficient local theory operations, by imposing a linear change discipline on the main types/consts tables, in order to speed-up Proof_Context.transfer_syntax required for Local_Theory.raw_theory_result;
wenzelm
parents: 56026
diff changeset
   169
fun change_base begin = map_sign (fn (syn, tsig, consts) =>
4d46d53566e6 more efficient local theory operations, by imposing a linear change discipline on the main types/consts tables, in order to speed-up Proof_Context.transfer_syntax required for Local_Theory.raw_theory_result;
wenzelm
parents: 56026
diff changeset
   170
  (syn, Type.change_base begin tsig, Consts.change_base begin consts));
4d46d53566e6 more efficient local theory operations, by imposing a linear change discipline on the main types/consts tables, in order to speed-up Proof_Context.transfer_syntax required for Local_Theory.raw_theory_result;
wenzelm
parents: 56026
diff changeset
   171
4d46d53566e6 more efficient local theory operations, by imposing a linear change discipline on the main types/consts tables, in order to speed-up Proof_Context.transfer_syntax required for Local_Theory.raw_theory_result;
wenzelm
parents: 56026
diff changeset
   172
val change_begin = change_base true;
4d46d53566e6 more efficient local theory operations, by imposing a linear change discipline on the main types/consts tables, in order to speed-up Proof_Context.transfer_syntax required for Local_Theory.raw_theory_result;
wenzelm
parents: 56026
diff changeset
   173
val change_end = change_base false;
4d46d53566e6 more efficient local theory operations, by imposing a linear change discipline on the main types/consts tables, in order to speed-up Proof_Context.transfer_syntax required for Local_Theory.raw_theory_result;
wenzelm
parents: 56026
diff changeset
   174
4d46d53566e6 more efficient local theory operations, by imposing a linear change discipline on the main types/consts tables, in order to speed-up Proof_Context.transfer_syntax required for Local_Theory.raw_theory_result;
wenzelm
parents: 56026
diff changeset
   175
fun change_end_local ctxt =
4d46d53566e6 more efficient local theory operations, by imposing a linear change discipline on the main types/consts tables, in order to speed-up Proof_Context.transfer_syntax required for Local_Theory.raw_theory_result;
wenzelm
parents: 56026
diff changeset
   176
  Context.raw_transfer (change_end (Proof_Context.theory_of ctxt)) ctxt;
4d46d53566e6 more efficient local theory operations, by imposing a linear change discipline on the main types/consts tables, in order to speed-up Proof_Context.transfer_syntax required for Local_Theory.raw_theory_result;
wenzelm
parents: 56026
diff changeset
   177
56057
ad6bd8030d88 more explicit Sign.change_check -- detect structural mistakes where they emerge, not at later theory merges;
wenzelm
parents: 56056
diff changeset
   178
fun change_check thy =
ad6bd8030d88 more explicit Sign.change_check -- detect structural mistakes where they emerge, not at later theory merges;
wenzelm
parents: 56056
diff changeset
   179
  if can change_end thy
ad6bd8030d88 more explicit Sign.change_check -- detect structural mistakes where they emerge, not at later theory merges;
wenzelm
parents: 56056
diff changeset
   180
  then raise Fail "Unfinished linear change of theory content" else thy;
ad6bd8030d88 more explicit Sign.change_check -- detect structural mistakes where they emerge, not at later theory merges;
wenzelm
parents: 56056
diff changeset
   181
56056
4d46d53566e6 more efficient local theory operations, by imposing a linear change discipline on the main types/consts tables, in order to speed-up Proof_Context.transfer_syntax required for Local_Theory.raw_theory_result;
wenzelm
parents: 56026
diff changeset
   182
14645
83776a9f0a9c support for advanced translation functions;
wenzelm
parents: 14383
diff changeset
   183
(* syntax *)
83776a9f0a9c support for advanced translation functions;
wenzelm
parents: 14383
diff changeset
   184
80074
951c371c1cd9 clarified names: discontinue odd convention from 3 decades ago;
wenzelm
parents: 79471
diff changeset
   185
val syntax_of = #syn o rep_sg;
14645
83776a9f0a9c support for advanced translation functions;
wenzelm
parents: 14383
diff changeset
   186
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   187
16337
5734de2f7ace Major cleanup:
wenzelm
parents: 16288
diff changeset
   188
(* type signature *)
5734de2f7ace Major cleanup:
wenzelm
parents: 16288
diff changeset
   189
5734de2f7ace Major cleanup:
wenzelm
parents: 16288
diff changeset
   190
val tsig_of = #tsig o rep_sg;
24732
08c2dd5378c7 added minimize_sort, complete_sort;
wenzelm
parents: 24707
diff changeset
   191
19642
ea7162f84677 more abstract interface to classes/arities;
wenzelm
parents: 19513
diff changeset
   192
val classes_of = #2 o #classes o Type.rep_tsig o tsig_of;
21932
7d592dc078e3 replaced classes by all_classes (topologically sorted);
wenzelm
parents: 21796
diff changeset
   193
val all_classes = Sorts.all_classes o classes_of;
19642
ea7162f84677 more abstract interface to classes/arities;
wenzelm
parents: 19513
diff changeset
   194
val super_classes = Sorts.super_classes o classes_of;
24732
08c2dd5378c7 added minimize_sort, complete_sort;
wenzelm
parents: 24707
diff changeset
   195
val minimize_sort = Sorts.minimize_sort o classes_of;
08c2dd5378c7 added minimize_sort, complete_sort;
wenzelm
parents: 24707
diff changeset
   196
val complete_sort = Sorts.complete_sort o classes_of;
08c2dd5378c7 added minimize_sort, complete_sort;
wenzelm
parents: 24707
diff changeset
   197
36449
78721f3adb13 modernized/simplified Sign.set_defsort;
wenzelm
parents: 36179
diff changeset
   198
val set_defsort = map_tsig o Type.set_defsort;
4844
4fb63c77f2df added defaultS: sg -> sort;
wenzelm
parents: 4627
diff changeset
   199
val defaultS = Type.defaultS o tsig_of;
4568
7be03035c553 added of_sort;
wenzelm
parents: 4489
diff changeset
   200
val subsort = Type.subsort o tsig_of;
7640
6b7daae5d316 added witness_sorts, univ_witness;
wenzelm
parents: 7068
diff changeset
   201
val of_sort = Type.of_sort o tsig_of;
39290
44e4d8dfd6bf load type_infer.ML later -- proper context for Type_Infer.infer_types;
wenzelm
parents: 39289
diff changeset
   202
val inter_sort = Type.inter_sort o tsig_of;
7640
6b7daae5d316 added witness_sorts, univ_witness;
wenzelm
parents: 7068
diff changeset
   203
val witness_sorts = Type.witness_sorts o tsig_of;
59841
2551ac44150e tuned signature;
wenzelm
parents: 56240
diff changeset
   204
val logical_types = Type.logical_types o tsig_of;
24732
08c2dd5378c7 added minimize_sort, complete_sort;
wenzelm
parents: 24707
diff changeset
   205
14784
e65d77313a94 xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents: 14700
diff changeset
   206
val typ_instance = Type.typ_instance o tsig_of;
19427
f086002893ad added typ_equiv;
wenzelm
parents: 19407
diff changeset
   207
fun typ_equiv thy (T, U) = typ_instance thy (T, U) andalso typ_instance thy (U, T);
16941
0bda949449ee added add_const_constraint(_i), const_constraint;
wenzelm
parents: 16894
diff changeset
   208
val typ_match = Type.typ_match o tsig_of;
0bda949449ee added add_const_constraint(_i), const_constraint;
wenzelm
parents: 16894
diff changeset
   209
val typ_unify = Type.unify o tsig_of;
4256
e768c42069bb removed data.ML (made part of sign.ML);
wenzelm
parents: 4249
diff changeset
   210
e768c42069bb removed data.ML (made part of sign.ML);
wenzelm
parents: 4249
diff changeset
   211
18062
7a666583e869 moved consts declarations to consts.ML;
wenzelm
parents: 18032
diff changeset
   212
(* polymorphic constants *)
16941
0bda949449ee added add_const_constraint(_i), const_constraint;
wenzelm
parents: 16894
diff changeset
   213
18062
7a666583e869 moved consts declarations to consts.ML;
wenzelm
parents: 18032
diff changeset
   214
val consts_of = #consts o rep_sg;
21722
25239591e732 tuned Consts signature;
wenzelm
parents: 21704
diff changeset
   215
val the_const_constraint = Consts.the_constraint o consts_of;
79463
7d10708bbc32 clarified signature;
wenzelm
parents: 79455
diff changeset
   216
val the_const_type = Consts.the_const_type o consts_of;
18062
7a666583e869 moved consts declarations to consts.ML;
wenzelm
parents: 18032
diff changeset
   217
val const_type = try o the_const_type;
21722
25239591e732 tuned Consts signature;
wenzelm
parents: 21704
diff changeset
   218
val const_monomorphic = Consts.is_monomorphic o consts_of;
18062
7a666583e869 moved consts declarations to consts.ML;
wenzelm
parents: 18032
diff changeset
   219
val const_typargs = Consts.typargs o consts_of;
18164
eb4206c930cd added const_instance;
wenzelm
parents: 18146
diff changeset
   220
val const_instance = Consts.instance o consts_of;
4256
e768c42069bb removed data.ML (made part of sign.ML);
wenzelm
parents: 4249
diff changeset
   221
26268
80aaf4d034be added mk_const functions
haftmann
parents: 25476
diff changeset
   222
fun mk_const thy (c, Ts) = Const (c, const_instance thy (c, Ts));
80aaf4d034be added mk_const functions
haftmann
parents: 25476
diff changeset
   223
81593
4bad9c465eef tuned names;
wenzelm
parents: 81591
diff changeset
   224
fun declared_tyname thy c = can (Type.the_decl (tsig_of thy)) (c, Position.none);
24761
d762ab297a07 removed obsolete external interface add_const_constraint;
wenzelm
parents: 24732
diff changeset
   225
val declared_const = can o the_const_constraint;
620
f787eb061618 exported pretty_sort;
wenzelm
parents: 583
diff changeset
   226
402
16a8fe4f2250 added subsort, norm_sort, classes;
wenzelm
parents: 386
diff changeset
   227
47005
421760a1efe7 maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents: 45632
diff changeset
   228
(* naming *)
421760a1efe7 maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents: 45632
diff changeset
   229
421760a1efe7 maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents: 45632
diff changeset
   230
val naming_of = Name_Space.naming_of o Context.Theory;
421760a1efe7 maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents: 45632
diff changeset
   231
val map_naming = Context.theory_map o Name_Space.map_naming;
421760a1efe7 maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents: 45632
diff changeset
   232
val restore_naming = map_naming o K o naming_of;
47006
wenzelm
parents: 47005
diff changeset
   233
fun inherit_naming thy = Name_Space.map_naming (K (naming_of thy)) o Context.Proof;
47005
421760a1efe7 maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents: 45632
diff changeset
   234
421760a1efe7 maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents: 45632
diff changeset
   235
val full_name = Name_Space.full_name o naming_of;
421760a1efe7 maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents: 45632
diff changeset
   236
fun full_name_path thy path = Name_Space.full_name (Name_Space.add_path path (naming_of thy));
421760a1efe7 maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents: 45632
diff changeset
   237
421760a1efe7 maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents: 45632
diff changeset
   238
fun full_bname thy = Name_Space.full_name (naming_of thy) o Binding.name;
421760a1efe7 maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents: 45632
diff changeset
   239
fun full_bname_path thy path = full_name_path thy path o Binding.name;
421760a1efe7 maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents: 45632
diff changeset
   240
79368
a2d8ecb13d3f clarified signature;
wenzelm
parents: 79345
diff changeset
   241
fun full_name_pos thy b = (full_name thy b, Binding.default_pos_of b);
79345
75701d767ed9 clarified modules;
wenzelm
parents: 77895
diff changeset
   242
47005
421760a1efe7 maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents: 45632
diff changeset
   243
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   244
42359
6ca5407863ed prefer local name spaces;
wenzelm
parents: 42358
diff changeset
   245
(** name spaces **)
16337
5734de2f7ace Major cleanup:
wenzelm
parents: 16288
diff changeset
   246
35669
a91c7ed801b8 added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
wenzelm
parents: 35429
diff changeset
   247
val class_space = Type.class_space o tsig_of;
a91c7ed801b8 added ProofContext.tsig_of -- proforma version for local name space only, not logical content;
wenzelm
parents: 35429
diff changeset
   248
val type_space = Type.type_space o tsig_of;
18967
ea42ab6c08d1 export consts_of;
wenzelm
parents: 18941
diff changeset
   249
val const_space = Consts.space_of o consts_of;
14645
83776a9f0a9c support for advanced translation functions;
wenzelm
parents: 14383
diff changeset
   250
42359
6ca5407863ed prefer local name spaces;
wenzelm
parents: 42358
diff changeset
   251
val intern_class = Name_Space.intern o class_space;
6ca5407863ed prefer local name spaces;
wenzelm
parents: 42358
diff changeset
   252
val intern_type = Name_Space.intern o type_space;
6ca5407863ed prefer local name spaces;
wenzelm
parents: 42358
diff changeset
   253
val intern_const = Name_Space.intern o const_space;
6ca5407863ed prefer local name spaces;
wenzelm
parents: 42358
diff changeset
   254
35680
897740382442 aliases for class/type/const;
wenzelm
parents: 35669
diff changeset
   255
fun type_alias b c thy = map_tsig (Type.type_alias (naming_of thy) b c) thy;
897740382442 aliases for class/type/const;
wenzelm
parents: 35669
diff changeset
   256
fun const_alias b c thy = map_consts (Consts.alias (naming_of thy) b c) thy;
897740382442 aliases for class/type/const;
wenzelm
parents: 35669
diff changeset
   257
14645
83776a9f0a9c support for advanced translation functions;
wenzelm
parents: 14383
diff changeset
   258
83776a9f0a9c support for advanced translation functions;
wenzelm
parents: 14383
diff changeset
   259
16337
5734de2f7ace Major cleanup:
wenzelm
parents: 16288
diff changeset
   260
(** certify entities **)    (*exception TYPE*)
8898
a1ee54500516 removed is_type_abbr;
wenzelm
parents: 8802
diff changeset
   261
16337
5734de2f7ace Major cleanup:
wenzelm
parents: 16288
diff changeset
   262
(* certify wrt. type signature *)
8898
a1ee54500516 removed is_type_abbr;
wenzelm
parents: 8802
diff changeset
   263
19462
26d5f3bcc933 added arity_number/sorts;
wenzelm
parents: 19427
diff changeset
   264
val arity_number = Type.arity_number o tsig_of;
61262
7bd1eb4b056e tuned signature: eliminated pointless type Context.pretty;
wenzelm
parents: 59990
diff changeset
   265
fun arity_sorts thy = Type.arity_sorts (Context.Theory thy) (tsig_of thy);
19462
26d5f3bcc933 added arity_number/sorts;
wenzelm
parents: 19427
diff changeset
   266
42388
a44b0fdaa6c2 standardized aliases of operations on tsig;
wenzelm
parents: 42387
diff changeset
   267
val certify_class = Type.cert_class o tsig_of;
a44b0fdaa6c2 standardized aliases of operations on tsig;
wenzelm
parents: 42387
diff changeset
   268
val certify_sort = Type.cert_sort o tsig_of;
79455
d7f32f04bd13 clarified signature;
wenzelm
parents: 79454
diff changeset
   269
fun certify_typ_mode mode = Type.certify_typ mode o tsig_of;
79452
664d0cec18fd misc tuning and clarification: prefer Same.operation;
wenzelm
parents: 79451
diff changeset
   270
val certify_typ = certify_typ_mode Type.mode_default;
10443
0a68dc9edba5 added certify_tycon, certify_tyabbr, certify_const;
wenzelm
parents: 10404
diff changeset
   271
4961
27f559b54c57 certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents: 4951
diff changeset
   272
18967
ea42ab6c08d1 export consts_of;
wenzelm
parents: 18941
diff changeset
   273
(* certify term/prop *)
4961
27f559b54c57 certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents: 4951
diff changeset
   274
14987
699239c7632c tuned certify_term;
wenzelm
parents: 14981
diff changeset
   275
local
1494
22f67e796445 added nodup_Vars check in cterm_of. Prevents same var with distinct types.
nipkow
parents: 1460
diff changeset
   276
61262
7bd1eb4b056e tuned signature: eliminated pointless type Context.pretty;
wenzelm
parents: 59990
diff changeset
   277
fun type_check context tm =
4961
27f559b54c57 certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents: 4951
diff changeset
   278
  let
39289
92b50c8bb67b common Type.appl_error, which also covers explicit constraints;
wenzelm
parents: 39137
diff changeset
   279
    fun err_appl bs t T u U =
4961
27f559b54c57 certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents: 4951
diff changeset
   280
      let
10404
93efbb62667c added typ_instance;
wenzelm
parents: 9504
diff changeset
   281
        val xs = map Free bs;           (*we do not rename here*)
4961
27f559b54c57 certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents: 4951
diff changeset
   282
        val t' = subst_bounds (xs, t);
27f559b54c57 certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents: 4951
diff changeset
   283
        val u' = subst_bounds (xs, u);
61262
7bd1eb4b056e tuned signature: eliminated pointless type Context.pretty;
wenzelm
parents: 59990
diff changeset
   284
        val msg = Type.appl_error (Syntax.init_pretty context) t' T u' U;
16337
5734de2f7ace Major cleanup:
wenzelm
parents: 16288
diff changeset
   285
      in raise TYPE (msg, [T, U], [t', u']) end;
4961
27f559b54c57 certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents: 4951
diff changeset
   286
27f559b54c57 certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents: 4951
diff changeset
   287
    fun typ_of (_, Const (_, T)) = T
27f559b54c57 certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents: 4951
diff changeset
   288
      | typ_of (_, Free  (_, T)) = T
27f559b54c57 certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents: 4951
diff changeset
   289
      | typ_of (_, Var (_, T)) = T
43278
1fbdcebb364b more robust exception pattern General.Subscript;
wenzelm
parents: 42388
diff changeset
   290
      | typ_of (bs, Bound i) = snd (nth bs i handle General.Subscript =>
4961
27f559b54c57 certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents: 4951
diff changeset
   291
          raise TYPE ("Loose bound variable: B." ^ string_of_int i, [], [Bound i]))
27f559b54c57 certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents: 4951
diff changeset
   292
      | typ_of (bs, Abs (x, T, body)) = T --> typ_of ((x, T) :: bs, body)
27f559b54c57 certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents: 4951
diff changeset
   293
      | typ_of (bs, t $ u) =
27f559b54c57 certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents: 4951
diff changeset
   294
          let val T = typ_of (bs, t) and U = typ_of (bs, u) in
27f559b54c57 certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents: 4951
diff changeset
   295
            (case T of
27f559b54c57 certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents: 4951
diff changeset
   296
              Type ("fun", [T1, T2]) =>
39289
92b50c8bb67b common Type.appl_error, which also covers explicit constraints;
wenzelm
parents: 39137
diff changeset
   297
                if T1 = U then T2 else err_appl bs t T u U
92b50c8bb67b common Type.appl_error, which also covers explicit constraints;
wenzelm
parents: 39137
diff changeset
   298
            | _ => err_appl bs t T u U)
4961
27f559b54c57 certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents: 4951
diff changeset
   299
          end;
18967
ea42ab6c08d1 export consts_of;
wenzelm
parents: 18941
diff changeset
   300
  in typ_of ([], tm) end;
4961
27f559b54c57 certify_term: type_check replaces Term.type_of, providing sensible
wenzelm
parents: 4951
diff changeset
   301
18967
ea42ab6c08d1 export consts_of;
wenzelm
parents: 18941
diff changeset
   302
fun err msg = raise TYPE (msg, [], []);
ea42ab6c08d1 export consts_of;
wenzelm
parents: 18941
diff changeset
   303
ea42ab6c08d1 export consts_of;
wenzelm
parents: 18941
diff changeset
   304
fun check_vars (t $ u) = (check_vars t; check_vars u)
ea42ab6c08d1 export consts_of;
wenzelm
parents: 18941
diff changeset
   305
  | check_vars (Abs (_, _, t)) = check_vars t
27205
56c96c02ab79 certify_term: reject qualified frees;
wenzelm
parents: 27195
diff changeset
   306
  | check_vars (Free (x, _)) =
30364
577edc39b501 moved basic algebra of long names from structure NameSpace to Long_Name;
wenzelm
parents: 30343
diff changeset
   307
      if Long_Name.is_qualified x then err ("Malformed variable: " ^ quote x) else ()
18967
ea42ab6c08d1 export consts_of;
wenzelm
parents: 18941
diff changeset
   308
  | check_vars (Var (xi as (_, i), _)) =
ea42ab6c08d1 export consts_of;
wenzelm
parents: 18941
diff changeset
   309
      if i < 0 then err ("Malformed variable: " ^ quote (Term.string_of_vname xi)) else ()
ea42ab6c08d1 export consts_of;
wenzelm
parents: 18941
diff changeset
   310
  | check_vars _ = ();
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   311
14987
699239c7632c tuned certify_term;
wenzelm
parents: 14981
diff changeset
   312
in
699239c7632c tuned certify_term;
wenzelm
parents: 14981
diff changeset
   313
79471
593fdddc6d98 clarified signature;
wenzelm
parents: 79463
diff changeset
   314
fun certify_flags {prop, normalize} context consts thy tm =
251
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   315
  let
79453
fe0fffc5d186 proper check of result from Soft_Type_System.global_purge (amending b2bedb022a75);
wenzelm
parents: 79452
diff changeset
   316
    val tsig = tsig_of thy;
fe0fffc5d186 proper check of result from Soft_Type_System.global_purge (amending b2bedb022a75);
wenzelm
parents: 79452
diff changeset
   317
    fun check_term t =
fe0fffc5d186 proper check of result from Soft_Type_System.global_purge (amending b2bedb022a75);
wenzelm
parents: 79452
diff changeset
   318
      let
fe0fffc5d186 proper check of result from Soft_Type_System.global_purge (amending b2bedb022a75);
wenzelm
parents: 79452
diff changeset
   319
        val _ = check_vars t;
79455
d7f32f04bd13 clarified signature;
wenzelm
parents: 79454
diff changeset
   320
        val t' = Type.certify_types Type.mode_default tsig t;
79453
fe0fffc5d186 proper check of result from Soft_Type_System.global_purge (amending b2bedb022a75);
wenzelm
parents: 79452
diff changeset
   321
        val T = type_check context t';
79471
593fdddc6d98 clarified signature;
wenzelm
parents: 79463
diff changeset
   322
        val t'' = Consts.certify {normalize = normalize} context tsig consts t';
79453
fe0fffc5d186 proper check of result from Soft_Type_System.global_purge (amending b2bedb022a75);
wenzelm
parents: 79452
diff changeset
   323
      in if prop andalso T <> propT then err "Term not of type prop" else (t'', T) end;
fe0fffc5d186 proper check of result from Soft_Type_System.global_purge (amending b2bedb022a75);
wenzelm
parents: 79452
diff changeset
   324
fe0fffc5d186 proper check of result from Soft_Type_System.global_purge (amending b2bedb022a75);
wenzelm
parents: 79452
diff changeset
   325
    val (tm1, ty1) = check_term tm;
fe0fffc5d186 proper check of result from Soft_Type_System.global_purge (amending b2bedb022a75);
wenzelm
parents: 79452
diff changeset
   326
    val tm' = Soft_Type_System.global_purge thy tm1;
fe0fffc5d186 proper check of result from Soft_Type_System.global_purge (amending b2bedb022a75);
wenzelm
parents: 79452
diff changeset
   327
    val (tm2, ty2) = if tm1 = tm' then (tm1, ty1) else check_term tm';
79454
6b6e9af552f5 clarified signature: avoid redundant Term.maxidx_of_term;
wenzelm
parents: 79453
diff changeset
   328
  in if tm = tm2 then (tm, ty2) else (tm2, ty2) end;
169
1b2765146aab extend: cleaned up, adapted for new Syntax.extend;
wenzelm
parents: 155
diff changeset
   329
79451
ef867bf3e6c9 clarified signature;
wenzelm
parents: 79449
diff changeset
   330
fun certify_term thy =
79471
593fdddc6d98 clarified signature;
wenzelm
parents: 79463
diff changeset
   331
  certify_flags {prop = false, normalize = true} (Context.Theory thy) (consts_of thy) thy;
79451
ef867bf3e6c9 clarified signature;
wenzelm
parents: 79449
diff changeset
   332
ef867bf3e6c9 clarified signature;
wenzelm
parents: 79449
diff changeset
   333
fun cert_term_abbrev thy =
79471
593fdddc6d98 clarified signature;
wenzelm
parents: 79463
diff changeset
   334
  #1 o certify_flags {prop = false, normalize = false} (Context.Theory thy) (consts_of thy) thy;
79451
ef867bf3e6c9 clarified signature;
wenzelm
parents: 79449
diff changeset
   335
18967
ea42ab6c08d1 export consts_of;
wenzelm
parents: 18941
diff changeset
   336
val cert_term = #1 oo certify_term;
79451
ef867bf3e6c9 clarified signature;
wenzelm
parents: 79449
diff changeset
   337
ef867bf3e6c9 clarified signature;
wenzelm
parents: 79449
diff changeset
   338
fun cert_prop thy =
79471
593fdddc6d98 clarified signature;
wenzelm
parents: 79463
diff changeset
   339
  #1 o certify_flags {prop = true, normalize = true} (Context.Theory thy) (consts_of thy) thy;
251
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   340
14987
699239c7632c tuned certify_term;
wenzelm
parents: 14981
diff changeset
   341
end;
699239c7632c tuned certify_term;
wenzelm
parents: 14981
diff changeset
   342
251
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   343
18941
18cb1e2ab77d added add_abbrevs(_i);
wenzelm
parents: 18928
diff changeset
   344
(* specifications *)
18cb1e2ab77d added add_abbrevs(_i);
wenzelm
parents: 18928
diff changeset
   345
39133
70d3915c92f0 pretty printing: prefer regular Proof.context over Pretty.pp, which is mostly for special bootstrap purposes involving theory merge, for example;
wenzelm
parents: 37145
diff changeset
   346
fun no_variables kind add addT mk mkT ctxt tm =
21741
5f3d62008bb5 added no_frees;
wenzelm
parents: 21722
diff changeset
   347
  (case (add tm [], addT tm []) of
18941
18cb1e2ab77d added add_abbrevs(_i);
wenzelm
parents: 18928
diff changeset
   348
    ([], []) => tm
25117
74b279146ecb no_variables: tuned error msg;
wenzelm
parents: 25071
diff changeset
   349
  | (frees, tfrees) => error (Pretty.string_of (Pretty.block
74b279146ecb no_variables: tuned error msg;
wenzelm
parents: 25071
diff changeset
   350
      (Pretty.str ("Illegal " ^ kind ^ " variable(s) in term:") :: Pretty.brk 1 ::
39133
70d3915c92f0 pretty printing: prefer regular Proof.context over Pretty.pp, which is mostly for special bootstrap purposes involving theory merge, for example;
wenzelm
parents: 37145
diff changeset
   351
       Pretty.commas
70d3915c92f0 pretty printing: prefer regular Proof.context over Pretty.pp, which is mostly for special bootstrap purposes involving theory merge, for example;
wenzelm
parents: 37145
diff changeset
   352
        (map (Syntax.pretty_term ctxt o mk) frees @ map (Syntax.pretty_typ ctxt o mkT) tfrees)))));
21741
5f3d62008bb5 added no_frees;
wenzelm
parents: 21722
diff changeset
   353
5f3d62008bb5 added no_frees;
wenzelm
parents: 21722
diff changeset
   354
val no_frees = no_variables "free" Term.add_frees Term.add_tfrees Free TFree;
5f3d62008bb5 added no_frees;
wenzelm
parents: 21722
diff changeset
   355
val no_vars = no_variables "schematic" Term.add_vars Term.add_tvars Var TVar;
18941
18cb1e2ab77d added add_abbrevs(_i);
wenzelm
parents: 18928
diff changeset
   356
18cb1e2ab77d added add_abbrevs(_i);
wenzelm
parents: 18928
diff changeset
   357
16337
5734de2f7ace Major cleanup:
wenzelm
parents: 16288
diff changeset
   358
5734de2f7ace Major cleanup:
wenzelm
parents: 16288
diff changeset
   359
(** signature extension functions **)  (*exception ERROR/TYPE*)
386
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   360
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   361
(* add type constructors *)
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   362
47005
421760a1efe7 maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents: 45632
diff changeset
   363
fun add_type ctxt (b, n, mx) thy = thy |> map_sign (fn (syn, tsig, consts) =>
14856
669a9a0e7279 proper treatment of logical types within syntax;
wenzelm
parents: 14828
diff changeset
   364
  let
47005
421760a1efe7 maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents: 45632
diff changeset
   365
    val type_syntax = (Lexicon.mark_type (full_name thy b), Mixfix.make_type n, mx);
80897
5328d67ec647 more explicit context for syn_ext/mixfix operations, but it often degenerates to background theory;
wenzelm
parents: 80896
diff changeset
   366
    val syn' = Syntax.update_type_gram ctxt true Syntax.mode_default [type_syntax] syn;
47005
421760a1efe7 maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents: 45632
diff changeset
   367
    val tsig' = Type.add_type (inherit_naming thy ctxt) (b, n) tsig;
421760a1efe7 maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents: 45632
diff changeset
   368
  in (syn', tsig', consts) end);
16442
1171ecf7fb7e obsolete type sg is now an alias for Context.theory;
wenzelm
parents: 16368
diff changeset
   369
42375
774df7c59508 report Name_Space.declare/define, relatively to context;
wenzelm
parents: 42360
diff changeset
   370
fun add_types_global types thy =
47005
421760a1efe7 maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents: 45632
diff changeset
   371
  fold (add_type (Syntax.init_pretty_global thy)) types thy;
42375
774df7c59508 report Name_Space.declare/define, relatively to context;
wenzelm
parents: 42360
diff changeset
   372
16337
5734de2f7ace Major cleanup:
wenzelm
parents: 16288
diff changeset
   373
5734de2f7ace Major cleanup:
wenzelm
parents: 16288
diff changeset
   374
(* add nonterminals *)
5734de2f7ace Major cleanup:
wenzelm
parents: 16288
diff changeset
   375
47005
421760a1efe7 maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents: 45632
diff changeset
   376
fun add_nonterminals ctxt ns thy = thy |> map_sign (fn (syn, tsig, consts) =>
421760a1efe7 maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents: 45632
diff changeset
   377
  (syn, fold (Type.add_nonterminal (inherit_naming thy ctxt)) ns tsig, consts));
42375
774df7c59508 report Name_Space.declare/define, relatively to context;
wenzelm
parents: 42360
diff changeset
   378
774df7c59508 report Name_Space.declare/define, relatively to context;
wenzelm
parents: 42360
diff changeset
   379
fun add_nonterminals_global ns thy =
774df7c59508 report Name_Space.declare/define, relatively to context;
wenzelm
parents: 42360
diff changeset
   380
  add_nonterminals (Syntax.init_pretty_global thy) ns thy;
386
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   381
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   382
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   383
(* add type abbreviations *)
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   384
47005
421760a1efe7 maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents: 45632
diff changeset
   385
fun add_type_abbrev ctxt abbr thy = thy |> map_sign (fn (syn, tsig, consts) =>
421760a1efe7 maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents: 45632
diff changeset
   386
  (syn, Type.add_abbrev (inherit_naming thy ctxt) abbr tsig, consts));
14784
e65d77313a94 xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents: 14700
diff changeset
   387
e65d77313a94 xxx_typ_raw replace xxx_typ_no_norm forms; prevent duplicate consts declarations in merge; misc cleanup;
wenzelm
parents: 14700
diff changeset
   388
16337
5734de2f7ace Major cleanup:
wenzelm
parents: 16288
diff changeset
   389
(* modify syntax *)
5734de2f7ace Major cleanup:
wenzelm
parents: 16288
diff changeset
   390
80897
5328d67ec647 more explicit context for syn_ext/mixfix operations, but it often degenerates to background theory;
wenzelm
parents: 80896
diff changeset
   391
fun syntax ctxt add mode args thy =
16337
5734de2f7ace Major cleanup:
wenzelm
parents: 16288
diff changeset
   392
  let
80896
d0d0d12cd4cc obsolete --- superseded by Local_Theory.syntax_cmd;
wenzelm
parents: 80748
diff changeset
   393
    fun prep (c, T, mx) = (c, certify_typ_mode Type.mode_syntax thy T, mx)
35129
ed24ba6f69aa discontinued unnamed infix syntax;
wenzelm
parents: 34259
diff changeset
   394
      handle ERROR msg => cat_error msg ("in syntax declaration " ^ quote c);
80897
5328d67ec647 more explicit context for syn_ext/mixfix operations, but it often degenerates to background theory;
wenzelm
parents: 80896
diff changeset
   395
  in thy |> map_syn (Syntax.update_const_gram ctxt add (logical_types thy) mode (map prep args)) end;
5328d67ec647 more explicit context for syn_ext/mixfix operations, but it often degenerates to background theory;
wenzelm
parents: 80896
diff changeset
   396
5328d67ec647 more explicit context for syn_ext/mixfix operations, but it often degenerates to background theory;
wenzelm
parents: 80896
diff changeset
   397
fun syntax_global add mode args thy =
81116
0fb1e2dd4122 first-class support for "unbundle no foobar_syntax" -- avoid redundant "bundle no_foobar_syntax" definitions;
wenzelm
parents: 80897
diff changeset
   398
  let
0fb1e2dd4122 first-class support for "unbundle no foobar_syntax" -- avoid redundant "bundle no_foobar_syntax" definitions;
wenzelm
parents: 80897
diff changeset
   399
    val thy_ctxt = Proof_Context.init_global thy;
0fb1e2dd4122 first-class support for "unbundle no foobar_syntax" -- avoid redundant "bundle no_foobar_syntax" definitions;
wenzelm
parents: 80897
diff changeset
   400
    val add' = Syntax.effective_polarity thy_ctxt add;
0fb1e2dd4122 first-class support for "unbundle no foobar_syntax" -- avoid redundant "bundle no_foobar_syntax" definitions;
wenzelm
parents: 80897
diff changeset
   401
  in syntax thy_ctxt add' mode args thy end;
386
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   402
80897
5328d67ec647 more explicit context for syn_ext/mixfix operations, but it often degenerates to background theory;
wenzelm
parents: 80896
diff changeset
   403
val syntax_deps = update_syn_global Syntax.update_consts;
80748
43c4817375bf support for syntax const dependencies, with minimal integrity checks;
wenzelm
parents: 80074
diff changeset
   404
80897
5328d67ec647 more explicit context for syn_ext/mixfix operations, but it often degenerates to background theory;
wenzelm
parents: 80896
diff changeset
   405
fun type_notation_global add mode args thy =
35412
b8dead547d9e more uniform treatment of syntax for types vs. consts;
wenzelm
parents: 35395
diff changeset
   406
  let
80897
5328d67ec647 more explicit context for syn_ext/mixfix operations, but it often degenerates to background theory;
wenzelm
parents: 80896
diff changeset
   407
    val thy_ctxt = Proof_Context.init_global thy;
81116
0fb1e2dd4122 first-class support for "unbundle no foobar_syntax" -- avoid redundant "bundle no_foobar_syntax" definitions;
wenzelm
parents: 80897
diff changeset
   408
    val add' = Syntax.effective_polarity thy_ctxt add;
35429
afa8cf9e63d8 authentic syntax for classes and type constructors;
wenzelm
parents: 35412
diff changeset
   409
    fun type_syntax (Type (c, args), mx) =
42290
b1f544c84040 discontinued special treatment of structure Lexicon;
wenzelm
parents: 42288
diff changeset
   410
          SOME (Lexicon.mark_type c, Mixfix.make_type (length args), mx)
35412
b8dead547d9e more uniform treatment of syntax for types vs. consts;
wenzelm
parents: 35395
diff changeset
   411
      | type_syntax _ = NONE;
81116
0fb1e2dd4122 first-class support for "unbundle no foobar_syntax" -- avoid redundant "bundle no_foobar_syntax" definitions;
wenzelm
parents: 80897
diff changeset
   412
  in map_syn (Syntax.update_type_gram thy_ctxt add' mode (map_filter type_syntax args)) thy end;
3805
a50d0b5219dd improved types of add_XXX funs (xtyp etc.);
wenzelm
parents: 3791
diff changeset
   413
80897
5328d67ec647 more explicit context for syn_ext/mixfix operations, but it often degenerates to background theory;
wenzelm
parents: 80896
diff changeset
   414
fun notation_global add mode args thy =
25383
2e766dd19e4f notation: based on Syntax.update_const_gram (avoids duplicates);
wenzelm
parents: 25366
diff changeset
   415
  let
80897
5328d67ec647 more explicit context for syn_ext/mixfix operations, but it often degenerates to background theory;
wenzelm
parents: 80896
diff changeset
   416
    val thy_ctxt = Proof_Context.init_global thy;
81116
0fb1e2dd4122 first-class support for "unbundle no foobar_syntax" -- avoid redundant "bundle no_foobar_syntax" definitions;
wenzelm
parents: 80897
diff changeset
   417
    val add' = Syntax.effective_polarity thy_ctxt add;
35255
2cb27605301f authentic syntax for *all* term constants;
wenzelm
parents: 35200
diff changeset
   418
    fun const_syntax (Const (c, _), mx) =
2cb27605301f authentic syntax for *all* term constants;
wenzelm
parents: 35200
diff changeset
   419
          (case try (Consts.type_scheme (consts_of thy)) c of
42290
b1f544c84040 discontinued special treatment of structure Lexicon;
wenzelm
parents: 42288
diff changeset
   420
            SOME T => SOME (Lexicon.mark_const c, T, mx)
35255
2cb27605301f authentic syntax for *all* term constants;
wenzelm
parents: 35200
diff changeset
   421
          | NONE => NONE)
25383
2e766dd19e4f notation: based on Syntax.update_const_gram (avoids duplicates);
wenzelm
parents: 25366
diff changeset
   422
      | const_syntax _ = NONE;
81116
0fb1e2dd4122 first-class support for "unbundle no foobar_syntax" -- avoid redundant "bundle no_foobar_syntax" definitions;
wenzelm
parents: 80897
diff changeset
   423
  in syntax thy_ctxt add' mode (map_filter const_syntax args) thy end;
19658
0cff73279f34 added add_const_syntax, add_consts_authentic;
wenzelm
parents: 19642
diff changeset
   424
16337
5734de2f7ace Major cleanup:
wenzelm
parents: 16288
diff changeset
   425
5734de2f7ace Major cleanup:
wenzelm
parents: 16288
diff changeset
   426
(* add constants *)
386
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   427
17995
8b9c6af78a67 consts: monomorphic;
wenzelm
parents: 17496
diff changeset
   428
local
8b9c6af78a67 consts: monomorphic;
wenzelm
parents: 17496
diff changeset
   429
45427
fca432074fb2 sort assignment before simultaneous term_check, not isolated parse_term;
wenzelm
parents: 43794
diff changeset
   430
fun gen_add_consts prep_typ ctxt raw_args thy =
386
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   431
  let
45427
fca432074fb2 sort assignment before simultaneous term_check, not isolated parse_term;
wenzelm
parents: 43794
diff changeset
   432
    val prepT = Type.no_tvars o Term.no_dummyT o certify_typ thy o prep_typ ctxt;
35129
ed24ba6f69aa discontinued unnamed infix syntax;
wenzelm
parents: 34259
diff changeset
   433
    fun prep (b, raw_T, mx) =
19658
0cff73279f34 added add_const_syntax, add_consts_authentic;
wenzelm
parents: 19642
diff changeset
   434
      let
28965
1de908189869 cleaned up binding module and related code
haftmann
parents: 28941
diff changeset
   435
        val c = full_name thy b;
19658
0cff73279f34 added add_const_syntax, add_consts_authentic;
wenzelm
parents: 19642
diff changeset
   436
        val T = (prepT raw_T handle TYPE (msg, _, _) => error msg) handle ERROR msg =>
42381
309ec68442c6 added Binding.print convenience, which includes quote already;
wenzelm
parents: 42376
diff changeset
   437
          cat_error msg ("in declaration of constant " ^ Binding.print b);
35845
e5980f0ad025 renamed varify/unvarify operations to varify_global/unvarify_global to emphasize that these only work in a global situation;
wenzelm
parents: 35801
diff changeset
   438
        val T' = Logic.varifyT_global T;
42290
b1f544c84040 discontinued special treatment of structure Lexicon;
wenzelm
parents: 42288
diff changeset
   439
      in ((b, T'), (Lexicon.mark_const c, T', mx), Const (c, T)) end;
16337
5734de2f7ace Major cleanup:
wenzelm
parents: 16288
diff changeset
   440
    val args = map prep raw_args;
16442
1171ecf7fb7e obsolete type sg is now an alias for Context.theory;
wenzelm
parents: 16368
diff changeset
   441
  in
1171ecf7fb7e obsolete type sg is now an alias for Context.theory;
wenzelm
parents: 16368
diff changeset
   442
    thy
47005
421760a1efe7 maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents: 45632
diff changeset
   443
    |> map_consts (fold (Consts.declare (inherit_naming thy ctxt) o #1) args)
80897
5328d67ec647 more explicit context for syn_ext/mixfix operations, but it often degenerates to background theory;
wenzelm
parents: 80896
diff changeset
   444
    |> syntax ctxt true Syntax.mode_default (map #2 args)
24959
119793c84647 replaced Sign.add_consts_authentic by Sign.declare_const;
wenzelm
parents: 24949
diff changeset
   445
    |> pair (map #3 args)
16442
1171ecf7fb7e obsolete type sg is now an alias for Context.theory;
wenzelm
parents: 16368
diff changeset
   446
  end;
386
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   447
17995
8b9c6af78a67 consts: monomorphic;
wenzelm
parents: 17496
diff changeset
   448
in
8b9c6af78a67 consts: monomorphic;
wenzelm
parents: 17496
diff changeset
   449
42375
774df7c59508 report Name_Space.declare/define, relatively to context;
wenzelm
parents: 42360
diff changeset
   450
fun add_consts args thy =
56239
17df7145a871 tuned signature;
wenzelm
parents: 56057
diff changeset
   451
  #2 (gen_add_consts (K I) (Proof_Context.init_global thy) args thy);
45427
fca432074fb2 sort assignment before simultaneous term_check, not isolated parse_term;
wenzelm
parents: 43794
diff changeset
   452
56239
17df7145a871 tuned signature;
wenzelm
parents: 56057
diff changeset
   453
fun add_consts_cmd args thy =
17df7145a871 tuned signature;
wenzelm
parents: 56057
diff changeset
   454
  #2 (gen_add_consts Syntax.read_typ (Proof_Context.init_global thy) args thy);
24959
119793c84647 replaced Sign.add_consts_authentic by Sign.declare_const;
wenzelm
parents: 24949
diff changeset
   455
42376
c3abf2c3f541 eliminated obsolete markup -- superseded by generic "entity" markup;
wenzelm
parents: 42375
diff changeset
   456
fun declare_const ctxt ((b, T), mx) = yield_singleton (gen_add_consts (K I) ctxt) (b, T, mx);
42375
774df7c59508 report Name_Space.declare/define, relatively to context;
wenzelm
parents: 42360
diff changeset
   457
fun declare_const_global arg thy = declare_const (Proof_Context.init_global thy) arg thy;
774df7c59508 report Name_Space.declare/define, relatively to context;
wenzelm
parents: 42360
diff changeset
   458
17995
8b9c6af78a67 consts: monomorphic;
wenzelm
parents: 17496
diff changeset
   459
end;
8b9c6af78a67 consts: monomorphic;
wenzelm
parents: 17496
diff changeset
   460
386
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   461
25049
ec0547a4fcf0 add_abbrev: removed Logic.legacy_varifyT, do not unvarify result (again);
wenzelm
parents: 25042
diff changeset
   462
(* abbreviations *)
18941
18cb1e2ab77d added add_abbrevs(_i);
wenzelm
parents: 18928
diff changeset
   463
47008
8b13ebf3eda4 comment;
wenzelm
parents: 47006
diff changeset
   464
fun add_abbrev mode (b, raw_t) thy =  (* FIXME proper ctxt (?) *)
18941
18cb1e2ab77d added add_abbrevs(_i);
wenzelm
parents: 18928
diff changeset
   465
  let
39133
70d3915c92f0 pretty printing: prefer regular Proof.context over Pretty.pp, which is mostly for special bootstrap purposes involving theory merge, for example;
wenzelm
parents: 37145
diff changeset
   466
    val ctxt = Syntax.init_pretty_global thy;
70d3915c92f0 pretty printing: prefer regular Proof.context over Pretty.pp, which is mostly for special bootstrap purposes involving theory merge, for example;
wenzelm
parents: 37145
diff changeset
   467
    val prep_tm = no_frees ctxt o Term.no_dummy_patterns o cert_term_abbrev thy;
19806
f860b7a98445 renamed Type.(un)varifyT to Logic.(un)varifyT;
wenzelm
parents: 19679
diff changeset
   468
    val t = (prep_tm raw_t handle TYPE (msg, _, _) => error msg | TERM (msg, _) => error msg)
42381
309ec68442c6 added Binding.print convenience, which includes quote already;
wenzelm
parents: 42376
diff changeset
   469
      handle ERROR msg => cat_error msg ("in constant abbreviation " ^ Binding.print b);
21696
f3c78a133fbb simplified add_abbrevs: no mixfix;
wenzelm
parents: 21681
diff changeset
   470
    val (res, consts') = consts_of thy
47005
421760a1efe7 maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents: 45632
diff changeset
   471
      |> Consts.abbreviate (inherit_naming thy ctxt) (tsig_of thy) mode (b, t);
25049
ec0547a4fcf0 add_abbrev: removed Logic.legacy_varifyT, do not unvarify result (again);
wenzelm
parents: 25042
diff changeset
   472
  in (res, thy |> map_consts (K consts')) end;
ec0547a4fcf0 add_abbrev: removed Logic.legacy_varifyT, do not unvarify result (again);
wenzelm
parents: 25042
diff changeset
   473
ec0547a4fcf0 add_abbrev: removed Logic.legacy_varifyT, do not unvarify result (again);
wenzelm
parents: 25042
diff changeset
   474
fun revert_abbrev mode c = map_consts (Consts.revert_abbrev mode c);
18941
18cb1e2ab77d added add_abbrevs(_i);
wenzelm
parents: 18928
diff changeset
   475
18cb1e2ab77d added add_abbrevs(_i);
wenzelm
parents: 18928
diff changeset
   476
16941
0bda949449ee added add_const_constraint(_i), const_constraint;
wenzelm
parents: 16894
diff changeset
   477
(* add constraints *)
0bda949449ee added add_const_constraint(_i), const_constraint;
wenzelm
parents: 16894
diff changeset
   478
24761
d762ab297a07 removed obsolete external interface add_const_constraint;
wenzelm
parents: 24732
diff changeset
   479
fun add_const_constraint (c, opt_T) thy =
16941
0bda949449ee added add_const_constraint(_i), const_constraint;
wenzelm
parents: 16894
diff changeset
   480
  let
19099
100bf66d7e85 add_const_constraint(_i): demand TFrees instead of TVars, optional type (i.e. may delete constraints);
wenzelm
parents: 19054
diff changeset
   481
    fun prepT raw_T =
35845
e5980f0ad025 renamed varify/unvarify operations to varify_global/unvarify_global to emphasize that these only work in a global situation;
wenzelm
parents: 35801
diff changeset
   482
      let val T = Logic.varifyT_global (Type.no_tvars (Term.no_dummyT (certify_typ thy raw_T)))
19099
100bf66d7e85 add_const_constraint(_i): demand TFrees instead of TVars, optional type (i.e. may delete constraints);
wenzelm
parents: 19054
diff changeset
   483
      in cert_term thy (Const (c, T)); T end
16941
0bda949449ee added add_const_constraint(_i), const_constraint;
wenzelm
parents: 16894
diff changeset
   484
      handle TYPE (msg, _, _) => error msg;
19099
100bf66d7e85 add_const_constraint(_i): demand TFrees instead of TVars, optional type (i.e. may delete constraints);
wenzelm
parents: 19054
diff changeset
   485
  in thy |> map_consts (Consts.constrain (c, Option.map prepT opt_T)) end;
16941
0bda949449ee added add_const_constraint(_i), const_constraint;
wenzelm
parents: 16894
diff changeset
   486
0bda949449ee added add_const_constraint(_i), const_constraint;
wenzelm
parents: 16894
diff changeset
   487
19513
77ff7cd602d7 removed add_classes/classrel/arities (superceded by AxClass.axiomatize_class/classrel/arity);
wenzelm
parents: 19482
diff changeset
   488
(* primitive classes and arities *)
386
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   489
19513
77ff7cd602d7 removed add_classes/classrel/arities (superceded by AxClass.axiomatize_class/classrel/arity);
wenzelm
parents: 19482
diff changeset
   490
fun primitive_class (bclass, classes) thy =
42387
b1965c8992c8 pass plain Proof.context for pretty printing;
wenzelm
parents: 42383
diff changeset
   491
  thy
47005
421760a1efe7 maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents: 45632
diff changeset
   492
  |> map_sign (fn (syn, tsig, consts) =>
421760a1efe7 maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents: 45632
diff changeset
   493
      let val tsig' = Type.add_class (Context.Theory thy) (bclass, classes) tsig;
421760a1efe7 maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents: 45632
diff changeset
   494
      in (syn, tsig', consts) end)
56239
17df7145a871 tuned signature;
wenzelm
parents: 56057
diff changeset
   495
  |> add_consts [(Binding.map_name Logic.const_of_class bclass, Term.a_itselfT --> propT, NoSyn)];
3791
c5db2c87a646 now supports qualified names (intern vs. extern) !!!
wenzelm
parents: 3552
diff changeset
   496
42387
b1965c8992c8 pass plain Proof.context for pretty printing;
wenzelm
parents: 42383
diff changeset
   497
fun primitive_classrel arg thy =
61262
7bd1eb4b056e tuned signature: eliminated pointless type Context.pretty;
wenzelm
parents: 59990
diff changeset
   498
  thy |> map_tsig (Type.add_classrel (Context.Theory thy) arg);
42387
b1965c8992c8 pass plain Proof.context for pretty printing;
wenzelm
parents: 42383
diff changeset
   499
b1965c8992c8 pass plain Proof.context for pretty printing;
wenzelm
parents: 42383
diff changeset
   500
fun primitive_arity arg thy =
61262
7bd1eb4b056e tuned signature: eliminated pointless type Context.pretty;
wenzelm
parents: 59990
diff changeset
   501
  thy |> map_tsig (Type.add_arity (Context.Theory thy) arg);
421
95e1d4faa863 added add_classrel;
wenzelm
parents: 418
diff changeset
   502
95e1d4faa863 added add_classrel;
wenzelm
parents: 418
diff changeset
   503
14645
83776a9f0a9c support for advanced translation functions;
wenzelm
parents: 14383
diff changeset
   504
(* add translation functions *)
83776a9f0a9c support for advanced translation functions;
wenzelm
parents: 14383
diff changeset
   505
15746
44260d72de35 added del_modesyntax(_i);
wenzelm
parents: 15723
diff changeset
   506
local
44260d72de35 added del_modesyntax(_i);
wenzelm
parents: 15723
diff changeset
   507
42288
2074b31650e6 discontinued special treatment of structure Syntax_Ext (formerly Syn_Ext);
wenzelm
parents: 42287
diff changeset
   508
fun mk trs = map Syntax_Ext.mk_trfun trs;
15746
44260d72de35 added del_modesyntax(_i);
wenzelm
parents: 15723
diff changeset
   509
44260d72de35 added del_modesyntax(_i);
wenzelm
parents: 15723
diff changeset
   510
in
44260d72de35 added del_modesyntax(_i);
wenzelm
parents: 15723
diff changeset
   511
80897
5328d67ec647 more explicit context for syn_ext/mixfix operations, but it often degenerates to background theory;
wenzelm
parents: 80896
diff changeset
   512
fun parse_ast_translation atrs = update_syn_global Syntax.update_trfuns (mk atrs, [], [], []);
5328d67ec647 more explicit context for syn_ext/mixfix operations, but it often degenerates to background theory;
wenzelm
parents: 80896
diff changeset
   513
fun parse_translation trs = update_syn_global Syntax.update_trfuns ([], mk trs, [], []);
52143
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 47008
diff changeset
   514
fun print_translation tr's =
80897
5328d67ec647 more explicit context for syn_ext/mixfix operations, but it often degenerates to background theory;
wenzelm
parents: 80896
diff changeset
   515
  update_syn_global Syntax.update_trfuns ([], [], mk (map (apsnd Syntax_Trans.non_typed_tr') tr's), []);
5328d67ec647 more explicit context for syn_ext/mixfix operations, but it often degenerates to background theory;
wenzelm
parents: 80896
diff changeset
   516
fun typed_print_translation tr's = update_syn_global Syntax.update_trfuns ([], [], mk tr's, []);
5328d67ec647 more explicit context for syn_ext/mixfix operations, but it often degenerates to background theory;
wenzelm
parents: 80896
diff changeset
   517
fun print_ast_translation atr's = update_syn_global Syntax.update_trfuns ([], [], [], mk atr's);
14645
83776a9f0a9c support for advanced translation functions;
wenzelm
parents: 14383
diff changeset
   518
15746
44260d72de35 added del_modesyntax(_i);
wenzelm
parents: 15723
diff changeset
   519
end;
44260d72de35 added del_modesyntax(_i);
wenzelm
parents: 15723
diff changeset
   520
14645
83776a9f0a9c support for advanced translation functions;
wenzelm
parents: 14383
diff changeset
   521
19258
ada9977f1e98 declared_const: check for type constraint only, i.e. admit abbreviations as well;
wenzelm
parents: 19250
diff changeset
   522
(* translation rules *)
4619
72edc2a9200f fixed add_trrules: intern root;
wenzelm
parents: 4568
diff changeset
   523
81594
7e1b66416b7f commands 'syntax_types' and 'syntax_consts' now work in a local theory context;
wenzelm
parents: 81593
diff changeset
   524
fun check_syntax_dep ctxt s =
81591
d570d215e380 syntax translations now work in a local theory context;
wenzelm
parents: 81590
diff changeset
   525
  let
d570d215e380 syntax translations now work in a local theory context;
wenzelm
parents: 81590
diff changeset
   526
    val thy = Proof_Context.theory_of ctxt;
81594
7e1b66416b7f commands 'syntax_types' and 'syntax_consts' now work in a local theory context;
wenzelm
parents: 81593
diff changeset
   527
    fun print_type c = uncurry Markup.markup (Name_Space.markup_extern ctxt (type_space thy) c);
7e1b66416b7f commands 'syntax_types' and 'syntax_consts' now work in a local theory context;
wenzelm
parents: 81593
diff changeset
   528
    fun print_const c = uncurry Markup.markup (Name_Space.markup_extern ctxt (const_space thy) c);
7e1b66416b7f commands 'syntax_types' and 'syntax_consts' now work in a local theory context;
wenzelm
parents: 81593
diff changeset
   529
  in
81596
af21a61dadad clarified signature (see also 2157039256d3);
wenzelm
parents: 81594
diff changeset
   530
    s |> Lexicon.unmark_entity
81594
7e1b66416b7f commands 'syntax_types' and 'syntax_consts' now work in a local theory context;
wenzelm
parents: 81593
diff changeset
   531
     {case_class = K (),
7e1b66416b7f commands 'syntax_types' and 'syntax_consts' now work in a local theory context;
wenzelm
parents: 81593
diff changeset
   532
      case_type = fn c =>
7e1b66416b7f commands 'syntax_types' and 'syntax_consts' now work in a local theory context;
wenzelm
parents: 81593
diff changeset
   533
        if declared_tyname thy c then () else error ("Not a global type: " ^ quote (print_type c)),
7e1b66416b7f commands 'syntax_types' and 'syntax_consts' now work in a local theory context;
wenzelm
parents: 81593
diff changeset
   534
      case_const = fn c =>
7e1b66416b7f commands 'syntax_types' and 'syntax_consts' now work in a local theory context;
wenzelm
parents: 81593
diff changeset
   535
        if declared_const thy c then () else error ("Not a global const: " ^ quote (print_const c)),
7e1b66416b7f commands 'syntax_types' and 'syntax_consts' now work in a local theory context;
wenzelm
parents: 81593
diff changeset
   536
      case_fixed = fn x => error ("Bad local variable: " ^ quote x),
7e1b66416b7f commands 'syntax_types' and 'syntax_consts' now work in a local theory context;
wenzelm
parents: 81593
diff changeset
   537
      case_default = K ()}
7e1b66416b7f commands 'syntax_types' and 'syntax_consts' now work in a local theory context;
wenzelm
parents: 81593
diff changeset
   538
  end;
81591
d570d215e380 syntax translations now work in a local theory context;
wenzelm
parents: 81590
diff changeset
   539
81594
7e1b66416b7f commands 'syntax_types' and 'syntax_consts' now work in a local theory context;
wenzelm
parents: 81593
diff changeset
   540
fun check_translations ctxt =
7e1b66416b7f commands 'syntax_types' and 'syntax_consts' now work in a local theory context;
wenzelm
parents: 81593
diff changeset
   541
  let
81591
d570d215e380 syntax translations now work in a local theory context;
wenzelm
parents: 81590
diff changeset
   542
    fun check_ast (Ast.Appl asts) = List.app check_ast asts
d570d215e380 syntax translations now work in a local theory context;
wenzelm
parents: 81590
diff changeset
   543
      | check_ast (Ast.Variable _) = ()
81594
7e1b66416b7f commands 'syntax_types' and 'syntax_consts' now work in a local theory context;
wenzelm
parents: 81593
diff changeset
   544
      | check_ast (Ast.Constant s) = check_syntax_dep ctxt s;
81591
d570d215e380 syntax translations now work in a local theory context;
wenzelm
parents: 81590
diff changeset
   545
  in List.app (ignore o Syntax.map_trrule (tap check_ast)) end;
d570d215e380 syntax translations now work in a local theory context;
wenzelm
parents: 81590
diff changeset
   546
d570d215e380 syntax translations now work in a local theory context;
wenzelm
parents: 81590
diff changeset
   547
fun translations ctxt add args thy =
d570d215e380 syntax translations now work in a local theory context;
wenzelm
parents: 81590
diff changeset
   548
  (check_translations ctxt args; map_syn (Syntax.update_trrules ctxt add args) thy);
d570d215e380 syntax translations now work in a local theory context;
wenzelm
parents: 81590
diff changeset
   549
d570d215e380 syntax translations now work in a local theory context;
wenzelm
parents: 81590
diff changeset
   550
fun translations_global add args thy =
d570d215e380 syntax translations now work in a local theory context;
wenzelm
parents: 81590
diff changeset
   551
  let
d570d215e380 syntax translations now work in a local theory context;
wenzelm
parents: 81590
diff changeset
   552
    val thy_ctxt = Proof_Context.init_global thy;
d570d215e380 syntax translations now work in a local theory context;
wenzelm
parents: 81590
diff changeset
   553
    val add' = Syntax.effective_polarity thy_ctxt add;
d570d215e380 syntax translations now work in a local theory context;
wenzelm
parents: 81590
diff changeset
   554
  in translations thy_ctxt add' args thy end;
386
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   555
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   556
26667
660b69b3c28a removed obsolete SIGN_THEORY -- no name aliases in structure Theory;
wenzelm
parents: 26637
diff changeset
   557
(* naming *)
6546
995a66249a9b theory data: copy;
wenzelm
parents: 6311
diff changeset
   558
59886
e0dc738eb08c support for explicit scope of private entries;
wenzelm
parents: 59880
diff changeset
   559
val get_scope = Name_Space.get_scope o naming_of;
e0dc738eb08c support for explicit scope of private entries;
wenzelm
parents: 59880
diff changeset
   560
e0dc738eb08c support for explicit scope of private entries;
wenzelm
parents: 59880
diff changeset
   561
fun new_scope thy =
e0dc738eb08c support for explicit scope of private entries;
wenzelm
parents: 59880
diff changeset
   562
  let
e0dc738eb08c support for explicit scope of private entries;
wenzelm
parents: 59880
diff changeset
   563
    val (scope, naming') = Name_Space.new_scope (naming_of thy);
e0dc738eb08c support for explicit scope of private entries;
wenzelm
parents: 59880
diff changeset
   564
    val thy' = map_naming (K naming') thy;
e0dc738eb08c support for explicit scope of private entries;
wenzelm
parents: 59880
diff changeset
   565
  in (scope, thy') end;
e0dc738eb08c support for explicit scope of private entries;
wenzelm
parents: 59880
diff changeset
   566
33724
5ee13e0428d2 uniform new_group/reset_group;
wenzelm
parents: 33385
diff changeset
   567
val new_group = map_naming Name_Space.new_group;
5ee13e0428d2 uniform new_group/reset_group;
wenzelm
parents: 33385
diff changeset
   568
val reset_group = map_naming Name_Space.reset_group;
5ee13e0428d2 uniform new_group/reset_group;
wenzelm
parents: 33385
diff changeset
   569
33095
bbd52d2f8696 renamed NameSpace to Name_Space -- also to emphasize its subtle change in semantics;
wenzelm
parents: 32789
diff changeset
   570
val add_path = map_naming o Name_Space.add_path;
bbd52d2f8696 renamed NameSpace to Name_Space -- also to emphasize its subtle change in semantics;
wenzelm
parents: 32789
diff changeset
   571
val root_path = map_naming Name_Space.root_path;
bbd52d2f8696 renamed NameSpace to Name_Space -- also to emphasize its subtle change in semantics;
wenzelm
parents: 32789
diff changeset
   572
val parent_path = map_naming Name_Space.parent_path;
bbd52d2f8696 renamed NameSpace to Name_Space -- also to emphasize its subtle change in semantics;
wenzelm
parents: 32789
diff changeset
   573
val mandatory_path = map_naming o Name_Space.mandatory_path;
35200
aaddb2b526d6 more systematic treatment of qualified names derived from binding;
wenzelm
parents: 35129
diff changeset
   574
val qualified_path = map_naming oo Name_Space.qualified_path;
6546
995a66249a9b theory data: copy;
wenzelm
parents: 6311
diff changeset
   575
77889
5db014c36f42 clarified signature: explicitly distinguish theory_base_name vs. theory_long_name;
wenzelm
parents: 74561
diff changeset
   576
fun local_path thy = thy |> root_path |> add_path (Context.theory_base_name thy);
16442
1171ecf7fb7e obsolete type sg is now an alias for Context.theory;
wenzelm
parents: 16368
diff changeset
   577
72053
4ed33ea8d957 prefer conservative extend/merge of theory naming;
wenzelm
parents: 71257
diff changeset
   578
fun init_naming thy =
4ed33ea8d957 prefer conservative extend/merge of theory naming;
wenzelm
parents: 71257
diff changeset
   579
  let
4ed33ea8d957 prefer conservative extend/merge of theory naming;
wenzelm
parents: 71257
diff changeset
   580
    val theory_naming = Name_Space.global_naming
4ed33ea8d957 prefer conservative extend/merge of theory naming;
wenzelm
parents: 71257
diff changeset
   581
      |> Name_Space.set_theory_long_name (Context.theory_long_name thy);
4ed33ea8d957 prefer conservative extend/merge of theory naming;
wenzelm
parents: 71257
diff changeset
   582
  in map_naming (K theory_naming) thy end;
71155
25b872d1d421 clarified signature;
wenzelm
parents: 70364
diff changeset
   583
59923
b21c82422d65 support private scope for individual local theory commands;
wenzelm
parents: 59896
diff changeset
   584
val private_scope = map_naming o Name_Space.private_scope;
59896
e563b0ee0331 tuned signature;
wenzelm
parents: 59886
diff changeset
   585
val private = map_naming o Name_Space.private;
59990
a81dc82ecba3 clarified keyword 'qualified' in accordance to a similar keyword from Haskell (despite unrelated Binding.qualified in Isabelle/ML);
wenzelm
parents: 59939
diff changeset
   586
val qualified_scope = map_naming o Name_Space.qualified_scope;
a81dc82ecba3 clarified keyword 'qualified' in accordance to a similar keyword from Haskell (despite unrelated Binding.qualified in Isabelle/ML);
wenzelm
parents: 59939
diff changeset
   587
val qualified = map_naming o Name_Space.qualified;
59880
30687c3f2b10 clarified role of naming for background theory: transform_binding (e.g. for "concealed" flag) uses naming of hypothetical context;
wenzelm
parents: 59841
diff changeset
   588
val concealed = map_naming Name_Space.concealed;
30687c3f2b10 clarified role of naming for background theory: transform_binding (e.g. for "concealed" flag) uses naming of hypothetical context;
wenzelm
parents: 59841
diff changeset
   589
6546
995a66249a9b theory data: copy;
wenzelm
parents: 6311
diff changeset
   590
16337
5734de2f7ace Major cleanup:
wenzelm
parents: 16288
diff changeset
   591
(* hide names *)
386
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   592
26667
660b69b3c28a removed obsolete SIGN_THEORY -- no name aliases in structure Theory;
wenzelm
parents: 26637
diff changeset
   593
val hide_class = map_tsig oo Type.hide_class;
660b69b3c28a removed obsolete SIGN_THEORY -- no name aliases in structure Theory;
wenzelm
parents: 26637
diff changeset
   594
val hide_type = map_tsig oo Type.hide_type;
660b69b3c28a removed obsolete SIGN_THEORY -- no name aliases in structure Theory;
wenzelm
parents: 26637
diff changeset
   595
val hide_const = map_consts oo Consts.hide;
17343
098db1bc1e59 added hide_names(_i) (from isar_thy.ML);
wenzelm
parents: 17221
diff changeset
   596
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   597
end;