src/HOL/thy_syntax.ML
author wenzelm
Wed, 14 Apr 1999 14:44:04 +0200
changeset 6426 9a2ace82b68e
parent 6381 ed0c7b4a325d
child 6477 e36581d04eee
permissions -rw-r--r--
intrs: names and atts;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     1
(*  Title:      HOL/thy_syntax.ML
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     2
    ID:         $Id$
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     3
    Author:     Markus Wenzel and Lawrence C Paulson and Carsten Clasohm
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     4
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     5
Additional theory file sections for HOL.
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     6
*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     7
3622
85898be702b2 use ThySyn.add_syntax;
wenzelm
parents: 3617
diff changeset
     8
local
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     9
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    10
open ThyParse;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    11
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    12
1475
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
    13
(** typedef **)
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    14
1475
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
    15
fun mk_typedef_decl (((((opt_name, vs), t), mx), rhs), wt) =
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    16
  let
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    17
    val name' = if_none opt_name t;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    18
    val name = strip_quotes name';
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    19
  in
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    20
    (cat_lines [name', mk_triple (t, mk_list vs, mx), rhs, wt],
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    21
      [name ^ "_def", "Rep_" ^ name, "Rep_" ^ name ^ "_inverse",
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    22
        "Abs_" ^ name ^ "_inverse"])
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    23
  end;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    24
1475
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
    25
val typedef_decl =
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    26
  optional ("(" $$-- name --$$ ")" >> Some) None --
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    27
  type_args -- name -- opt_infix --$$ "=" -- string -- opt_witness
1475
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
    28
  >> mk_typedef_decl;
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    29
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    30
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    31
3980
21ef91734970 added record section;
wenzelm
parents: 3945
diff changeset
    32
(** record **)
21ef91734970 added record section;
wenzelm
parents: 3945
diff changeset
    33
21ef91734970 added record section;
wenzelm
parents: 3945
diff changeset
    34
val record_decl =
4225
3d9e551bc5a6 improved record syntax;
wenzelm
parents: 4204
diff changeset
    35
  (type_args -- name >> (mk_pair o apfst mk_list)) --$$ "="
4226
38c91213f26b fixed record parser;
wenzelm
parents: 4225
diff changeset
    36
    -- optional (typ --$$ "+" >> (parens o cat "Some")) "None"
4225
3d9e551bc5a6 improved record syntax;
wenzelm
parents: 4204
diff changeset
    37
    -- repeat1 ((name --$$ "::" -- typ) >> mk_pair)
4001
b6a3c2665c45 record: tuned output;
wenzelm
parents: 3980
diff changeset
    38
  >> (fn ((x, y), zs) => cat_lines [x, y, mk_big_list zs]);
3980
21ef91734970 added record section;
wenzelm
parents: 3945
diff changeset
    39
21ef91734970 added record section;
wenzelm
parents: 3945
diff changeset
    40
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    41
(** (co)inductive **)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    42
5097
6c4a7ad6ebc7 Adapted to new inductive definition package.
berghofe
parents: 4873
diff changeset
    43
fun inductive_decl coind =
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    44
  let
6426
9a2ace82b68e intrs: names and atts;
wenzelm
parents: 6381
diff changeset
    45
    val no_atts = map (mk_pair o rpair "[]");
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    46
    fun mk_intr_name (s, _) =   (*the "op" cancels any infix status*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    47
      if Syntax.is_identifier s then "op " ^ s else "_";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    48
    fun mk_params (((recs, ipairs), monos), con_defs) =
6035
c041fc54ab4c replaced obsolete "trim" by "strip_quotes"
paulson
parents: 5716
diff changeset
    49
      let val big_rec_name = space_implode "_" (map (scan_to_id o strip_quotes) recs)
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    50
          and srec_tms = mk_list recs
6426
9a2ace82b68e intrs: names and atts;
wenzelm
parents: 6381
diff changeset
    51
          and sintrs   = mk_big_list (no_atts (map (mk_pair o apfst quote) ipairs))
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    52
      in
5097
6c4a7ad6ebc7 Adapted to new inductive definition package.
berghofe
parents: 4873
diff changeset
    53
        ";\n\n\
6c4a7ad6ebc7 Adapted to new inductive definition package.
berghofe
parents: 4873
diff changeset
    54
        \local\n\
6c4a7ad6ebc7 Adapted to new inductive definition package.
berghofe
parents: 4873
diff changeset
    55
        \val (thy, {defs, mono, unfold, intrs, elims, mk_cases, induct, ...}) =\n\
6c4a7ad6ebc7 Adapted to new inductive definition package.
berghofe
parents: 4873
diff changeset
    56
        \  InductivePackage.add_inductive true " ^
6c4a7ad6ebc7 Adapted to new inductive definition package.
berghofe
parents: 4873
diff changeset
    57
        (if coind then "true " else "false ") ^ srec_tms ^ " " ^
6426
9a2ace82b68e intrs: names and atts;
wenzelm
parents: 6381
diff changeset
    58
         sintrs ^ " " ^ mk_list (no_atts monos) ^ " " ^ mk_list (no_atts con_defs) ^ " thy;\n\
5097
6c4a7ad6ebc7 Adapted to new inductive definition package.
berghofe
parents: 4873
diff changeset
    59
        \in\n\
6c4a7ad6ebc7 Adapted to new inductive definition package.
berghofe
parents: 4873
diff changeset
    60
        \structure " ^ big_rec_name ^ " =\n\
6c4a7ad6ebc7 Adapted to new inductive definition package.
berghofe
parents: 4873
diff changeset
    61
        \struct\n\
6c4a7ad6ebc7 Adapted to new inductive definition package.
berghofe
parents: 4873
diff changeset
    62
        \  val defs = defs;\n\
6c4a7ad6ebc7 Adapted to new inductive definition package.
berghofe
parents: 4873
diff changeset
    63
        \  val mono = mono;\n\
6c4a7ad6ebc7 Adapted to new inductive definition package.
berghofe
parents: 4873
diff changeset
    64
        \  val unfold = unfold;\n\
6c4a7ad6ebc7 Adapted to new inductive definition package.
berghofe
parents: 4873
diff changeset
    65
        \  val intrs = intrs;\n\
6c4a7ad6ebc7 Adapted to new inductive definition package.
berghofe
parents: 4873
diff changeset
    66
        \  val elims = elims;\n\
6c4a7ad6ebc7 Adapted to new inductive definition package.
berghofe
parents: 4873
diff changeset
    67
        \  val elim = hd elims;\n\
6c4a7ad6ebc7 Adapted to new inductive definition package.
berghofe
parents: 4873
diff changeset
    68
        \  val " ^ (if coind then "co" else "") ^ "induct = induct;\n\
6c4a7ad6ebc7 Adapted to new inductive definition package.
berghofe
parents: 4873
diff changeset
    69
        \  val mk_cases = mk_cases;\n\
6c4a7ad6ebc7 Adapted to new inductive definition package.
berghofe
parents: 4873
diff changeset
    70
        \  val " ^ mk_list (map mk_intr_name ipairs) ^ " = intrs;\n\
6c4a7ad6ebc7 Adapted to new inductive definition package.
berghofe
parents: 4873
diff changeset
    71
        \end;\n\
6c4a7ad6ebc7 Adapted to new inductive definition package.
berghofe
parents: 4873
diff changeset
    72
        \val thy = thy;\nend;\n\
6c4a7ad6ebc7 Adapted to new inductive definition package.
berghofe
parents: 4873
diff changeset
    73
        \val thy = thy\n"
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    74
      end
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    75
    val ipairs = "intrs" $$-- repeat1 (ident -- !! string)
5716
a3d2a6b6693e Changed syntax of rep_datatype and inductive: Theorems
berghofe
parents: 5658
diff changeset
    76
    fun optlist s = optional (s $$-- list1 name) []
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    77
  in
5716
a3d2a6b6693e Changed syntax of rep_datatype and inductive: Theorems
berghofe
parents: 5658
diff changeset
    78
    repeat1 name -- ipairs -- optlist "monos" -- optlist "con_defs"
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    79
      >> mk_params
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    80
  end;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    81
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    82
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    83
(** datatype **)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    84
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    85
local
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5097
diff changeset
    86
  (*** generate string for calling add_datatype ***)
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5097
diff changeset
    87
  (*** and bindig theorems to ML identifiers    ***)
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    88
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5097
diff changeset
    89
  fun mk_bind_thms_string names =
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5097
diff changeset
    90
   (case find_first (not o Syntax.is_identifier) names of
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5097
diff changeset
    91
      Some id => (warning (id ^ " is not a valid identifier"); "")
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5097
diff changeset
    92
    | None =>
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5097
diff changeset
    93
        let
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5097
diff changeset
    94
          fun mk_dt_struct (s, (id, i)) =
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5097
diff changeset
    95
            s ^ "structure " ^ id ^ " =\n\
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5097
diff changeset
    96
            \struct\n\
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5097
diff changeset
    97
            \  val distinct = nth_elem (" ^ i ^ ", distinct);\n\
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5097
diff changeset
    98
            \  val inject = nth_elem (" ^ i ^ ", inject);\n\
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5097
diff changeset
    99
            \  val exhaust = nth_elem (" ^ i ^ ", exhaustion);\n\
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5097
diff changeset
   100
            \  val cases = nth_elem (" ^ i ^ ", case_thms);\n\
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5097
diff changeset
   101
            \  val (split, split_asm) = nth_elem (" ^ i ^ ", split_thms);\n" ^
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5097
diff changeset
   102
              (if length names = 1 then
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5097
diff changeset
   103
                 "  val induct = induction;\n\
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5097
diff changeset
   104
                 \  val recs = rec_thms;\n\
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5097
diff changeset
   105
                 \  val simps = simps;\n\
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5097
diff changeset
   106
                 \  val size = size;\n"
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5097
diff changeset
   107
               else "") ^
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5097
diff changeset
   108
            "end;\n";
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5097
diff changeset
   109
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5097
diff changeset
   110
          val structs = foldl mk_dt_struct
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5097
diff changeset
   111
            ("", (names ~~ (map string_of_int (0 upto length names - 1))));
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5097
diff changeset
   112
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5097
diff changeset
   113
        in
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5097
diff changeset
   114
          (if length names > 1 then
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5097
diff changeset
   115
             "structure " ^ (space_implode "_" names) ^ " =\n\
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5097
diff changeset
   116
             \struct\n\
5658
082debccf486 Changed structure of name spaces for datatypes.
berghofe
parents: 5222
diff changeset
   117
             \  val induct = induction;\n\
082debccf486 Changed structure of name spaces for datatypes.
berghofe
parents: 5222
diff changeset
   118
             \  val recs = rec_thms;\n\
082debccf486 Changed structure of name spaces for datatypes.
berghofe
parents: 5222
diff changeset
   119
             \  val simps = simps;\n\
082debccf486 Changed structure of name spaces for datatypes.
berghofe
parents: 5222
diff changeset
   120
             \  val size = size;\nend;\n"
082debccf486 Changed structure of name spaces for datatypes.
berghofe
parents: 5222
diff changeset
   121
           else "") ^ structs
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5097
diff changeset
   122
        end);
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5097
diff changeset
   123
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5097
diff changeset
   124
  fun mk_dt_string dts =
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   125
    let
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5097
diff changeset
   126
      val names = map (fn ((((alt_name, _), name), _), _) =>
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5097
diff changeset
   127
        strip_quotes (if_none alt_name name)) dts;
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5097
diff changeset
   128
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5097
diff changeset
   129
      val add_datatype_args = brackets (commas (map quote names)) ^ " " ^
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5097
diff changeset
   130
        brackets (commas (map (fn ((((_, vs), name), mx), cs) =>
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5097
diff changeset
   131
          parens (brackets (commas vs) ^ ", " ^ name ^ ", " ^ mx ^ ", " ^
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5097
diff changeset
   132
            brackets (commas cs))) dts));
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5097
diff changeset
   133
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   134
    in
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5097
diff changeset
   135
      ";\nlocal\n\
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5097
diff changeset
   136
      \val (thy, {distinct, inject, exhaustion, rec_thms,\n\
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5097
diff changeset
   137
      \  case_thms, split_thms, induction, size, simps}) =\n\
6103
36f272ea9413 get_tthms witness theorems;
wenzelm
parents: 6035
diff changeset
   138
      \ DatatypePackage.add_datatype false " ^ add_datatype_args ^ " thy;\n\
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5097
diff changeset
   139
      \in\n" ^ mk_bind_thms_string names ^
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5097
diff changeset
   140
      "val thy = thy;\nend;\nval thy = thy\n"
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   141
    end;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   142
6381
ed0c7b4a325d adapted rep_datatype;
wenzelm
parents: 6356
diff changeset
   143
  fun mk_thmss namess = mk_list (map (mk_list o map (mk_pair o rpair "[]")) namess);
ed0c7b4a325d adapted rep_datatype;
wenzelm
parents: 6356
diff changeset
   144
  fun mk_thm name = mk_pair (name, "[]");
6103
36f272ea9413 get_tthms witness theorems;
wenzelm
parents: 6035
diff changeset
   145
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5097
diff changeset
   146
  fun mk_rep_dt_string (((names, distinct), inject), induct) =
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5097
diff changeset
   147
    ";\nlocal\n\
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5097
diff changeset
   148
    \val (thy, {distinct, inject, exhaustion, rec_thms,\n\
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5097
diff changeset
   149
    \  case_thms, split_thms, induction, size, simps}) =\n\
6103
36f272ea9413 get_tthms witness theorems;
wenzelm
parents: 6035
diff changeset
   150
    \ DatatypePackage.rep_datatype " ^
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5097
diff changeset
   151
    (case names of
6103
36f272ea9413 get_tthms witness theorems;
wenzelm
parents: 6035
diff changeset
   152
        Some names => "(Some [" ^ commas_quote names ^ "])\n " ^
36f272ea9413 get_tthms witness theorems;
wenzelm
parents: 6035
diff changeset
   153
          mk_thmss distinct ^ "\n " ^ mk_thmss inject ^
36f272ea9413 get_tthms witness theorems;
wenzelm
parents: 6035
diff changeset
   154
            "\n " ^ mk_thm induct ^ " thy;\nin\n" ^ mk_bind_thms_string names
36f272ea9413 get_tthms witness theorems;
wenzelm
parents: 6035
diff changeset
   155
      | None => "None\n " ^ mk_thmss distinct ^ "\n " ^ mk_thmss inject ^
36f272ea9413 get_tthms witness theorems;
wenzelm
parents: 6035
diff changeset
   156
            "\n " ^ mk_thm induct ^ " thy;\nin\n") ^
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5097
diff changeset
   157
    "val thy = thy;\nend;\nval thy = thy\n";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   158
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5097
diff changeset
   159
  (*** parsers ***)
4106
wenzelm
parents: 4091
diff changeset
   160
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5097
diff changeset
   161
  val simple_typ = ident || (type_var >> strip_quotes);
1316
ce35d42d2190 extended complex_typ
clasohm
parents: 1264
diff changeset
   162
1251
81fc4d8e3eda added nested types on right hand side of datatype definitions
clasohm
parents: 977
diff changeset
   163
  fun complex_typ toks =
1316
ce35d42d2190 extended complex_typ
clasohm
parents: 1264
diff changeset
   164
    let val typ = simple_typ || "(" $$-- complex_typ --$$ ")";
ce35d42d2190 extended complex_typ
clasohm
parents: 1264
diff changeset
   165
        val typ2 = complex_typ || "(" $$-- complex_typ --$$ ")";
ce35d42d2190 extended complex_typ
clasohm
parents: 1264
diff changeset
   166
    in
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5097
diff changeset
   167
     (typ ^^ (repeat ident >> (cat "" o space_implode " ")) ||
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5097
diff changeset
   168
      "(" $$-- !! (list1 typ2 >> (parens o commas)) --$$ ")" ^^ !!
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5097
diff changeset
   169
        (repeat1 ident >> (cat "" o space_implode " "))) toks
1316
ce35d42d2190 extended complex_typ
clasohm
parents: 1264
diff changeset
   170
    end;
ce35d42d2190 extended complex_typ
clasohm
parents: 1264
diff changeset
   171
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5097
diff changeset
   172
  val opt_typs = repeat ((string >> strip_quotes) ||
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5097
diff changeset
   173
    simple_typ || ("(" $$-- complex_typ --$$ ")"));
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5097
diff changeset
   174
  val constructor = name -- opt_typs -- opt_mixfix >> (fn ((n, Ts), mx) =>
5716
a3d2a6b6693e Changed syntax of rep_datatype and inductive: Theorems
berghofe
parents: 5658
diff changeset
   175
    parens (n ^ ", " ^ brackets (commas_quote Ts) ^ ", " ^ mx));
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5097
diff changeset
   176
  val opt_name = optional ("(" $$-- name --$$ ")" >> Some) None
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5097
diff changeset
   177
5716
a3d2a6b6693e Changed syntax of rep_datatype and inductive: Theorems
berghofe
parents: 5658
diff changeset
   178
  fun optlistlist s = optional (s $$-- enum "and" (list name)) [[]]
a3d2a6b6693e Changed syntax of rep_datatype and inductive: Theorems
berghofe
parents: 5658
diff changeset
   179
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   180
in
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   181
  val datatype_decl =
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5097
diff changeset
   182
    enum1 "and" (opt_name -- type_args -- name -- opt_infix --$$ "=" --
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5097
diff changeset
   183
      enum1 "|" constructor) >> mk_dt_string;
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5097
diff changeset
   184
  val rep_datatype_decl =
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5097
diff changeset
   185
    ((optional ((repeat1 (name >> strip_quotes)) >> Some) None) --
5716
a3d2a6b6693e Changed syntax of rep_datatype and inductive: Theorems
berghofe
parents: 5658
diff changeset
   186
      optlistlist "distinct" -- optlistlist "inject" --
a3d2a6b6693e Changed syntax of rep_datatype and inductive: Theorems
berghofe
parents: 5658
diff changeset
   187
        ("induct" $$-- name)) >> mk_rep_dt_string;
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   188
end;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   189
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   190
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   191
(** primrec **)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   192
5716
a3d2a6b6693e Changed syntax of rep_datatype and inductive: Theorems
berghofe
parents: 5658
diff changeset
   193
fun mk_primrec_decl (alt_name, eqns) =
a3d2a6b6693e Changed syntax of rep_datatype and inductive: Theorems
berghofe
parents: 5658
diff changeset
   194
  let
a3d2a6b6693e Changed syntax of rep_datatype and inductive: Theorems
berghofe
parents: 5658
diff changeset
   195
    val names = map (fn (s, _) => if s = "" then "_" else s) eqns
a3d2a6b6693e Changed syntax of rep_datatype and inductive: Theorems
berghofe
parents: 5658
diff changeset
   196
  in
6356
6c01697e082e primrec: empty attributes;
wenzelm
parents: 6103
diff changeset
   197
    ";\nval (thy, " ^ mk_list names ^ ") = PrimrecPackage.add_primrec " ^ alt_name ^ " " ^
6c01697e082e primrec: empty attributes;
wenzelm
parents: 6103
diff changeset
   198
    mk_list (map (fn (x, y) => mk_pair (mk_pair (quote x, y), "[]")) eqns) ^
6c01697e082e primrec: empty attributes;
wenzelm
parents: 6103
diff changeset
   199
    " " ^ " thy;\n\
5716
a3d2a6b6693e Changed syntax of rep_datatype and inductive: Theorems
berghofe
parents: 5658
diff changeset
   200
    \val thy = thy\n"
a3d2a6b6693e Changed syntax of rep_datatype and inductive: Theorems
berghofe
parents: 5658
diff changeset
   201
  end;
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   202
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5097
diff changeset
   203
(* either names and axioms or just axioms *)
5716
a3d2a6b6693e Changed syntax of rep_datatype and inductive: Theorems
berghofe
parents: 5658
diff changeset
   204
val primrec_decl = (optional ("(" $$-- name --$$ ")") "\"\"" --
a3d2a6b6693e Changed syntax of rep_datatype and inductive: Theorems
berghofe
parents: 5658
diff changeset
   205
  (repeat1 ((ident -- string) || (string >> pair "")))) >> mk_primrec_decl;
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   206
2922
580647a879cf Using Blast_tac
paulson
parents: 1845
diff changeset
   207
580647a879cf Using Blast_tac
paulson
parents: 1845
diff changeset
   208
(** rec: interface to Slind's TFL **)
580647a879cf Using Blast_tac
paulson
parents: 1845
diff changeset
   209
580647a879cf Using Blast_tac
paulson
parents: 1845
diff changeset
   210
3194
36bfceef1800 TFL theory section
paulson
parents: 2930
diff changeset
   211
(*fname: name of function being defined; rel: well-founded relation*)
3456
fdb1768ebd3e New "congs" keyword for recdef theory section
paulson
parents: 3403
diff changeset
   212
fun mk_rec_decl ((((fname, rel), congs), ss), axms) =
6035
c041fc54ab4c replaced obsolete "trim" by "strip_quotes"
paulson
parents: 5716
diff changeset
   213
  let val fid = strip_quotes fname
3194
36bfceef1800 TFL theory section
paulson
parents: 2930
diff changeset
   214
      val intrnl_name = fid ^ "_Intrnl"
2922
580647a879cf Using Blast_tac
paulson
parents: 1845
diff changeset
   215
  in
580647a879cf Using Blast_tac
paulson
parents: 1845
diff changeset
   216
	 (";\n\n\
3194
36bfceef1800 TFL theory section
paulson
parents: 2930
diff changeset
   217
          \val _ = writeln \"Recursive function " ^ fid ^ "\"\n\
36bfceef1800 TFL theory section
paulson
parents: 2930
diff changeset
   218
          \val (thy, pats_" ^ intrnl_name ^ ") = Tfl.define thy " ^ 
3345
4d888ddd6284 Now recdef checks the name of the function being defined.
paulson
parents: 3308
diff changeset
   219
	                 quote fid ^ " " ^ 
3194
36bfceef1800 TFL theory section
paulson
parents: 2930
diff changeset
   220
	                 rel ^ "\n" ^ mk_big_list axms ^ ";\n\
2922
580647a879cf Using Blast_tac
paulson
parents: 1845
diff changeset
   221
          \val thy = thy"
580647a879cf Using Blast_tac
paulson
parents: 1845
diff changeset
   222
         ,
3194
36bfceef1800 TFL theory section
paulson
parents: 2930
diff changeset
   223
          "structure " ^ fid ^ " =\n\
36bfceef1800 TFL theory section
paulson
parents: 2930
diff changeset
   224
          \  struct\n\
36bfceef1800 TFL theory section
paulson
parents: 2930
diff changeset
   225
          \  val _ = writeln \"Proofs for recursive function " ^ fid ^ "\"\n\
36bfceef1800 TFL theory section
paulson
parents: 2930
diff changeset
   226
          \  val {rules, induct, tcs} = \n\
3456
fdb1768ebd3e New "congs" keyword for recdef theory section
paulson
parents: 3403
diff changeset
   227
          \    \t Tfl.simplify_defn (" ^ ss ^ ", " ^ congs ^ ")\n\
fdb1768ebd3e New "congs" keyword for recdef theory section
paulson
parents: 3403
diff changeset
   228
          \    \t\t  (thy, (" ^ quote fid ^ ", pats_" ^ intrnl_name ^ "))\n\
3194
36bfceef1800 TFL theory section
paulson
parents: 2930
diff changeset
   229
          \  end;\n\
36bfceef1800 TFL theory section
paulson
parents: 2930
diff changeset
   230
          \val pats_" ^ intrnl_name ^ " = ();\n")
2922
580647a879cf Using Blast_tac
paulson
parents: 1845
diff changeset
   231
  end;
580647a879cf Using Blast_tac
paulson
parents: 1845
diff changeset
   232
6035
c041fc54ab4c replaced obsolete "trim" by "strip_quotes"
paulson
parents: 5716
diff changeset
   233
val rec_decl = 
c041fc54ab4c replaced obsolete "trim" by "strip_quotes"
paulson
parents: 5716
diff changeset
   234
    (name -- string -- 
c041fc54ab4c replaced obsolete "trim" by "strip_quotes"
paulson
parents: 5716
diff changeset
   235
     optional ("congs" $$-- string >> strip_quotes) "[]" -- 
c041fc54ab4c replaced obsolete "trim" by "strip_quotes"
paulson
parents: 5716
diff changeset
   236
     optional ("simpset" $$-- string >> strip_quotes) "simpset()" -- 
c041fc54ab4c replaced obsolete "trim" by "strip_quotes"
paulson
parents: 5716
diff changeset
   237
     repeat1 string >> mk_rec_decl) ;
2922
580647a879cf Using Blast_tac
paulson
parents: 1845
diff changeset
   238
580647a879cf Using Blast_tac
paulson
parents: 1845
diff changeset
   239
580647a879cf Using Blast_tac
paulson
parents: 1845
diff changeset
   240
3622
85898be702b2 use ThySyn.add_syntax;
wenzelm
parents: 3617
diff changeset
   241
(** augment thy syntax **)
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   242
3622
85898be702b2 use ThySyn.add_syntax;
wenzelm
parents: 3617
diff changeset
   243
in
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   244
3622
85898be702b2 use ThySyn.add_syntax;
wenzelm
parents: 3617
diff changeset
   245
val _ = ThySyn.add_syntax
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5097
diff changeset
   246
 ["intrs", "monos", "con_defs", "congs", "simpset", "|",
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5097
diff changeset
   247
  "and", "distinct", "inject", "induct"]
4873
b5999638979e TypedefPackage.add_typedef;
wenzelm
parents: 4536
diff changeset
   248
 [axm_section "typedef" "|> TypedefPackage.add_typedef" typedef_decl,
5097
6c4a7ad6ebc7 Adapted to new inductive definition package.
berghofe
parents: 4873
diff changeset
   249
  section "record" "|> RecordPackage.add_record" record_decl,
6c4a7ad6ebc7 Adapted to new inductive definition package.
berghofe
parents: 4873
diff changeset
   250
  section "inductive" "" (inductive_decl false),
6c4a7ad6ebc7 Adapted to new inductive definition package.
berghofe
parents: 4873
diff changeset
   251
  section "coinductive" "" (inductive_decl true),
6c4a7ad6ebc7 Adapted to new inductive definition package.
berghofe
parents: 4873
diff changeset
   252
  section "datatype" "" datatype_decl,
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5097
diff changeset
   253
  section "rep_datatype" "" rep_datatype_decl,
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5097
diff changeset
   254
  section "primrec" "" primrec_decl,
2922
580647a879cf Using Blast_tac
paulson
parents: 1845
diff changeset
   255
  ("recdef", rec_decl)];
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   256
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   257
end;