src/HOLCF/pcpodef_package.ML
author wenzelm
Tue, 21 Nov 2006 18:07:30 +0100
changeset 21434 944f80576be0
parent 21359 072e83a0b5bb
permissions -rw-r--r--
simplified Proof.theorem(_i);
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
16696
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
     1
(*  Title:      HOLCF/pcpodef_package.ML
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
     2
    ID:         $Id$
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
     3
    Author:     Brian Huffman
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
     4
21352
073c79be780c removed legacy read/cert/string_of;
wenzelm
parents: 20483
diff changeset
     5
Primitive domain definitions for HOLCF, similar to Gordon/HOL-style
073c79be780c removed legacy read/cert/string_of;
wenzelm
parents: 20483
diff changeset
     6
typedef.
16696
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
     7
*)
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
     8
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
     9
signature PCPODEF_PACKAGE =
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
    10
sig
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
    11
  val quiet_mode: bool ref
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
    12
  val pcpodef_proof: (bool * string) * (bstring * string list * mixfix) * string
17336
c05f72cff368 tuned IsarThy.theorem_i;
wenzelm
parents: 17325
diff changeset
    13
    * (string * string) option -> theory -> Proof.state
16696
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
    14
  val pcpodef_proof_i: (bool * string) * (bstring * string list * mixfix) * term
17336
c05f72cff368 tuned IsarThy.theorem_i;
wenzelm
parents: 17325
diff changeset
    15
    * (string * string) option -> theory -> Proof.state
16696
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
    16
  val cpodef_proof: (bool * string) * (bstring * string list * mixfix) * string
17336
c05f72cff368 tuned IsarThy.theorem_i;
wenzelm
parents: 17325
diff changeset
    17
    * (string * string) option -> theory -> Proof.state
16696
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
    18
  val cpodef_proof_i: (bool * string) * (bstring * string list * mixfix) * term
17336
c05f72cff368 tuned IsarThy.theorem_i;
wenzelm
parents: 17325
diff changeset
    19
    * (string * string) option -> theory -> Proof.state
16696
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
    20
end;
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
    21
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
    22
structure PcpodefPackage: PCPODEF_PACKAGE =
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
    23
struct
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
    24
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
    25
(** theory context references **)
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
    26
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
    27
val typedef_po = thm "typedef_po";
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
    28
val typedef_cpo = thm "typedef_cpo";
16919
6df23e3180fb removed duplicated code; generate new lub and thelub lemmas for new cpo types
huffman
parents: 16696
diff changeset
    29
val typedef_pcpo = thm "typedef_pcpo";
6df23e3180fb removed duplicated code; generate new lub and thelub lemmas for new cpo types
huffman
parents: 16696
diff changeset
    30
val typedef_lub = thm "typedef_lub";
6df23e3180fb removed duplicated code; generate new lub and thelub lemmas for new cpo types
huffman
parents: 16696
diff changeset
    31
val typedef_thelub = thm "typedef_thelub";
17833
8631dfe017a8 added theorem typedef_compact
huffman
parents: 17810
diff changeset
    32
val typedef_compact = thm "typedef_compact";
16696
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
    33
val cont_Rep = thm "typedef_cont_Rep";
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
    34
val cont_Abs = thm "typedef_cont_Abs";
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
    35
val Rep_strict = thm "typedef_Rep_strict";
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
    36
val Abs_strict = thm "typedef_Abs_strict";
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
    37
val Rep_defined = thm "typedef_Rep_defined";
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
    38
val Abs_defined = thm "typedef_Abs_defined";
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
    39
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
    40
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
    41
(** type definitions **)
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
    42
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
    43
(* messages *)
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
    44
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
    45
val quiet_mode = ref false;
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
    46
fun message s = if ! quiet_mode then () else writeln s;
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
    47
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
    48
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
    49
(* prepare_cpodef *)
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
    50
18678
dd0c569fa43d sane ERROR handling;
wenzelm
parents: 18377
diff changeset
    51
fun err_in_cpodef msg name =
dd0c569fa43d sane ERROR handling;
wenzelm
parents: 18377
diff changeset
    52
  cat_error msg ("The error(s) above occurred in cpodef " ^ quote name);
16696
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
    53
21352
073c79be780c removed legacy read/cert/string_of;
wenzelm
parents: 20483
diff changeset
    54
fun declare_type_name a = Variable.declare_constraints (Logic.mk_type (TFree (a, dummyS)));
073c79be780c removed legacy read/cert/string_of;
wenzelm
parents: 20483
diff changeset
    55
16696
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
    56
fun adm_const T = Const ("Adm.adm", (T --> HOLogic.boolT) --> HOLogic.boolT);
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
    57
fun mk_adm (x, T, P) = adm_const T $ absfree (x, T, P);
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
    58
21352
073c79be780c removed legacy read/cert/string_of;
wenzelm
parents: 20483
diff changeset
    59
fun prepare_pcpodef prep_term pcpo def name (t, vs, mx) raw_set opt_morphs thy =
16696
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
    60
  let
21352
073c79be780c removed legacy read/cert/string_of;
wenzelm
parents: 20483
diff changeset
    61
    val ctxt = ProofContext.init thy;
16696
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
    62
    val full = Sign.full_name thy;
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
    63
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
    64
    (*rhs*)
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
    65
    val full_name = full name;
21352
073c79be780c removed legacy read/cert/string_of;
wenzelm
parents: 20483
diff changeset
    66
    val set = prep_term (ctxt |> fold declare_type_name vs) raw_set;
073c79be780c removed legacy read/cert/string_of;
wenzelm
parents: 20483
diff changeset
    67
    val setT = Term.fastype_of set;
16696
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
    68
    val rhs_tfrees = term_tfrees set;
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
    69
    val oldT = HOLogic.dest_setT setT handle TYPE _ =>
21352
073c79be780c removed legacy read/cert/string_of;
wenzelm
parents: 20483
diff changeset
    70
      error ("Not a set type: " ^ quote (ProofContext.string_of_typ ctxt setT));
16696
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
    71
    fun mk_nonempty A =
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
    72
      HOLogic.mk_exists ("x", oldT, HOLogic.mk_mem (Free ("x", oldT), A));
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
    73
    fun mk_admissible A =
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
    74
      mk_adm ("x", oldT, HOLogic.mk_mem (Free ("x", oldT), A));
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
    75
    fun mk_UU_mem A = HOLogic.mk_mem (Const ("Pcpo.UU", oldT), A);
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
    76
    val goal = if pcpo
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
    77
      then HOLogic.mk_Trueprop (HOLogic.mk_conj (mk_UU_mem set, mk_admissible set))
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
    78
      else HOLogic.mk_Trueprop (HOLogic.mk_conj (mk_nonempty set, mk_admissible set));
21352
073c79be780c removed legacy read/cert/string_of;
wenzelm
parents: 20483
diff changeset
    79
16696
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
    80
    (*lhs*)
21352
073c79be780c removed legacy read/cert/string_of;
wenzelm
parents: 20483
diff changeset
    81
    val defS = Sign.defaultS thy;
073c79be780c removed legacy read/cert/string_of;
wenzelm
parents: 20483
diff changeset
    82
    val lhs_tfrees = map (fn v => (v, the_default defS (AList.lookup (op =) rhs_tfrees v))) vs;
16696
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
    83
    val lhs_sorts = map snd lhs_tfrees;
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
    84
    val tname = Syntax.type_name t mx;
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
    85
    val full_tname = full tname;
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
    86
    val newT = Type (full_tname, map TFree lhs_tfrees);
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
    87
21352
073c79be780c removed legacy read/cert/string_of;
wenzelm
parents: 20483
diff changeset
    88
    val (Rep_name, Abs_name) = the_default ("Rep_" ^ name, "Abs_" ^ name) opt_morphs;
16696
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
    89
    val RepC = Const (full Rep_name, newT --> oldT);
17810
3bdf516d93d8 cleaned up; renamed "Porder.op <<" to "Porder.<<"
huffman
parents: 17336
diff changeset
    90
    fun lessC T = Const ("Porder.<<", T --> T --> HOLogic.boolT);
16696
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
    91
    val less_def = ("less_" ^ name ^ "_def", Logic.mk_equals (lessC newT,
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
    92
      Abs ("x", newT, Abs ("y", newT, lessC oldT $ (RepC $ Bound 1) $ (RepC $ Bound 0)))));
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
    93
21352
073c79be780c removed legacy read/cert/string_of;
wenzelm
parents: 20483
diff changeset
    94
    fun make_po tac theory = theory
16696
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
    95
      |> TypedefPackage.add_typedef_i def (SOME name) (t, vs, mx) set opt_morphs tac
19349
36e537f89585 cleanup in typedef/datatype package
haftmann
parents: 19247
diff changeset
    96
      ||> AxClass.prove_arity (full_tname, lhs_sorts, ["Porder.sq_ord"])
19110
4bda27adcd2e moved intro_classes from AxClass to ClassPackage
haftmann
parents: 18799
diff changeset
    97
           (ClassPackage.intro_classes_tac [])
19349
36e537f89585 cleanup in typedef/datatype package
haftmann
parents: 19247
diff changeset
    98
      ||>> PureThy.add_defs_i true [Thm.no_attributes less_def]
20483
04aa552a83bc TypedefPackage.add_typedef_* now yields name of introduced type constructor
haftmann
parents: 19585
diff changeset
    99
      |-> (fn ((_, {type_definition, set_def, ...}), [less_definition]) =>
19349
36e537f89585 cleanup in typedef/datatype package
haftmann
parents: 19247
diff changeset
   100
          AxClass.prove_arity (full_tname, lhs_sorts, ["Porder.po"])
18358
0a733e11021a re-oriented some result tuples in PureThy
haftmann
parents: 17833
diff changeset
   101
             (Tactic.rtac (typedef_po OF [type_definition, less_definition]) 1)
21352
073c79be780c removed legacy read/cert/string_of;
wenzelm
parents: 20483
diff changeset
   102
           #> pair (type_definition, less_definition, set_def));
073c79be780c removed legacy read/cert/string_of;
wenzelm
parents: 20483
diff changeset
   103
073c79be780c removed legacy read/cert/string_of;
wenzelm
parents: 20483
diff changeset
   104
    fun make_cpo admissible (type_def, less_def, set_def) theory =
16919
6df23e3180fb removed duplicated code; generate new lub and thelub lemmas for new cpo types
huffman
parents: 16696
diff changeset
   105
      let
21352
073c79be780c removed legacy read/cert/string_of;
wenzelm
parents: 20483
diff changeset
   106
        val admissible' = fold_rule (the_list set_def) admissible;
16919
6df23e3180fb removed duplicated code; generate new lub and thelub lemmas for new cpo types
huffman
parents: 16696
diff changeset
   107
        val cpo_thms = [type_def, less_def, admissible'];
21352
073c79be780c removed legacy read/cert/string_of;
wenzelm
parents: 20483
diff changeset
   108
      in
073c79be780c removed legacy read/cert/string_of;
wenzelm
parents: 20483
diff changeset
   109
        theory
073c79be780c removed legacy read/cert/string_of;
wenzelm
parents: 20483
diff changeset
   110
        |> AxClass.prove_arity (full_tname, lhs_sorts, ["Pcpo.cpo"])
073c79be780c removed legacy read/cert/string_of;
wenzelm
parents: 20483
diff changeset
   111
          (Tactic.rtac (typedef_cpo OF cpo_thms) 1)
073c79be780c removed legacy read/cert/string_of;
wenzelm
parents: 20483
diff changeset
   112
        |> Theory.add_path name
073c79be780c removed legacy read/cert/string_of;
wenzelm
parents: 20483
diff changeset
   113
        |> PureThy.add_thms
16919
6df23e3180fb removed duplicated code; generate new lub and thelub lemmas for new cpo types
huffman
parents: 16696
diff changeset
   114
            ([(("adm_" ^ name, admissible'), []),
6df23e3180fb removed duplicated code; generate new lub and thelub lemmas for new cpo types
huffman
parents: 16696
diff changeset
   115
              (("cont_" ^ Rep_name, cont_Rep OF cpo_thms), []),
6df23e3180fb removed duplicated code; generate new lub and thelub lemmas for new cpo types
huffman
parents: 16696
diff changeset
   116
              (("cont_" ^ Abs_name, cont_Abs OF cpo_thms), []),
17833
8631dfe017a8 added theorem typedef_compact
huffman
parents: 17810
diff changeset
   117
              (("lub_"     ^ name, typedef_lub     OF cpo_thms), []),
8631dfe017a8 added theorem typedef_compact
huffman
parents: 17810
diff changeset
   118
              (("thelub_"  ^ name, typedef_thelub  OF cpo_thms), []),
8631dfe017a8 added theorem typedef_compact
huffman
parents: 17810
diff changeset
   119
              (("compact_" ^ name, typedef_compact OF cpo_thms), [])])
21352
073c79be780c removed legacy read/cert/string_of;
wenzelm
parents: 20483
diff changeset
   120
        |> snd
073c79be780c removed legacy read/cert/string_of;
wenzelm
parents: 20483
diff changeset
   121
        |> Theory.parent_path
073c79be780c removed legacy read/cert/string_of;
wenzelm
parents: 20483
diff changeset
   122
      end;
16919
6df23e3180fb removed duplicated code; generate new lub and thelub lemmas for new cpo types
huffman
parents: 16696
diff changeset
   123
21352
073c79be780c removed legacy read/cert/string_of;
wenzelm
parents: 20483
diff changeset
   124
    fun make_pcpo UUmem (type_def, less_def, set_def) theory =
16919
6df23e3180fb removed duplicated code; generate new lub and thelub lemmas for new cpo types
huffman
parents: 16696
diff changeset
   125
      let
21352
073c79be780c removed legacy read/cert/string_of;
wenzelm
parents: 20483
diff changeset
   126
        val UUmem' = fold_rule (the_list set_def) UUmem;
16919
6df23e3180fb removed duplicated code; generate new lub and thelub lemmas for new cpo types
huffman
parents: 16696
diff changeset
   127
        val pcpo_thms = [type_def, less_def, UUmem'];
21352
073c79be780c removed legacy read/cert/string_of;
wenzelm
parents: 20483
diff changeset
   128
      in
073c79be780c removed legacy read/cert/string_of;
wenzelm
parents: 20483
diff changeset
   129
        theory
073c79be780c removed legacy read/cert/string_of;
wenzelm
parents: 20483
diff changeset
   130
        |> AxClass.prove_arity (full_tname, lhs_sorts, ["Pcpo.pcpo"])
073c79be780c removed legacy read/cert/string_of;
wenzelm
parents: 20483
diff changeset
   131
          (Tactic.rtac (typedef_pcpo OF pcpo_thms) 1)
073c79be780c removed legacy read/cert/string_of;
wenzelm
parents: 20483
diff changeset
   132
        |> Theory.add_path name
073c79be780c removed legacy read/cert/string_of;
wenzelm
parents: 20483
diff changeset
   133
        |> PureThy.add_thms
16919
6df23e3180fb removed duplicated code; generate new lub and thelub lemmas for new cpo types
huffman
parents: 16696
diff changeset
   134
            ([((Rep_name ^ "_strict", Rep_strict OF pcpo_thms), []),
6df23e3180fb removed duplicated code; generate new lub and thelub lemmas for new cpo types
huffman
parents: 16696
diff changeset
   135
              ((Abs_name ^ "_strict", Abs_strict OF pcpo_thms), []),
6df23e3180fb removed duplicated code; generate new lub and thelub lemmas for new cpo types
huffman
parents: 16696
diff changeset
   136
              ((Rep_name ^ "_defined", Rep_defined OF pcpo_thms), []),
6df23e3180fb removed duplicated code; generate new lub and thelub lemmas for new cpo types
huffman
parents: 16696
diff changeset
   137
              ((Abs_name ^ "_defined", Abs_defined OF pcpo_thms), [])
6df23e3180fb removed duplicated code; generate new lub and thelub lemmas for new cpo types
huffman
parents: 16696
diff changeset
   138
              ])
21352
073c79be780c removed legacy read/cert/string_of;
wenzelm
parents: 20483
diff changeset
   139
        |> snd
073c79be780c removed legacy read/cert/string_of;
wenzelm
parents: 20483
diff changeset
   140
        |> Theory.parent_path
073c79be780c removed legacy read/cert/string_of;
wenzelm
parents: 20483
diff changeset
   141
      end;
073c79be780c removed legacy read/cert/string_of;
wenzelm
parents: 20483
diff changeset
   142
073c79be780c removed legacy read/cert/string_of;
wenzelm
parents: 20483
diff changeset
   143
    fun pcpodef_result UUmem_admissible theory =
16696
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
   144
      let
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
   145
        val UUmem = UUmem_admissible RS conjunct1;
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
   146
        val admissible = UUmem_admissible RS conjunct2;
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
   147
      in
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
   148
        theory
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
   149
        |> make_po (Tactic.rtac exI 1 THEN Tactic.rtac UUmem 1)
21352
073c79be780c removed legacy read/cert/string_of;
wenzelm
parents: 20483
diff changeset
   150
        |-> (fn defs => make_cpo admissible defs #> make_pcpo UUmem defs)
16696
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
   151
      end;
21352
073c79be780c removed legacy read/cert/string_of;
wenzelm
parents: 20483
diff changeset
   152
073c79be780c removed legacy read/cert/string_of;
wenzelm
parents: 20483
diff changeset
   153
    fun cpodef_result nonempty_admissible theory =
16696
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
   154
      let
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
   155
        val nonempty = nonempty_admissible RS conjunct1;
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
   156
        val admissible = nonempty_admissible RS conjunct2;
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
   157
      in
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
   158
        theory
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
   159
        |> make_po (Tactic.rtac nonempty 1)
21352
073c79be780c removed legacy read/cert/string_of;
wenzelm
parents: 20483
diff changeset
   160
        |-> make_cpo admissible
16696
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
   161
      end;
21352
073c79be780c removed legacy read/cert/string_of;
wenzelm
parents: 20483
diff changeset
   162
16696
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
   163
  in (goal, if pcpo then pcpodef_result else cpodef_result) end
18678
dd0c569fa43d sane ERROR handling;
wenzelm
parents: 18377
diff changeset
   164
  handle ERROR msg => err_in_cpodef msg name;
16696
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
   165
21352
073c79be780c removed legacy read/cert/string_of;
wenzelm
parents: 20483
diff changeset
   166
16696
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
   167
(* cpodef_proof interface *)
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
   168
17336
c05f72cff368 tuned IsarThy.theorem_i;
wenzelm
parents: 17325
diff changeset
   169
fun gen_pcpodef_proof prep_term pcpo ((def, name), typ, set, opt_morphs) thy =
16696
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
   170
  let
21352
073c79be780c removed legacy read/cert/string_of;
wenzelm
parents: 20483
diff changeset
   171
    val (goal, pcpodef_result) =
073c79be780c removed legacy read/cert/string_of;
wenzelm
parents: 20483
diff changeset
   172
      prepare_pcpodef prep_term pcpo def name typ set opt_morphs thy;
073c79be780c removed legacy read/cert/string_of;
wenzelm
parents: 20483
diff changeset
   173
    fun after_qed [[th]] = ProofContext.theory (pcpodef_result th);
21434
944f80576be0 simplified Proof.theorem(_i);
wenzelm
parents: 21359
diff changeset
   174
  in Proof.theorem_i NONE after_qed [[(goal, [])]] (ProofContext.init thy) end;
16696
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
   175
21352
073c79be780c removed legacy read/cert/string_of;
wenzelm
parents: 20483
diff changeset
   176
fun pcpodef_proof x = gen_pcpodef_proof ProofContext.read_term true x;
073c79be780c removed legacy read/cert/string_of;
wenzelm
parents: 20483
diff changeset
   177
fun pcpodef_proof_i x = gen_pcpodef_proof ProofContext.cert_term true x;
16696
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
   178
21352
073c79be780c removed legacy read/cert/string_of;
wenzelm
parents: 20483
diff changeset
   179
fun cpodef_proof x = gen_pcpodef_proof ProofContext.read_term false x;
073c79be780c removed legacy read/cert/string_of;
wenzelm
parents: 20483
diff changeset
   180
fun cpodef_proof_i x = gen_pcpodef_proof ProofContext.cert_term false x;
16696
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
   181
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
   182
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
   183
(** outer syntax **)
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
   184
17057
0934ac31985f OuterKeyword;
wenzelm
parents: 16919
diff changeset
   185
local structure P = OuterParse and K = OuterKeyword in
16696
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
   186
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
   187
(* copied from HOL/Tools/typedef_package.ML *)
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
   188
val typedef_proof_decl =
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
   189
  Scan.optional (P.$$$ "(" |--
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
   190
      ((P.$$$ "open" >> K false) -- Scan.option P.name || P.name >> (fn s => (true, SOME s)))
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
   191
        --| P.$$$ ")") (true, NONE) --
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
   192
    (P.type_args -- P.name) -- P.opt_infix -- (P.$$$ "=" |-- P.term) --
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
   193
    Scan.option (P.$$$ "morphisms" |-- P.!!! (P.name -- P.name));
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
   194
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
   195
fun mk_pcpodef_proof pcpo ((((((def, opt_name), (vs, t)), mx), A), morphs)) =
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
   196
  (if pcpo then pcpodef_proof else cpodef_proof)
21352
073c79be780c removed legacy read/cert/string_of;
wenzelm
parents: 20483
diff changeset
   197
    ((def, the_default (Syntax.type_name t mx) opt_name), (t, vs, mx), A, morphs);
16696
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
   198
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
   199
val pcpodefP =
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
   200
  OuterSyntax.command "pcpodef" "HOLCF type definition (requires admissibility proof)" K.thy_goal
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
   201
    (typedef_proof_decl >>
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
   202
      (Toplevel.print oo (Toplevel.theory_to_proof o mk_pcpodef_proof true)));
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
   203
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
   204
val cpodefP =
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
   205
  OuterSyntax.command "cpodef" "HOLCF type definition (requires admissibility proof)" K.thy_goal
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
   206
    (typedef_proof_decl >>
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
   207
      (Toplevel.print oo (Toplevel.theory_to_proof o mk_pcpodef_proof false)));
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
   208
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
   209
val _ = OuterSyntax.add_parsers [pcpodefP, cpodefP];
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
   210
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
   211
end;
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
   212
9486b3442351 new type definition package for HOLCF
huffman
parents:
diff changeset
   213
end;