src/HOL/thy_syntax.ML
author paulson
Wed, 09 Oct 1996 13:32:33 +0200
changeset 2073 fb0655539d05
parent 1845 afa622bc829d
child 2922 580647a879cf
permissions -rw-r--r--
New unified treatment of sequent calculi by Sara Kalvala combines the old LK and Modal with the new ILL (Int. Linear Logic)
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
TODO:
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     8
  move datatype / primrec stuff to pre_datatype.ML (?)
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
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    11
(*the kind of distinctiveness axioms depends on number of constructors*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    12
val dtK = 5;  (* FIXME rename?, move? *)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    13
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    14
structure ThySynData: THY_SYN_DATA =
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    15
struct
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    16
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    17
open ThyParse;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    18
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    19
1475
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
    20
(** typedef **)
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    21
1475
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
    22
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
    23
  let
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    24
    val name' = if_none opt_name t;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    25
    val name = strip_quotes name';
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    26
  in
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    27
    (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
    28
      [name ^ "_def", "Rep_" ^ name, "Rep_" ^ name ^ "_inverse",
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    29
        "Abs_" ^ name ^ "_inverse"])
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    30
  end;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    31
1475
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
    32
val typedef_decl =
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    33
  optional ("(" $$-- name --$$ ")" >> Some) None --
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    34
  type_args -- name -- opt_infix --$$ "=" -- string -- opt_witness
1475
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
    35
  >> mk_typedef_decl;
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    36
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    37
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    38
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    39
(** (co)inductive **)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    40
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    41
(*co is either "" or "Co"*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    42
fun inductive_decl co =
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    43
  let
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    44
    fun mk_intr_name (s, _) =   (*the "op" cancels any infix status*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    45
      if Syntax.is_identifier s then "op " ^ s else "_";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    46
    fun mk_params (((recs, ipairs), monos), con_defs) =
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    47
      let val big_rec_name = space_implode "_" (map (scan_to_id o trim) recs)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    48
          and srec_tms = mk_list recs
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    49
          and sintrs   = mk_big_list (map snd ipairs)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    50
          val stri_name = big_rec_name ^ "_Intrnl"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    51
      in
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    52
         (";\n\n\
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    53
          \structure " ^ stri_name ^ " =\n\
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    54
          \  struct\n\
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    55
          \  val _ = writeln \"" ^ co ^
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    56
                     "Inductive definition " ^ big_rec_name ^ "\"\n\
1430
439e1476a7f8 Improving space efficiency of inductive/datatype definitions.
paulson
parents: 1316
diff changeset
    57
          \  val rec_tms\t= map (readtm (sign_of thy) Ind_Syntax.termTVar) "
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    58
                           ^ srec_tms ^ "\n\
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    59
          \  and intr_tms\t= map (readtm (sign_of thy) propT)\n"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    60
                           ^ sintrs ^ "\n\
1430
439e1476a7f8 Improving space efficiency of inductive/datatype definitions.
paulson
parents: 1316
diff changeset
    61
          \  end;\n\n\
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    62
          \val thy = thy |> " ^ co ^ "Ind.add_fp_def_i \n    (" ^
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    63
             stri_name ^ ".rec_tms, " ^
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    64
             stri_name ^ ".intr_tms)"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    65
         ,
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    66
          "structure " ^ big_rec_name ^ " =\n\
1430
439e1476a7f8 Improving space efficiency of inductive/datatype definitions.
paulson
parents: 1316
diff changeset
    67
          \ let\n\
439e1476a7f8 Improving space efficiency of inductive/datatype definitions.
paulson
parents: 1316
diff changeset
    68
          \  val _ = writeln \"Proofs for " ^ co ^ 
439e1476a7f8 Improving space efficiency of inductive/datatype definitions.
paulson
parents: 1316
diff changeset
    69
                     "Inductive definition " ^ big_rec_name ^ "\"\n\
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    70
          \  structure Result = " ^ co ^ "Ind_section_Fun\n\
1430
439e1476a7f8 Improving space efficiency of inductive/datatype definitions.
paulson
parents: 1316
diff changeset
    71
          \\t  (open " ^ stri_name ^ "\n\
439e1476a7f8 Improving space efficiency of inductive/datatype definitions.
paulson
parents: 1316
diff changeset
    72
          \\t   val thy\t\t= thy\n\
439e1476a7f8 Improving space efficiency of inductive/datatype definitions.
paulson
parents: 1316
diff changeset
    73
          \\t   val monos\t\t= " ^ monos ^ "\n\
439e1476a7f8 Improving space efficiency of inductive/datatype definitions.
paulson
parents: 1316
diff changeset
    74
          \\t   val con_defs\t\t= " ^ con_defs ^ ");\n\n\
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1430
diff changeset
    75
          \ in\n\
1430
439e1476a7f8 Improving space efficiency of inductive/datatype definitions.
paulson
parents: 1316
diff changeset
    76
          \  struct\n\
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    77
          \  val " ^ mk_list (map mk_intr_name ipairs) ^ " = Result.intrs;\n\
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    78
          \  open Result\n\
1430
439e1476a7f8 Improving space efficiency of inductive/datatype definitions.
paulson
parents: 1316
diff changeset
    79
          \  end\n\
439e1476a7f8 Improving space efficiency of inductive/datatype definitions.
paulson
parents: 1316
diff changeset
    80
          \ end;\n\n\
439e1476a7f8 Improving space efficiency of inductive/datatype definitions.
paulson
parents: 1316
diff changeset
    81
          \structure " ^ stri_name ^ " = struct end;\n\n"
923
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
      end
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    84
    val ipairs = "intrs" $$-- repeat1 (ident -- !! string)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    85
    fun optstring s = optional (s $$-- string) "\"[]\"" >> trim
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    86
  in
1788
ca62fab4ce92 Quotes now optional around inductive set
paulson
parents: 1668
diff changeset
    87
    repeat1 name -- ipairs -- optstring "monos" -- optstring "con_defs"
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    88
      >> mk_params
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    89
  end;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    90
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    91
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    92
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    93
(** datatype **)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    94
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    95
local
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    96
  (* FIXME err -> add_datatype *)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    97
  fun mk_cons cs =
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    98
    (case duplicates (map (fst o fst) cs) of
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    99
      [] => map (fn ((s, ts), syn) => mk_triple (s, mk_list ts, syn)) cs
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   100
    | dups => error ("Duplicate constructors: " ^ commas_quote dups));
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   101
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   102
  (*generate names of distinctiveness axioms*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   103
  fun mk_distinct_rules cs tname =
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   104
    let
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   105
      val uqcs = map (fn ((s, _), _) => strip_quotes s) cs;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   106
      (*combine all constructor names with all others w/o duplicates*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   107
      fun neg_one c = map (fn c2 => quote (c ^ "_not_" ^ c2));
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   108
      fun neg1 [] = []
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   109
        | neg1 (c1 :: cs) = neg_one c1 cs @ neg1 cs;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   110
    in
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   111
      if length uqcs < dtK then neg1 uqcs
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   112
      else quote (tname ^ "_ord_distinct") ::
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   113
        map (fn c => quote (tname ^ "_ord_" ^ c)) uqcs
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   114
    end;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   115
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   116
  fun mk_rules tname cons pre = " map (get_axiom thy) " ^
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   117
    mk_list (map (fn ((s, _), _) => quote (tname ^ pre ^ strip_quotes s)) cons);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   118
1668
8ead1fe65aad added Konrad's code for the datatype package
clasohm
parents: 1574
diff changeset
   119
  (*generate string for calling add_datatype and build_record*)
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   120
  fun mk_params ((ts, tname), cons) =
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   121
   ("val (thy, " ^ tname ^ "_add_primrec) = Datatype.add_datatype\n"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   122
    ^ mk_triple (mk_list ts, quote tname, mk_list (mk_cons cons)) ^ " thy\n\
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   123
    \val thy = thy",
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   124
    "structure " ^ tname ^ " =\n\
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   125
    \struct\n\
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   126
    \ val inject = map (get_axiom thy) " ^
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   127
        mk_list (map (fn ((s, _), _) => quote ("inject_" ^ strip_quotes s))
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   128
          (filter_out (null o snd o fst) cons)) ^ ";\n\
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   129
    \ val distinct = " ^
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   130
        (if length cons < dtK then "let val distinct' = " else "") ^
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   131
        "map (get_axiom thy) " ^ mk_list (mk_distinct_rules cons tname) ^
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   132
        (if length cons < dtK then
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   133
          "  in distinct' @ (map (fn t => sym COMP (t RS contrapos))\
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   134
          \ distinct') end"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   135
         else "") ^ ";\n\
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   136
    \ val induct = get_axiom thy \"" ^ tname ^ "_induct\";\n\
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   137
    \ val cases =" ^ mk_rules tname cons "_case_" ^ ";\n\
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   138
    \ val recs =" ^ mk_rules tname cons "_rec_" ^ ";\n\
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   139
    \ val simps = inject @ distinct @ cases @ recs;\n\
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   140
    \ fun induct_tac a = res_inst_tac [(" ^ quote tname ^ ", a)] induct;\n\
1264
3eb91524b938 added local simpsets; removed IOA from 'make test'
clasohm
parents: 1251
diff changeset
   141
    \end;\n\
1668
8ead1fe65aad added Konrad's code for the datatype package
clasohm
parents: 1574
diff changeset
   142
    \val dummy = datatypes := Dtype.build_record (thy, " ^
8ead1fe65aad added Konrad's code for the datatype package
clasohm
parents: 1574
diff changeset
   143
      mk_pair (quote tname, mk_list (map (fst o fst) cons)) ^
8ead1fe65aad added Konrad's code for the datatype package
clasohm
parents: 1574
diff changeset
   144
      ", " ^ tname ^ ".induct_tac) :: (!datatypes);\n\
1264
3eb91524b938 added local simpsets; removed IOA from 'make test'
clasohm
parents: 1251
diff changeset
   145
    \val dummy = Addsimps " ^ tname ^ ".simps;\n");
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   146
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   147
  (*parsers*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   148
  val tvars = type_args >> map (cat "dtVar");
1316
ce35d42d2190 extended complex_typ
clasohm
parents: 1264
diff changeset
   149
ce35d42d2190 extended complex_typ
clasohm
parents: 1264
diff changeset
   150
  val simple_typ = ident >> (cat "dtTyp" o curry mk_pair "[]" o quote) ||
ce35d42d2190 extended complex_typ
clasohm
parents: 1264
diff changeset
   151
    type_var >> cat "dtVar";
ce35d42d2190 extended complex_typ
clasohm
parents: 1264
diff changeset
   152
1251
81fc4d8e3eda added nested types on right hand side of datatype definitions
clasohm
parents: 977
diff changeset
   153
  fun complex_typ toks =
1316
ce35d42d2190 extended complex_typ
clasohm
parents: 1264
diff changeset
   154
    let val typ = simple_typ || "(" $$-- complex_typ --$$ ")";
ce35d42d2190 extended complex_typ
clasohm
parents: 1264
diff changeset
   155
        val typ2 = complex_typ || "(" $$-- complex_typ --$$ ")";
ce35d42d2190 extended complex_typ
clasohm
parents: 1264
diff changeset
   156
    in
ce35d42d2190 extended complex_typ
clasohm
parents: 1264
diff changeset
   157
     (typ -- repeat (ident>>quote) >>
ce35d42d2190 extended complex_typ
clasohm
parents: 1264
diff changeset
   158
        (foldl (fn (x,y) => "dtTyp " ^ mk_pair (brackets x, y))) ||
ce35d42d2190 extended complex_typ
clasohm
parents: 1264
diff changeset
   159
      "(" $$-- !! (list1 typ2) --$$ ")" -- !! (repeat1 (ident>>quote)) >>
ce35d42d2190 extended complex_typ
clasohm
parents: 1264
diff changeset
   160
       (fn (fst, ids) => foldl (fn (x,y) => "dtTyp " ^
ce35d42d2190 extended complex_typ
clasohm
parents: 1264
diff changeset
   161
                         mk_pair (brackets x, y)) (commas fst, ids))) toks
ce35d42d2190 extended complex_typ
clasohm
parents: 1264
diff changeset
   162
    end;
ce35d42d2190 extended complex_typ
clasohm
parents: 1264
diff changeset
   163
977
5d57287e5e1e changed syntax of datatype declarations (curried types for constructor
clasohm
parents: 923
diff changeset
   164
  val opt_typs = repeat (simple_typ || ("(" $$-- complex_typ --$$ ")"));
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   165
  val constructor = name -- opt_typs -- opt_mixfix;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   166
in
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   167
  val datatype_decl =
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   168
    tvars -- ident --$$ "=" -- enum1 "|" constructor >> mk_params;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   169
end;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   170
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   171
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   172
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   173
(** primrec **)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   174
1845
afa622bc829d Simplified syntax of primrec definitions.
berghofe
parents: 1788
diff changeset
   175
fun mk_primrec_decl_1 ((fname, tname), axms) =
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   176
  let
1574
5a63ab90ee8a modified primrec so it can be used in MiniML/Type.thy
clasohm
parents: 1475
diff changeset
   177
    (*Isolate type name from the structure's identifier it may be stored in*)
5a63ab90ee8a modified primrec so it can be used in MiniML/Type.thy
clasohm
parents: 1475
diff changeset
   178
    val tname' = implode (snd (take_suffix (not_equal ".") (explode tname)));
5a63ab90ee8a modified primrec so it can be used in MiniML/Type.thy
clasohm
parents: 1475
diff changeset
   179
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   180
    fun mk_prove (name, eqn) =
1264
3eb91524b938 added local simpsets; removed IOA from 'make test'
clasohm
parents: 1251
diff changeset
   181
      "val " ^ name ^ " = store_thm (" ^ quote name
1574
5a63ab90ee8a modified primrec so it can be used in MiniML/Type.thy
clasohm
parents: 1475
diff changeset
   182
      ^ ", prove_goalw thy [get_def thy "
5a63ab90ee8a modified primrec so it can be used in MiniML/Type.thy
clasohm
parents: 1475
diff changeset
   183
      ^ (quote (strip_quotes fname ^ "_" ^ tname')) ^ "] " ^ eqn ^ "\n\
1264
3eb91524b938 added local simpsets; removed IOA from 'make test'
clasohm
parents: 1251
diff changeset
   184
      \  (fn _ => [Simp_tac 1]));";
3eb91524b938 added local simpsets; removed IOA from 'make test'
clasohm
parents: 1251
diff changeset
   185
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   186
    val axs = mk_list (map (fn (n, a) => mk_pair (quote n, a)) axms);
1264
3eb91524b938 added local simpsets; removed IOA from 'make test'
clasohm
parents: 1251
diff changeset
   187
  in ("|> " ^ tname ^ "_add_primrec " ^ axs, cat_lines (map mk_prove axms)
3eb91524b938 added local simpsets; removed IOA from 'make test'
clasohm
parents: 1251
diff changeset
   188
      ^ "\nval dummy = Addsimps " ^ mk_list (map fst axms) ^ ";")
3eb91524b938 added local simpsets; removed IOA from 'make test'
clasohm
parents: 1251
diff changeset
   189
  end;
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   190
1845
afa622bc829d Simplified syntax of primrec definitions.
berghofe
parents: 1788
diff changeset
   191
fun mk_primrec_decl_2 ((fname, tname), axms) =
afa622bc829d Simplified syntax of primrec definitions.
berghofe
parents: 1788
diff changeset
   192
  let
afa622bc829d Simplified syntax of primrec definitions.
berghofe
parents: 1788
diff changeset
   193
    (*Isolate type name from the structure's identifier it may be stored in*)
afa622bc829d Simplified syntax of primrec definitions.
berghofe
parents: 1788
diff changeset
   194
    val tname' = implode (snd (take_suffix (not_equal ".") (explode tname)));
afa622bc829d Simplified syntax of primrec definitions.
berghofe
parents: 1788
diff changeset
   195
afa622bc829d Simplified syntax of primrec definitions.
berghofe
parents: 1788
diff changeset
   196
    fun mk_prove eqn =
afa622bc829d Simplified syntax of primrec definitions.
berghofe
parents: 1788
diff changeset
   197
      "prove_goalw thy [get_def thy "
afa622bc829d Simplified syntax of primrec definitions.
berghofe
parents: 1788
diff changeset
   198
      ^ (quote (strip_quotes fname ^ "_" ^ tname')) ^ "] " ^ eqn ^ " \
afa622bc829d Simplified syntax of primrec definitions.
berghofe
parents: 1788
diff changeset
   199
      \(fn _ => [Simp_tac 1])";
afa622bc829d Simplified syntax of primrec definitions.
berghofe
parents: 1788
diff changeset
   200
afa622bc829d Simplified syntax of primrec definitions.
berghofe
parents: 1788
diff changeset
   201
    val axs = mk_list (map (fn a => mk_pair ("\"\"", a)) axms);
afa622bc829d Simplified syntax of primrec definitions.
berghofe
parents: 1788
diff changeset
   202
  in ("|> " ^ tname ^ "_add_primrec " ^ axs,
afa622bc829d Simplified syntax of primrec definitions.
berghofe
parents: 1788
diff changeset
   203
      "val dummy = Addsimps " ^
afa622bc829d Simplified syntax of primrec definitions.
berghofe
parents: 1788
diff changeset
   204
      brackets(space_implode ",\n" (map mk_prove axms)) ^ ";")
afa622bc829d Simplified syntax of primrec definitions.
berghofe
parents: 1788
diff changeset
   205
  end;
afa622bc829d Simplified syntax of primrec definitions.
berghofe
parents: 1788
diff changeset
   206
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   207
val primrec_decl =
1845
afa622bc829d Simplified syntax of primrec definitions.
berghofe
parents: 1788
diff changeset
   208
  (name -- long_id -- repeat1 (ident -- string) >> mk_primrec_decl_1) ||
afa622bc829d Simplified syntax of primrec definitions.
berghofe
parents: 1788
diff changeset
   209
  (name -- long_id -- repeat1 string >> mk_primrec_decl_2) ;
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   210
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   211
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   212
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   213
(** sections **)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   214
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   215
val user_keywords = ["intrs", "monos", "con_defs", "|"];
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   216
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   217
val user_sections =
1475
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   218
 [axm_section "typedef" "|> Typedef.add_typedef" typedef_decl,
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   219
  ("inductive", inductive_decl ""),
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   220
  ("coinductive", inductive_decl "Co"),
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   221
  ("datatype", datatype_decl),
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   222
  ("primrec", primrec_decl)];
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   223
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   224
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   225
end;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   226
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   227
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   228
structure ThySyn = ThySynFun(ThySynData);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   229
init_thy_reader ();
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   230