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