src/Pure/sign.ML
author clasohm
Fri, 03 Mar 1995 12:34:57 +0100
changeset 926 9d1348498c36
parent 922 196ca0973a6d
child 949 83c588d6fee9
permissions -rw-r--r--
fixed a bug in infer_types/exn_type_msg
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
251
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
     5
The abstract type "sg" of signatures.
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     6
*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     7
19
929ad32d63fc Pure/ROOT.ML
wenzelm
parents: 0
diff changeset
     8
signature SIGN =
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     9
sig
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    10
  structure Symtab: SYMTAB
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    11
  structure Syntax: SYNTAX
251
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
    12
  structure Type: TYPE
143
f8152ca36cd5 Sign.extend: Syntax.extend now called with read_ty;
wenzelm
parents: 19
diff changeset
    13
  sharing Symtab = Type.Symtab
562
e9572d03b724 added pretty_sg;
wenzelm
parents: 421
diff changeset
    14
  local open Type Syntax in
251
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
    15
    type sg
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
    16
    val rep_sg: sg ->
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
    17
      {tsig: type_sig,
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
    18
       const_tab: typ Symtab.table,
386
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
    19
       syn: syntax,
251
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
    20
       stamps: string ref list}
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
    21
    val subsig: sg * sg -> bool
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
    22
    val eq_sg: sg * sg -> bool
386
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
    23
    val is_draft: sg -> bool
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
    24
    val const_type: sg -> string -> typ option
402
16a8fe4f2250 added subsort, norm_sort, classes;
wenzelm
parents: 386
diff changeset
    25
    val classes: sg -> class list
583
550292083e66 minor internal changes;
wenzelm
parents: 573
diff changeset
    26
    val subsort: sg -> sort * sort -> bool
550292083e66 minor internal changes;
wenzelm
parents: 573
diff changeset
    27
    val norm_sort: sg -> sort -> sort
251
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
    28
    val print_sg: sg -> unit
562
e9572d03b724 added pretty_sg;
wenzelm
parents: 421
diff changeset
    29
    val pretty_sg: sg -> Pretty.T
251
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
    30
    val pprint_sg: sg -> pprint_args -> unit
386
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
    31
    val pretty_term: sg -> term -> Pretty.T
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
    32
    val pretty_typ: sg -> typ -> Pretty.T
620
f787eb061618 exported pretty_sort;
wenzelm
parents: 583
diff changeset
    33
    val pretty_sort: sort -> Pretty.T
251
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
    34
    val string_of_term: sg -> term -> string
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
    35
    val string_of_typ: sg -> typ -> string
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
    36
    val pprint_term: sg -> term -> pprint_args -> unit
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
    37
    val pprint_typ: sg -> typ -> pprint_args -> unit
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
    38
    val certify_typ: sg -> typ -> typ
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
    39
    val certify_term: sg -> term -> term * typ * int
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
    40
    val read_typ: sg * (indexname -> sort option) -> string -> typ
562
e9572d03b724 added pretty_sg;
wenzelm
parents: 421
diff changeset
    41
    val infer_types: sg -> (indexname -> typ option) ->
623
ca9f5dbab880 added print_msg;
clasohm
parents: 620
diff changeset
    42
      (indexname -> sort option) -> bool -> term list * typ ->
ca9f5dbab880 added print_msg;
clasohm
parents: 620
diff changeset
    43
      int * term * (indexname * typ) list
562
e9572d03b724 added pretty_sg;
wenzelm
parents: 421
diff changeset
    44
    val add_classes: (class * class list) list -> sg -> sg
421
95e1d4faa863 added add_classrel;
wenzelm
parents: 418
diff changeset
    45
    val add_classrel: (class * class) list -> sg -> sg
386
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
    46
    val add_defsort: sort -> sg -> sg
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
    47
    val add_types: (string * int * mixfix) list -> sg -> sg
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
    48
    val add_tyabbrs: (string * string list * string * mixfix) list -> sg -> sg
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
    49
    val add_tyabbrs_i: (string * string list * typ * mixfix) list -> sg -> sg
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
    50
    val add_arities: (string * sort list * sort) list -> sg -> sg
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
    51
    val add_consts: (string * string * mixfix) list -> sg -> sg
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
    52
    val add_consts_i: (string * typ * mixfix) list -> sg -> sg
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
    53
    val add_syntax: (string * string * mixfix) list -> sg -> sg
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
    54
    val add_syntax_i: (string * typ * mixfix) list -> sg -> sg
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
    55
    val add_trfuns:
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
    56
      (string * (ast list -> ast)) list *
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
    57
      (string * (term list -> term)) list *
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
    58
      (string * (term list -> term)) list *
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
    59
      (string * (ast list -> ast)) list -> sg -> sg
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
    60
    val add_trrules: xrule list -> sg -> sg
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
    61
    val add_name: string -> sg -> sg
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
    62
    val make_draft: sg -> sg
251
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
    63
    val merge: sg * sg -> sg
922
196ca0973a6d added CPure (curried functions) and ProtoPure (ancestor of Pure and CPure)
clasohm
parents: 901
diff changeset
    64
    val proto_pure: sg
251
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
    65
    val pure: sg
922
196ca0973a6d added CPure (curried functions) and ProtoPure (ancestor of Pure and CPure)
clasohm
parents: 901
diff changeset
    66
    val cpure: sg
386
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
    67
    val const_of_class: class -> string
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
    68
    val class_of_const: string -> class
251
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
    69
  end
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    70
end;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    71
251
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
    72
functor SignFun(structure Syntax: SYNTAX and Type: TYPE): SIGN =
143
f8152ca36cd5 Sign.extend: Syntax.extend now called with read_ty;
wenzelm
parents: 19
diff changeset
    73
struct
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    74
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    75
structure Symtab = Type.Symtab;
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    76
structure Syntax = Syntax;
386
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
    77
structure BasicSyntax: BASIC_SYNTAX = Syntax;
251
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
    78
structure Pretty = Syntax.Pretty;
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
    79
structure Type = Type;
562
e9572d03b724 added pretty_sg;
wenzelm
parents: 421
diff changeset
    80
open BasicSyntax Type;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    81
143
f8152ca36cd5 Sign.extend: Syntax.extend now called with read_ty;
wenzelm
parents: 19
diff changeset
    82
251
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
    83
(** datatype sg **)
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
    84
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
    85
(*the "ref" in stamps ensures that no two signatures are identical -- it is
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
    86
  impossible to forge a signature*)
143
f8152ca36cd5 Sign.extend: Syntax.extend now called with read_ty;
wenzelm
parents: 19
diff changeset
    87
19
929ad32d63fc Pure/ROOT.ML
wenzelm
parents: 0
diff changeset
    88
datatype sg =
143
f8152ca36cd5 Sign.extend: Syntax.extend now called with read_ty;
wenzelm
parents: 19
diff changeset
    89
  Sg of {
251
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
    90
    tsig: type_sig,                 (*order-sorted signature of types*)
143
f8152ca36cd5 Sign.extend: Syntax.extend now called with read_ty;
wenzelm
parents: 19
diff changeset
    91
    const_tab: typ Symtab.table,    (*types of constants*)
f8152ca36cd5 Sign.extend: Syntax.extend now called with read_ty;
wenzelm
parents: 19
diff changeset
    92
    syn: Syntax.syntax,             (*syntax for parsing and printing*)
f8152ca36cd5 Sign.extend: Syntax.extend now called with read_ty;
wenzelm
parents: 19
diff changeset
    93
    stamps: string ref list};       (*unique theory indentifier*)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    94
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    95
fun rep_sg (Sg args) = args;
402
16a8fe4f2250 added subsort, norm_sort, classes;
wenzelm
parents: 386
diff changeset
    96
val tsig_of = #tsig o rep_sg;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    97
206
0d624d1ba9cc added subsig: sg * sg -> bool to test if one signature is contained in another.
nipkow
parents: 200
diff changeset
    98
402
16a8fe4f2250 added subsort, norm_sort, classes;
wenzelm
parents: 386
diff changeset
    99
(* stamps *)
16a8fe4f2250 added subsort, norm_sort, classes;
wenzelm
parents: 386
diff changeset
   100
386
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   101
fun is_draft (Sg {stamps = ref "#" :: _, ...}) = true
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   102
  | is_draft _ = false;
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   103
251
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   104
fun subsig (Sg {stamps = s1, ...}, Sg {stamps = s2, ...}) = s1 subset s2;
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   105
266
3fe01df1a614 improved eq_sg;
wenzelm
parents: 251
diff changeset
   106
fun eq_sg (Sg {stamps = s1, ...}, Sg {stamps = s2, ...}) = eq_set (s1, s2);
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   107
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   108
402
16a8fe4f2250 added subsort, norm_sort, classes;
wenzelm
parents: 386
diff changeset
   109
(* consts *)
16a8fe4f2250 added subsort, norm_sort, classes;
wenzelm
parents: 386
diff changeset
   110
386
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   111
fun const_type (Sg {const_tab, ...}) c =
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   112
  Symtab.lookup (const_tab, c);
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   113
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   114
620
f787eb061618 exported pretty_sort;
wenzelm
parents: 583
diff changeset
   115
(* classes and sorts *)
402
16a8fe4f2250 added subsort, norm_sort, classes;
wenzelm
parents: 386
diff changeset
   116
16a8fe4f2250 added subsort, norm_sort, classes;
wenzelm
parents: 386
diff changeset
   117
val classes = #classes o Type.rep_tsig o tsig_of;
16a8fe4f2250 added subsort, norm_sort, classes;
wenzelm
parents: 386
diff changeset
   118
16a8fe4f2250 added subsort, norm_sort, classes;
wenzelm
parents: 386
diff changeset
   119
val subsort = Type.subsort o tsig_of;
16a8fe4f2250 added subsort, norm_sort, classes;
wenzelm
parents: 386
diff changeset
   120
val norm_sort = Type.norm_sort o tsig_of;
16a8fe4f2250 added subsort, norm_sort, classes;
wenzelm
parents: 386
diff changeset
   121
620
f787eb061618 exported pretty_sort;
wenzelm
parents: 583
diff changeset
   122
fun pretty_sort [c] = Pretty.str c
f787eb061618 exported pretty_sort;
wenzelm
parents: 583
diff changeset
   123
  | pretty_sort cs = Pretty.str_list "{" "}" cs;
f787eb061618 exported pretty_sort;
wenzelm
parents: 583
diff changeset
   124
402
16a8fe4f2250 added subsort, norm_sort, classes;
wenzelm
parents: 386
diff changeset
   125
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   126
251
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   127
(** print signature **)
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   128
386
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   129
val stamp_names = rev o map !;
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   130
251
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   131
fun print_sg sg =
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   132
  let
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   133
    fun prt_typ syn ty = Pretty.quote (Syntax.pretty_typ syn ty);
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   134
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   135
    fun pretty_subclass (cl, cls) = Pretty.block
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   136
      [Pretty.str (cl ^ " <"), Pretty.brk 1, pretty_sort cls];
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   137
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   138
    fun pretty_default cls = Pretty.block
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   139
      [Pretty.str "default:", Pretty.brk 1, pretty_sort cls];
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   140
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   141
    fun pretty_arg (ty, n) = Pretty.str (ty ^ " " ^ string_of_int n);
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   142
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   143
    fun pretty_abbr syn (ty, (vs, rhs)) = Pretty.block
620
f787eb061618 exported pretty_sort;
wenzelm
parents: 583
diff changeset
   144
      [prt_typ syn (Type (ty, map (fn v => TVar ((v, 0), [])) vs)),
251
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   145
        Pretty.str " =", Pretty.brk 1, prt_typ syn rhs];
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   146
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   147
    fun pretty_arity ty (cl, []) = Pretty.block
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   148
          [Pretty.str (ty ^ " ::"), Pretty.brk 1, Pretty.str cl]
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   149
      | pretty_arity ty (cl, srts) = Pretty.block
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   150
          [Pretty.str (ty ^ " ::"), Pretty.brk 1,
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   151
            Pretty.list "(" ")" (map pretty_sort srts),
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   152
            Pretty.brk 1, Pretty.str cl];
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   153
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   154
    fun pretty_coreg (ty, ars) = map (pretty_arity ty) ars;
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   155
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   156
    fun pretty_const syn (c, ty) = Pretty.block
266
3fe01df1a614 improved eq_sg;
wenzelm
parents: 251
diff changeset
   157
      [Pretty.str (quote c ^ " ::"), Pretty.brk 1, prt_typ syn ty];
251
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   158
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   159
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   160
    val Sg {tsig, const_tab, syn, stamps} = sg;
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   161
    val {classes, subclass, default, args, abbrs, coreg} = rep_tsig tsig;
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   162
  in
386
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   163
    Pretty.writeln (Pretty.strs ("stamps:" :: stamp_names stamps));
251
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   164
    Pretty.writeln (Pretty.strs ("classes:" :: classes));
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   165
    Pretty.writeln (Pretty.big_list "subclass:" (map pretty_subclass subclass));
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   166
    Pretty.writeln (pretty_default default);
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   167
    Pretty.writeln (Pretty.big_list "types:" (map pretty_arg args));
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   168
    Pretty.writeln (Pretty.big_list "abbrs:" (map (pretty_abbr syn) abbrs));
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   169
    Pretty.writeln (Pretty.big_list "coreg:" (flat (map pretty_coreg coreg)));
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   170
    Pretty.writeln (Pretty.big_list "consts:"
386
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   171
      (map (pretty_const syn) (Symtab.dest const_tab)))
251
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   172
  end;
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   173
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   174
562
e9572d03b724 added pretty_sg;
wenzelm
parents: 421
diff changeset
   175
fun pretty_sg (Sg {stamps, ...}) =
e9572d03b724 added pretty_sg;
wenzelm
parents: 421
diff changeset
   176
  Pretty.str_list "{" "}" (stamp_names stamps);
e9572d03b724 added pretty_sg;
wenzelm
parents: 421
diff changeset
   177
e9572d03b724 added pretty_sg;
wenzelm
parents: 421
diff changeset
   178
val pprint_sg = Pretty.pprint o pretty_sg;
251
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   179
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   180
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   181
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   182
(** pretty printing of terms and types **)
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   183
922
196ca0973a6d added CPure (curried functions) and ProtoPure (ancestor of Pure and CPure)
clasohm
parents: 901
diff changeset
   184
fun pretty_term (Sg {syn, stamps, ...}) =
196ca0973a6d added CPure (curried functions) and ProtoPure (ancestor of Pure and CPure)
clasohm
parents: 901
diff changeset
   185
  let val curried = "CPure" mem (map ! stamps);
196ca0973a6d added CPure (curried functions) and ProtoPure (ancestor of Pure and CPure)
clasohm
parents: 901
diff changeset
   186
  in Syntax.pretty_term curried syn end;
196ca0973a6d added CPure (curried functions) and ProtoPure (ancestor of Pure and CPure)
clasohm
parents: 901
diff changeset
   187
251
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   188
fun pretty_typ (Sg {syn, ...}) = Syntax.pretty_typ syn;
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   189
922
196ca0973a6d added CPure (curried functions) and ProtoPure (ancestor of Pure and CPure)
clasohm
parents: 901
diff changeset
   190
fun string_of_term (Sg {syn, stamps, ...}) = 
196ca0973a6d added CPure (curried functions) and ProtoPure (ancestor of Pure and CPure)
clasohm
parents: 901
diff changeset
   191
  let val curried = "CPure" mem (map ! stamps);
196ca0973a6d added CPure (curried functions) and ProtoPure (ancestor of Pure and CPure)
clasohm
parents: 901
diff changeset
   192
  in Syntax.string_of_term curried syn end;
196ca0973a6d added CPure (curried functions) and ProtoPure (ancestor of Pure and CPure)
clasohm
parents: 901
diff changeset
   193
251
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   194
fun string_of_typ (Sg {syn, ...}) = Syntax.string_of_typ syn;
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   195
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   196
fun pprint_term sg = Pretty.pprint o Pretty.quote o (pretty_term sg);
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   197
fun pprint_typ sg = Pretty.pprint o Pretty.quote o (pretty_typ sg);
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   198
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   199
169
1b2765146aab extend: cleaned up, adapted for new Syntax.extend;
wenzelm
parents: 155
diff changeset
   200
562
e9572d03b724 added pretty_sg;
wenzelm
parents: 421
diff changeset
   201
(** read types **)  (*exception ERROR*)
e9572d03b724 added pretty_sg;
wenzelm
parents: 421
diff changeset
   202
e9572d03b724 added pretty_sg;
wenzelm
parents: 421
diff changeset
   203
fun err_in_type s =
e9572d03b724 added pretty_sg;
wenzelm
parents: 421
diff changeset
   204
  error ("The error(s) above occurred in type " ^ quote s);
e9572d03b724 added pretty_sg;
wenzelm
parents: 421
diff changeset
   205
e9572d03b724 added pretty_sg;
wenzelm
parents: 421
diff changeset
   206
fun read_raw_typ syn tsig sort_of str =
e9572d03b724 added pretty_sg;
wenzelm
parents: 421
diff changeset
   207
  Syntax.read_typ syn (fn x => if_none (sort_of x) (defaultS tsig)) str
e9572d03b724 added pretty_sg;
wenzelm
parents: 421
diff changeset
   208
    handle ERROR => err_in_type str;
e9572d03b724 added pretty_sg;
wenzelm
parents: 421
diff changeset
   209
e9572d03b724 added pretty_sg;
wenzelm
parents: 421
diff changeset
   210
(*read and certify typ wrt a signature*)
e9572d03b724 added pretty_sg;
wenzelm
parents: 421
diff changeset
   211
fun read_typ (Sg {tsig, syn, ...}, sort_of) str =
e9572d03b724 added pretty_sg;
wenzelm
parents: 421
diff changeset
   212
  cert_typ tsig (read_raw_typ syn tsig sort_of str)
e9572d03b724 added pretty_sg;
wenzelm
parents: 421
diff changeset
   213
    handle TYPE (msg, _, _) => (writeln msg; err_in_type str);
e9572d03b724 added pretty_sg;
wenzelm
parents: 421
diff changeset
   214
e9572d03b724 added pretty_sg;
wenzelm
parents: 421
diff changeset
   215
e9572d03b724 added pretty_sg;
wenzelm
parents: 421
diff changeset
   216
386
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   217
(** certify types and terms **)   (*exception TYPE*)
251
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   218
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   219
fun certify_typ (Sg {tsig, ...}) ty = cert_typ tsig ty;
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   220
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   221
386
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   222
fun mapfilt_atoms f (Abs (_, _, t)) = mapfilt_atoms f t
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   223
  | mapfilt_atoms f (t $ u) = mapfilt_atoms f t @ mapfilt_atoms f u
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   224
  | mapfilt_atoms f a = (case f a of Some y => [y] | None => []);
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   225
386
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   226
fun certify_term (sg as Sg {tsig, ...}) tm =
251
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   227
  let
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   228
    fun valid_const a T =
386
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   229
      (case const_type sg a of
251
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   230
        Some U => typ_instance (tsig, T, U)
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   231
      | _ => false);
169
1b2765146aab extend: cleaned up, adapted for new Syntax.extend;
wenzelm
parents: 155
diff changeset
   232
251
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   233
    fun atom_err (Const (a, T)) =
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   234
          if valid_const a T then None
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   235
          else Some ("Illegal type for constant " ^ quote a ^ " :: " ^
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   236
            quote (string_of_typ sg T))
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   237
      | atom_err (Var ((x, i), _)) =
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   238
          if i < 0 then Some ("Negative index for Var " ^ quote x) else None
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   239
      | atom_err _ = None;
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   240
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   241
    val norm_tm =
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   242
      (case it_term_types (typ_errors tsig) (tm, []) of
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   243
        [] => map_term_types (norm_typ tsig) tm
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   244
      | errs => raise_type (cat_lines errs) [] [tm]);
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   245
  in
386
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   246
    (case mapfilt_atoms atom_err norm_tm of
251
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   247
      [] => (norm_tm, type_of norm_tm, maxidx_of_term norm_tm)
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   248
    | errs => raise_type (cat_lines errs) [] [norm_tm])
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   249
  end;
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   250
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   251
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   252
583
550292083e66 minor internal changes;
wenzelm
parents: 573
diff changeset
   253
(** infer_types **)         (*exception ERROR*)
251
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   254
623
ca9f5dbab880 added print_msg;
clasohm
parents: 620
diff changeset
   255
fun infer_types sg types sorts print_msg (ts, T) =
251
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   256
  let
562
e9572d03b724 added pretty_sg;
wenzelm
parents: 421
diff changeset
   257
    val Sg {tsig, ...} = sg;
e9572d03b724 added pretty_sg;
wenzelm
parents: 421
diff changeset
   258
    val show_typ = string_of_typ sg;
e9572d03b724 added pretty_sg;
wenzelm
parents: 421
diff changeset
   259
    val show_term = string_of_term sg;
169
1b2765146aab extend: cleaned up, adapted for new Syntax.extend;
wenzelm
parents: 155
diff changeset
   260
562
e9572d03b724 added pretty_sg;
wenzelm
parents: 421
diff changeset
   261
    fun term_err [] = ""
e9572d03b724 added pretty_sg;
wenzelm
parents: 421
diff changeset
   262
      | term_err [t] = "\nInvolving this term:\n" ^ show_term t
623
ca9f5dbab880 added print_msg;
clasohm
parents: 620
diff changeset
   263
      | term_err ts = 
ca9f5dbab880 added print_msg;
clasohm
parents: 620
diff changeset
   264
          "\nInvolving these terms:\n" ^ cat_lines (map show_term ts);
562
e9572d03b724 added pretty_sg;
wenzelm
parents: 421
diff changeset
   265
679
a682bbf70dc6 Pure/sign/infer_types/exn_type_msg: new, for more uniform handling of
lcp
parents: 623
diff changeset
   266
    fun exn_type_msg (msg, Ts, ts) =
926
9d1348498c36 fixed a bug in infer_types/exn_type_msg
clasohm
parents: 922
diff changeset
   267
	"\nType checking error: " ^ msg ^ "\n" ^
679
a682bbf70dc6 Pure/sign/infer_types/exn_type_msg: new, for more uniform handling of
lcp
parents: 623
diff changeset
   268
	cat_lines (map show_typ Ts) ^ term_err ts ^ "\n";
a682bbf70dc6 Pure/sign/infer_types/exn_type_msg: new, for more uniform handling of
lcp
parents: 623
diff changeset
   269
562
e9572d03b724 added pretty_sg;
wenzelm
parents: 421
diff changeset
   270
    val T' = certify_typ sg T
679
a682bbf70dc6 Pure/sign/infer_types/exn_type_msg: new, for more uniform handling of
lcp
parents: 623
diff changeset
   271
      handle TYPE arg => error (exn_type_msg arg);
623
ca9f5dbab880 added print_msg;
clasohm
parents: 620
diff changeset
   272
ca9f5dbab880 added print_msg;
clasohm
parents: 620
diff changeset
   273
    val ct = const_type sg;
ca9f5dbab880 added print_msg;
clasohm
parents: 620
diff changeset
   274
ca9f5dbab880 added print_msg;
clasohm
parents: 620
diff changeset
   275
    fun process_terms (t::ts) (idx, infrd_t, tye) msg n =
ca9f5dbab880 added print_msg;
clasohm
parents: 620
diff changeset
   276
         let fun mk_some (x, y) = (Some x, Some y);
ca9f5dbab880 added print_msg;
clasohm
parents: 620
diff changeset
   277
ca9f5dbab880 added print_msg;
clasohm
parents: 620
diff changeset
   278
             val ((infrd_t', tye'), msg') = 
ca9f5dbab880 added print_msg;
clasohm
parents: 620
diff changeset
   279
              (mk_some (Type.infer_types (tsig, ct, types, sorts, T', t)), msg)
679
a682bbf70dc6 Pure/sign/infer_types/exn_type_msg: new, for more uniform handling of
lcp
parents: 623
diff changeset
   280
              handle TYPE arg => ((None, None), exn_type_msg arg)
623
ca9f5dbab880 added print_msg;
clasohm
parents: 620
diff changeset
   281
ca9f5dbab880 added print_msg;
clasohm
parents: 620
diff changeset
   282
             val old_show_brackets = !show_brackets;
ca9f5dbab880 added print_msg;
clasohm
parents: 620
diff changeset
   283
ca9f5dbab880 added print_msg;
clasohm
parents: 620
diff changeset
   284
             val _ = (show_brackets := true);
ca9f5dbab880 added print_msg;
clasohm
parents: 620
diff changeset
   285
ca9f5dbab880 added print_msg;
clasohm
parents: 620
diff changeset
   286
             val msg'' = 
ca9f5dbab880 added print_msg;
clasohm
parents: 620
diff changeset
   287
               if is_none idx then (if is_none infrd_t' then msg' else "")
ca9f5dbab880 added print_msg;
clasohm
parents: 620
diff changeset
   288
               else if is_none infrd_t' then "" 
ca9f5dbab880 added print_msg;
clasohm
parents: 620
diff changeset
   289
               else (if msg' = "" then 
ca9f5dbab880 added print_msg;
clasohm
parents: 620
diff changeset
   290
                "Error: More than one term is type correct:\n" ^
ca9f5dbab880 added print_msg;
clasohm
parents: 620
diff changeset
   291
                (show_term (the infrd_t)) else msg') ^ "\n" ^ 
ca9f5dbab880 added print_msg;
clasohm
parents: 620
diff changeset
   292
                (show_term (the infrd_t')) ^ "\n";
ca9f5dbab880 added print_msg;
clasohm
parents: 620
diff changeset
   293
ca9f5dbab880 added print_msg;
clasohm
parents: 620
diff changeset
   294
             val _ = (show_brackets := old_show_brackets);
ca9f5dbab880 added print_msg;
clasohm
parents: 620
diff changeset
   295
         in if is_none infrd_t' then
ca9f5dbab880 added print_msg;
clasohm
parents: 620
diff changeset
   296
              process_terms ts (idx, infrd_t, tye) msg'' (n+1)
ca9f5dbab880 added print_msg;
clasohm
parents: 620
diff changeset
   297
            else
ca9f5dbab880 added print_msg;
clasohm
parents: 620
diff changeset
   298
              process_terms ts (Some n, infrd_t', tye') msg'' (n+1)
ca9f5dbab880 added print_msg;
clasohm
parents: 620
diff changeset
   299
         end
ca9f5dbab880 added print_msg;
clasohm
parents: 620
diff changeset
   300
      | process_terms [] (idx, infrd_t, tye) msg _ = 
ca9f5dbab880 added print_msg;
clasohm
parents: 620
diff changeset
   301
          if msg = "" then (the idx, the infrd_t, the tye) 
881
d7dcba167ed8 moved ambiguity_level to Syntax/syntax.ML
clasohm
parents: 879
diff changeset
   302
          else
901
77795af99315 added check "length ts > 1" before printing ambiguity warning in infer_types
clasohm
parents: 881
diff changeset
   303
            (if length ts > 1 andalso length ts <= !Syntax.ambiguity_level then
881
d7dcba167ed8 moved ambiguity_level to Syntax/syntax.ML
clasohm
parents: 879
diff changeset
   304
                                                      (*no warning shown yet?*)
d7dcba167ed8 moved ambiguity_level to Syntax/syntax.ML
clasohm
parents: 879
diff changeset
   305
               writeln "Warning: Currently parsed input \
d7dcba167ed8 moved ambiguity_level to Syntax/syntax.ML
clasohm
parents: 879
diff changeset
   306
                       \produces more than one parse tree.\n\
d7dcba167ed8 moved ambiguity_level to Syntax/syntax.ML
clasohm
parents: 879
diff changeset
   307
                       \For more information lower Syntax.ambiguity_level."
d7dcba167ed8 moved ambiguity_level to Syntax/syntax.ML
clasohm
parents: 879
diff changeset
   308
             else ();
d7dcba167ed8 moved ambiguity_level to Syntax/syntax.ML
clasohm
parents: 879
diff changeset
   309
             error msg)
623
ca9f5dbab880 added print_msg;
clasohm
parents: 620
diff changeset
   310
ca9f5dbab880 added print_msg;
clasohm
parents: 620
diff changeset
   311
    val (idx, infrd_t, tye) = process_terms ts (None, None, None) "" 0;
881
d7dcba167ed8 moved ambiguity_level to Syntax/syntax.ML
clasohm
parents: 879
diff changeset
   312
  in if print_msg andalso length ts > !Syntax.ambiguity_level then
623
ca9f5dbab880 added print_msg;
clasohm
parents: 620
diff changeset
   313
       writeln "Fortunately, only one parse tree is type correct.\n\
ca9f5dbab880 added print_msg;
clasohm
parents: 620
diff changeset
   314
         \It helps (speed!) if you disambiguate your grammar or your input."
ca9f5dbab880 added print_msg;
clasohm
parents: 620
diff changeset
   315
     else ();
ca9f5dbab880 added print_msg;
clasohm
parents: 620
diff changeset
   316
     (idx, infrd_t, tye)
ca9f5dbab880 added print_msg;
clasohm
parents: 620
diff changeset
   317
  end;
251
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   318
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   319
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   320
623
ca9f5dbab880 added print_msg;
clasohm
parents: 620
diff changeset
   321
(** extend signature **)    (*exception ERROR*)
ca9f5dbab880 added print_msg;
clasohm
parents: 620
diff changeset
   322
620
f787eb061618 exported pretty_sort;
wenzelm
parents: 583
diff changeset
   323
(** signature extension functions **)  (*exception ERROR*)
386
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   324
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   325
fun decls_of name_of mfixs =
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   326
  map (fn (x, y, mx) => (name_of x mx, y)) mfixs;
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   327
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   328
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   329
(* add default sort *)
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   330
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   331
fun ext_defsort (syn, tsig, ctab) defsort =
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   332
  (syn, ext_tsig_defsort tsig defsort, ctab);
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   333
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   334
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   335
(* add type constructors *)
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   336
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   337
fun ext_types (syn, tsig, ctab) types =
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   338
  (Syntax.extend_type_gram syn types,
562
e9572d03b724 added pretty_sg;
wenzelm
parents: 421
diff changeset
   339
    ext_tsig_types tsig (decls_of Syntax.type_name types),
386
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   340
    ctab);
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   341
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   342
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   343
(* add type abbreviations *)
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   344
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   345
fun read_abbr syn tsig (t, vs, rhs_src) =
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   346
  (t, vs, read_raw_typ syn tsig (K None) rhs_src)
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   347
    handle ERROR => error ("in type abbreviation " ^ t);
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   348
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   349
fun ext_abbrs rd_abbr (syn, tsig, ctab) abbrs =
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   350
  let
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   351
    fun mfix_of (t, vs, _, mx) = (t, length vs, mx);
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   352
    val syn1 = Syntax.extend_type_gram syn (map mfix_of abbrs);
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   353
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   354
    fun decl_of (t, vs, rhs, mx) =
562
e9572d03b724 added pretty_sg;
wenzelm
parents: 421
diff changeset
   355
      rd_abbr syn1 tsig (Syntax.type_name t mx, vs, rhs);
386
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   356
  in
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   357
    (syn1, ext_tsig_abbrs tsig (map decl_of abbrs), ctab)
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   358
  end;
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   359
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   360
val ext_tyabbrs_i = ext_abbrs (K (K I));
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   361
val ext_tyabbrs = ext_abbrs read_abbr;
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   362
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   363
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   364
(* add type arities *)
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   365
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   366
fun ext_arities (syn, tsig, ctab) arities =
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   367
  let
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   368
    val tsig1 = ext_tsig_arities tsig arities;
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   369
    val log_types = logical_types tsig1;
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   370
  in
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   371
    (Syntax.extend_log_types syn log_types, tsig1, ctab)
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   372
  end;
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   373
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   374
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   375
(* add term constants and syntax *)
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   376
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   377
fun err_in_const c =
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   378
  error ("in declaration of constant " ^ quote c);
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   379
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   380
fun err_dup_consts cs =
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   381
  error ("Duplicate declaration of constant(s) " ^ commas_quote cs);
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   382
251
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   383
386
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   384
fun read_const syn tsig (c, ty_src, mx) =
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   385
  (c, read_raw_typ syn tsig (K None) ty_src, mx)
562
e9572d03b724 added pretty_sg;
wenzelm
parents: 421
diff changeset
   386
    handle ERROR => err_in_const (Syntax.const_name c mx);
386
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   387
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   388
fun ext_cnsts rd_const syn_only (syn, tsig, ctab) raw_consts =
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   389
  let
620
f787eb061618 exported pretty_sort;
wenzelm
parents: 583
diff changeset
   390
    fun prep_const (c, ty, mx) = (c, varifyT (cert_typ tsig (no_tvars ty)), mx)
562
e9572d03b724 added pretty_sg;
wenzelm
parents: 421
diff changeset
   391
      handle TYPE (msg, _, _) => (writeln msg; err_in_const (Syntax.const_name c mx));
386
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   392
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   393
    val consts = map (prep_const o rd_const syn tsig) raw_consts;
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   394
    val decls =
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   395
      if syn_only then []
562
e9572d03b724 added pretty_sg;
wenzelm
parents: 421
diff changeset
   396
      else filter_out (equal "" o fst) (decls_of Syntax.const_name consts);
386
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   397
  in
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   398
    (Syntax.extend_const_gram syn consts, tsig,
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   399
      Symtab.extend_new (ctab, decls)
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   400
        handle Symtab.DUPS cs => err_dup_consts cs)
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   401
  end;
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   402
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   403
val ext_consts_i = ext_cnsts (K (K I)) false;
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   404
val ext_consts = ext_cnsts read_const false;
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   405
val ext_syntax_i = ext_cnsts (K (K I)) true;
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   406
val ext_syntax = ext_cnsts read_const true;
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   407
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   408
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   409
(* add type classes *)
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   410
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   411
fun const_of_class c = c ^ "_class";
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   412
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   413
fun class_of_const c_class =
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   414
  let
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   415
    val c = implode (take (size c_class - 6, explode c_class));
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   416
  in
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   417
    if const_of_class c = c_class then c
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   418
    else raise_term ("class_of_const: bad name " ^ quote c_class) []
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   419
  end;
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   420
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   421
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   422
fun ext_classes (syn, tsig, ctab) classes =
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   423
  let
562
e9572d03b724 added pretty_sg;
wenzelm
parents: 421
diff changeset
   424
    val names = map fst classes;
386
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   425
    val consts =
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   426
      map (fn c => (const_of_class c, a_itselfT --> propT, NoSyn)) names;
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   427
  in
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   428
    ext_consts_i
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   429
      (Syntax.extend_consts syn names, ext_tsig_classes tsig classes, ctab)
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   430
      consts
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   431
  end;
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   432
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   433
421
95e1d4faa863 added add_classrel;
wenzelm
parents: 418
diff changeset
   434
(* add to subclass relation *)
95e1d4faa863 added add_classrel;
wenzelm
parents: 418
diff changeset
   435
95e1d4faa863 added add_classrel;
wenzelm
parents: 418
diff changeset
   436
fun ext_classrel (syn, tsig, ctab) pairs =
95e1d4faa863 added add_classrel;
wenzelm
parents: 418
diff changeset
   437
  (syn, ext_tsig_subclass tsig pairs, ctab);
95e1d4faa863 added add_classrel;
wenzelm
parents: 418
diff changeset
   438
95e1d4faa863 added add_classrel;
wenzelm
parents: 418
diff changeset
   439
386
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   440
(* add syntactic translations *)
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   441
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   442
fun ext_trfuns (syn, tsig, ctab) trfuns =
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   443
  (Syntax.extend_trfuns syn trfuns, tsig, ctab);
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   444
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   445
fun ext_trrules (syn, tsig, ctab) xrules =
865
b38c67991122 added optional precedence for body of binder;
clasohm
parents: 763
diff changeset
   446
  (Syntax.extend_trrules syn xrules, tsig, ctab);
386
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   447
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   448
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   449
(* build signature *)
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   450
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   451
fun ext_stamps stamps name =
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   452
  let
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   453
    val stmps = (case stamps of ref "#" :: ss => ss | ss => ss);
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   454
  in
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   455
    if exists (equal name o !) stmps then
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   456
      error ("Theory already contains a " ^ quote name ^ " component")
402
16a8fe4f2250 added subsort, norm_sort, classes;
wenzelm
parents: 386
diff changeset
   457
    else ref name :: stmps
386
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   458
  end;
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   459
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   460
fun make_sign (syn, tsig, ctab) stamps name =
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   461
  Sg {tsig = tsig, const_tab = ctab, syn = syn,
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   462
    stamps = ext_stamps stamps name};
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   463
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   464
fun extend_sign extfun name decls (Sg {tsig, const_tab, syn, stamps}) =
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   465
  make_sign (extfun (syn, tsig, const_tab) decls) stamps name;
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   466
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   467
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   468
(* the external interfaces *)
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   469
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   470
val add_classes   = extend_sign ext_classes "#";
421
95e1d4faa863 added add_classrel;
wenzelm
parents: 418
diff changeset
   471
val add_classrel  = extend_sign ext_classrel "#";
386
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   472
val add_defsort   = extend_sign ext_defsort "#";
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   473
val add_types     = extend_sign ext_types "#";
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   474
val add_tyabbrs   = extend_sign ext_tyabbrs "#";
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   475
val add_tyabbrs_i = extend_sign ext_tyabbrs_i "#";
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   476
val add_arities   = extend_sign ext_arities "#";
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   477
val add_consts    = extend_sign ext_consts "#";
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   478
val add_consts_i  = extend_sign ext_consts_i "#";
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   479
val add_syntax    = extend_sign ext_syntax "#";
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   480
val add_syntax_i  = extend_sign ext_syntax_i "#";
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   481
val add_trfuns    = extend_sign ext_trfuns "#";
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   482
val add_trrules   = extend_sign ext_trrules "#";
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   483
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   484
fun add_name name sg = extend_sign K name () sg;
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   485
val make_draft = add_name "#";
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   486
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   487
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   488
620
f787eb061618 exported pretty_sort;
wenzelm
parents: 583
diff changeset
   489
(** merge signatures **)    (*exception TERM*) (*exception ERROR (* FIXME *)*)
143
f8152ca36cd5 Sign.extend: Syntax.extend now called with read_ty;
wenzelm
parents: 19
diff changeset
   490
251
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   491
fun merge (sg1, sg2) =
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   492
  if subsig (sg2, sg1) then sg1
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   493
  else if subsig (sg1, sg2) then sg2
386
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   494
  else if is_draft sg1 orelse is_draft sg2 then
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   495
    raise_term "Illegal merge of draft signatures" []
251
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   496
  else
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   497
    (*neither is union already; must form union*)
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   498
    let
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   499
      val Sg {tsig = tsig1, const_tab = const_tab1, syn = syn1,
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   500
        stamps = stamps1} = sg1;
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   501
      val Sg {tsig = tsig2, const_tab = const_tab2, syn = syn2,
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   502
        stamps = stamps2} = sg2;
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   503
386
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   504
402
16a8fe4f2250 added subsort, norm_sort, classes;
wenzelm
parents: 386
diff changeset
   505
      val stamps = merge_rev_lists stamps1 stamps2;
16a8fe4f2250 added subsort, norm_sort, classes;
wenzelm
parents: 386
diff changeset
   506
      val _ =
16a8fe4f2250 added subsort, norm_sort, classes;
wenzelm
parents: 386
diff changeset
   507
        (case duplicates (stamp_names stamps) of
16a8fe4f2250 added subsort, norm_sort, classes;
wenzelm
parents: 386
diff changeset
   508
          [] => ()
16a8fe4f2250 added subsort, norm_sort, classes;
wenzelm
parents: 386
diff changeset
   509
        | dups => raise_term ("Attempt to merge different versions of theories "
16a8fe4f2250 added subsort, norm_sort, classes;
wenzelm
parents: 386
diff changeset
   510
            ^ commas_quote dups) []);
16a8fe4f2250 added subsort, norm_sort, classes;
wenzelm
parents: 386
diff changeset
   511
251
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   512
      val tsig = merge_tsigs (tsig1, tsig2);
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   513
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   514
      val const_tab = Symtab.merge (op =) (const_tab1, const_tab2)
386
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   515
        handle Symtab.DUPS cs =>
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   516
          raise_term ("Incompatible types for constant(s) " ^ commas_quote cs) [];
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   517
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   518
      val syn = Syntax.merge_syntaxes syn1 syn2;
251
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   519
    in
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   520
      Sg {tsig = tsig, const_tab = const_tab, syn = syn, stamps = stamps}
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   521
    end;
143
f8152ca36cd5 Sign.extend: Syntax.extend now called with read_ty;
wenzelm
parents: 19
diff changeset
   522
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   523
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   524
251
c9b984c0a674 major cleanup;
wenzelm
parents: 229
diff changeset
   525
(** the Pure signature **)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   526
922
196ca0973a6d added CPure (curried functions) and ProtoPure (ancestor of Pure and CPure)
clasohm
parents: 901
diff changeset
   527
val proto_pure =
763
d5a626aacdd3 replaced type_syn by pure_syn in Pure signature
clasohm
parents: 679
diff changeset
   528
  make_sign (Syntax.pure_syn, tsig0, Symtab.null) [] "#"
410
c8171ee32744 replaced infix also by |>
wenzelm
parents: 402
diff changeset
   529
  |> add_types
386
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   530
   (("fun", 2, NoSyn) ::
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   531
    ("prop", 0, NoSyn) ::
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   532
    ("itself", 1, NoSyn) ::
562
e9572d03b724 added pretty_sg;
wenzelm
parents: 421
diff changeset
   533
    Syntax.pure_types)
e9572d03b724 added pretty_sg;
wenzelm
parents: 421
diff changeset
   534
  |> add_classes [(logicC, [])]
410
c8171ee32744 replaced infix also by |>
wenzelm
parents: 402
diff changeset
   535
  |> add_defsort logicS
c8171ee32744 replaced infix also by |>
wenzelm
parents: 402
diff changeset
   536
  |> add_arities
386
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   537
   [("fun", [logicS, logicS], logicS),
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   538
    ("prop", [], logicS),
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   539
    ("itself", [logicS], logicS)]
562
e9572d03b724 added pretty_sg;
wenzelm
parents: 421
diff changeset
   540
  |> add_syntax Syntax.pure_syntax
410
c8171ee32744 replaced infix also by |>
wenzelm
parents: 402
diff changeset
   541
  |> add_trfuns Syntax.pure_trfuns
c8171ee32744 replaced infix also by |>
wenzelm
parents: 402
diff changeset
   542
  |> add_consts
386
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   543
   [("==", "['a::{}, 'a] => prop", Mixfix ("(_ ==/ _)", [3, 2], 2)),
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   544
    ("=?=", "['a::{}, 'a] => prop", Mixfix ("(_ =?=/ _)", [3, 2], 2)),
e9ba9f7e2542 added const_type: sg -> typ option;
wenzelm
parents: 277
diff changeset
   545
    ("==>", "[prop, prop] => prop", Mixfix ("(_ ==>/ _)", [2, 1], 1)),
865
b38c67991122 added optional precedence for body of binder;
clasohm
parents: 763
diff changeset
   546
    ("all", "('a => prop) => prop", Binder ("!!", 0, 0)),
573
2fa5ef27bd0a removed constant _constrain from Pure sig;
wenzelm
parents: 562
diff changeset
   547
    ("TYPE", "'a itself", NoSyn)]
922
196ca0973a6d added CPure (curried functions) and ProtoPure (ancestor of Pure and CPure)
clasohm
parents: 901
diff changeset
   548
  |> add_name "ProtoPure";
196ca0973a6d added CPure (curried functions) and ProtoPure (ancestor of Pure and CPure)
clasohm
parents: 901
diff changeset
   549
196ca0973a6d added CPure (curried functions) and ProtoPure (ancestor of Pure and CPure)
clasohm
parents: 901
diff changeset
   550
val pure = proto_pure
196ca0973a6d added CPure (curried functions) and ProtoPure (ancestor of Pure and CPure)
clasohm
parents: 901
diff changeset
   551
  |> add_syntax
196ca0973a6d added CPure (curried functions) and ProtoPure (ancestor of Pure and CPure)
clasohm
parents: 901
diff changeset
   552
   [("_appl",     "[('b => 'a), args] => logic",    Mixfix ("(1_/(1'(_')))",
196ca0973a6d added CPure (curried functions) and ProtoPure (ancestor of Pure and CPure)
clasohm
parents: 901
diff changeset
   553
                                                    [max_pri, 0], max_pri)),
196ca0973a6d added CPure (curried functions) and ProtoPure (ancestor of Pure and CPure)
clasohm
parents: 901
diff changeset
   554
    ("_appl",     "[('b => 'a), args] => aprop",    Mixfix ("(1_/(1'(_')))",
196ca0973a6d added CPure (curried functions) and ProtoPure (ancestor of Pure and CPure)
clasohm
parents: 901
diff changeset
   555
                                                    [max_pri, 0], max_pri))]
410
c8171ee32744 replaced infix also by |>
wenzelm
parents: 402
diff changeset
   556
  |> add_name "Pure";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   557
922
196ca0973a6d added CPure (curried functions) and ProtoPure (ancestor of Pure and CPure)
clasohm
parents: 901
diff changeset
   558
val cpure = proto_pure
196ca0973a6d added CPure (curried functions) and ProtoPure (ancestor of Pure and CPure)
clasohm
parents: 901
diff changeset
   559
  |> add_syntax
196ca0973a6d added CPure (curried functions) and ProtoPure (ancestor of Pure and CPure)
clasohm
parents: 901
diff changeset
   560
   [("_applC",     "[('b => 'a), 'c] => logic",     Mixfix ("(1_ (1_))",
196ca0973a6d added CPure (curried functions) and ProtoPure (ancestor of Pure and CPure)
clasohm
parents: 901
diff changeset
   561
                                                    [max_pri-1, max_pri],
196ca0973a6d added CPure (curried functions) and ProtoPure (ancestor of Pure and CPure)
clasohm
parents: 901
diff changeset
   562
                                                    max_pri-1)),
196ca0973a6d added CPure (curried functions) and ProtoPure (ancestor of Pure and CPure)
clasohm
parents: 901
diff changeset
   563
    ("_applC",     "[('b => 'a), 'c] => aprop",     Mixfix ("(1_ (1_))",
196ca0973a6d added CPure (curried functions) and ProtoPure (ancestor of Pure and CPure)
clasohm
parents: 901
diff changeset
   564
                                                    [max_pri-1, max_pri],
196ca0973a6d added CPure (curried functions) and ProtoPure (ancestor of Pure and CPure)
clasohm
parents: 901
diff changeset
   565
                                                    max_pri-1))]
196ca0973a6d added CPure (curried functions) and ProtoPure (ancestor of Pure and CPure)
clasohm
parents: 901
diff changeset
   566
  |> add_name "CPure";
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   567
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   568
end;