src/HOL/Tools/typedef.ML
author wenzelm
Thu, 03 Sep 2015 21:50:39 +0200
changeset 61110 6b7c2ecc6aea
parent 61103 8ed21464e260
child 61246 077b88f9ec16
permissions -rw-r--r--
more general Typedef.bindings; tuned signature;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
31723
f5cafe803b55 discontinued ancient tradition to suffix certain ML module names with "_package"
haftmann
parents: 30345
diff changeset
     1
(*  Title:      HOL/Tools/typedef.ML
16458
4c6fd0c01d28 accomodate change of TheoryDataFun;
wenzelm
parents: 16126
diff changeset
     2
    Author:     Markus Wenzel and Stefan Berghofer, TU Muenchen
4866
72a46bd00c8d renamed from typedef.ML;
wenzelm
parents:
diff changeset
     3
21352
073c79be780c removed legacy read/cert/string_of;
wenzelm
parents: 20483
diff changeset
     4
Gordon/HOL-style type definitions: create a new syntactic type
35741
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
     5
represented by a non-empty set.
4866
72a46bd00c8d renamed from typedef.ML;
wenzelm
parents:
diff changeset
     6
*)
72a46bd00c8d renamed from typedef.ML;
wenzelm
parents:
diff changeset
     7
31723
f5cafe803b55 discontinued ancient tradition to suffix certain ML module names with "_package"
haftmann
parents: 30345
diff changeset
     8
signature TYPEDEF =
4866
72a46bd00c8d renamed from typedef.ML;
wenzelm
parents:
diff changeset
     9
sig
19705
08de66826677 simplified info/get_info;
wenzelm
parents: 19617
diff changeset
    10
  type info =
36107
2af69e16eced expose foundational typedef axiom name;
wenzelm
parents: 36106
diff changeset
    11
   {rep_type: typ, abs_type: typ, Rep_name: string, Abs_name: string, axiom_name: string} *
49833
1d80798e8d8a discontinued typedef with implicit set_def;
wenzelm
parents: 47702
diff changeset
    12
   {inhabited: thm, type_definition: thm, Rep: thm, Rep_inverse: thm, Abs_inverse: thm,
1d80798e8d8a discontinued typedef with implicit set_def;
wenzelm
parents: 47702
diff changeset
    13
    Rep_inject: thm, Abs_inject: thm, Rep_cases: thm, Abs_cases: thm,
29061
c67cc9402ba9 inhabitance goal is now stated in original form and result contracted --
wenzelm
parents: 29059
diff changeset
    14
    Rep_induct: thm, Abs_induct: thm}
35741
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
    15
  val transform_info: morphism -> info -> info
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
    16
  val get_info: Proof.context -> string -> info list
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
    17
  val get_info_global: theory -> string -> info list
58662
5963cdbad926 module Interpretation is superseded by Plugin;
wenzelm
parents: 58239
diff changeset
    18
  val interpretation: (string -> local_theory -> local_theory) -> theory -> theory
61110
6b7c2ecc6aea more general Typedef.bindings;
wenzelm
parents: 61103
diff changeset
    19
  type bindings = {Rep_name: binding, Abs_name: binding, type_definition_name: binding}
6b7c2ecc6aea more general Typedef.bindings;
wenzelm
parents: 61103
diff changeset
    20
  val default_bindings: binding -> bindings
6b7c2ecc6aea more general Typedef.bindings;
wenzelm
parents: 61103
diff changeset
    21
  val make_bindings: binding -> bindings option -> bindings
6b7c2ecc6aea more general Typedef.bindings;
wenzelm
parents: 61103
diff changeset
    22
  val make_morphisms: binding -> (binding * binding) option -> bindings
6b7c2ecc6aea more general Typedef.bindings;
wenzelm
parents: 61103
diff changeset
    23
  val add_typedef: binding * (string * sort) list * mixfix ->
6b7c2ecc6aea more general Typedef.bindings;
wenzelm
parents: 61103
diff changeset
    24
    term -> bindings option -> (Proof.context -> tactic) -> local_theory ->
58959
1f195ed99941 proper proof context for typedef;
wenzelm
parents: 58662
diff changeset
    25
    (string * info) * local_theory
61110
6b7c2ecc6aea more general Typedef.bindings;
wenzelm
parents: 61103
diff changeset
    26
  val add_typedef_global: binding * (string * sort) list * mixfix ->
6b7c2ecc6aea more general Typedef.bindings;
wenzelm
parents: 61103
diff changeset
    27
    term -> bindings option -> (Proof.context -> tactic) -> theory ->
58959
1f195ed99941 proper proof context for typedef;
wenzelm
parents: 58662
diff changeset
    28
    (string * info) * theory
61110
6b7c2ecc6aea more general Typedef.bindings;
wenzelm
parents: 61103
diff changeset
    29
  val typedef: binding * (string * sort) list * mixfix -> term -> bindings option ->
6b7c2ecc6aea more general Typedef.bindings;
wenzelm
parents: 61103
diff changeset
    30
    local_theory -> Proof.state
6b7c2ecc6aea more general Typedef.bindings;
wenzelm
parents: 61103
diff changeset
    31
  val typedef_cmd: binding * (string * string option) list * mixfix -> string -> bindings option ->
6b7c2ecc6aea more general Typedef.bindings;
wenzelm
parents: 61103
diff changeset
    32
    local_theory -> Proof.state
4866
72a46bd00c8d renamed from typedef.ML;
wenzelm
parents:
diff changeset
    33
end;
72a46bd00c8d renamed from typedef.ML;
wenzelm
parents:
diff changeset
    34
31723
f5cafe803b55 discontinued ancient tradition to suffix certain ML module names with "_package"
haftmann
parents: 30345
diff changeset
    35
structure Typedef: TYPEDEF =
4866
72a46bd00c8d renamed from typedef.ML;
wenzelm
parents:
diff changeset
    36
struct
72a46bd00c8d renamed from typedef.ML;
wenzelm
parents:
diff changeset
    37
17922
0cba8edb269e removed obsolete add_typedef_x;
wenzelm
parents: 17412
diff changeset
    38
(** type definitions **)
0cba8edb269e removed obsolete add_typedef_x;
wenzelm
parents: 17412
diff changeset
    39
0cba8edb269e removed obsolete add_typedef_x;
wenzelm
parents: 17412
diff changeset
    40
(* theory data *)
15259
6aa593317905 Added simple code generator.
berghofe
parents: 14981
diff changeset
    41
19705
08de66826677 simplified info/get_info;
wenzelm
parents: 19617
diff changeset
    42
type info =
35994
9cc3df9a606e Typedef.info: separate global and local part, only the latter is transformed by morphisms;
wenzelm
parents: 35840
diff changeset
    43
  (*global part*)
36107
2af69e16eced expose foundational typedef axiom name;
wenzelm
parents: 36106
diff changeset
    44
  {rep_type: typ, abs_type: typ, Rep_name: string, Abs_name: string, axiom_name: string} *
35741
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
    45
  (*local part*)
49833
1d80798e8d8a discontinued typedef with implicit set_def;
wenzelm
parents: 47702
diff changeset
    46
  {inhabited: thm, type_definition: thm, Rep: thm, Rep_inverse: thm, Abs_inverse: thm,
1d80798e8d8a discontinued typedef with implicit set_def;
wenzelm
parents: 47702
diff changeset
    47
    Rep_inject: thm, Abs_inject: thm, Rep_cases: thm, Abs_cases: thm,
35994
9cc3df9a606e Typedef.info: separate global and local part, only the latter is transformed by morphisms;
wenzelm
parents: 35840
diff changeset
    48
    Rep_induct: thm, Abs_induct: thm};
19459
2041d472fc17 seperated typedef codegen from main code
haftmann
parents: 19391
diff changeset
    49
35741
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
    50
fun transform_info phi (info: info) =
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
    51
  let
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
    52
    val thm = Morphism.thm phi;
49833
1d80798e8d8a discontinued typedef with implicit set_def;
wenzelm
parents: 47702
diff changeset
    53
    val (global_info, {inhabited, type_definition, Rep, Rep_inverse, Abs_inverse,
1d80798e8d8a discontinued typedef with implicit set_def;
wenzelm
parents: 47702
diff changeset
    54
      Rep_inject, Abs_inject, Rep_cases, Abs_cases, Rep_induct, Abs_induct}) = info;
35741
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
    55
  in
35994
9cc3df9a606e Typedef.info: separate global and local part, only the latter is transformed by morphisms;
wenzelm
parents: 35840
diff changeset
    56
    (global_info,
9cc3df9a606e Typedef.info: separate global and local part, only the latter is transformed by morphisms;
wenzelm
parents: 35840
diff changeset
    57
     {inhabited = thm inhabited, type_definition = thm type_definition,
49833
1d80798e8d8a discontinued typedef with implicit set_def;
wenzelm
parents: 47702
diff changeset
    58
      Rep = thm Rep, Rep_inverse = thm Rep_inverse, Abs_inverse = thm Abs_inverse,
1d80798e8d8a discontinued typedef with implicit set_def;
wenzelm
parents: 47702
diff changeset
    59
      Rep_inject = thm Rep_inject, Abs_inject = thm Abs_inject,
1d80798e8d8a discontinued typedef with implicit set_def;
wenzelm
parents: 47702
diff changeset
    60
      Rep_cases = thm Rep_cases, Abs_cases = thm Abs_cases,
1d80798e8d8a discontinued typedef with implicit set_def;
wenzelm
parents: 47702
diff changeset
    61
      Rep_induct = thm Rep_induct, Abs_induct = thm Abs_induct})
35741
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
    62
  end;
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
    63
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
    64
structure Data = Generic_Data
22846
fb79144af9a3 simplified DataFun interfaces;
wenzelm
parents: 21565
diff changeset
    65
(
35741
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
    66
  type T = info list Symtab.table;
15259
6aa593317905 Added simple code generator.
berghofe
parents: 14981
diff changeset
    67
  val empty = Symtab.empty;
16458
4c6fd0c01d28 accomodate change of TheoryDataFun;
wenzelm
parents: 16126
diff changeset
    68
  val extend = I;
35741
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
    69
  fun merge data = Symtab.merge_list (K true) data;
22846
fb79144af9a3 simplified DataFun interfaces;
wenzelm
parents: 21565
diff changeset
    70
);
15259
6aa593317905 Added simple code generator.
berghofe
parents: 14981
diff changeset
    71
61103
8ed21464e260 trim context for persistent storage;
wenzelm
parents: 59936
diff changeset
    72
fun get_info_generic context =
8ed21464e260 trim context for persistent storage;
wenzelm
parents: 59936
diff changeset
    73
  Symtab.lookup_list (Data.get context) #>
8ed21464e260 trim context for persistent storage;
wenzelm
parents: 59936
diff changeset
    74
  map (transform_info (Morphism.transfer_morphism (Context.theory_of context)));
35741
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
    75
61103
8ed21464e260 trim context for persistent storage;
wenzelm
parents: 59936
diff changeset
    76
val get_info = get_info_generic o Context.Proof;
8ed21464e260 trim context for persistent storage;
wenzelm
parents: 59936
diff changeset
    77
val get_info_global = get_info_generic o Context.Theory;
8ed21464e260 trim context for persistent storage;
wenzelm
parents: 59936
diff changeset
    78
8ed21464e260 trim context for persistent storage;
wenzelm
parents: 59936
diff changeset
    79
fun put_info name info =
8ed21464e260 trim context for persistent storage;
wenzelm
parents: 59936
diff changeset
    80
  Data.map (Symtab.cons_list (name, transform_info Morphism.trim_context_morphism info));
35741
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
    81
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
    82
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
    83
(* global interpretation *)
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
    84
58662
5963cdbad926 module Interpretation is superseded by Plugin;
wenzelm
parents: 58239
diff changeset
    85
structure Typedef_Plugin = Plugin(type T = string);
5963cdbad926 module Interpretation is superseded by Plugin;
wenzelm
parents: 58239
diff changeset
    86
5963cdbad926 module Interpretation is superseded by Plugin;
wenzelm
parents: 58239
diff changeset
    87
val typedef_plugin = Plugin_Name.declare_setup @{binding typedef};
56375
32e0da92c786 use same idiom as used for datatype 'size' function to name constants and theorems emerging from various type interpretations -- reduces the chances of name clashes on theory merges
blanchet
parents: 54883
diff changeset
    88
58662
5963cdbad926 module Interpretation is superseded by Plugin;
wenzelm
parents: 58239
diff changeset
    89
fun interpretation f =
5963cdbad926 module Interpretation is superseded by Plugin;
wenzelm
parents: 58239
diff changeset
    90
  Typedef_Plugin.interpretation typedef_plugin
5963cdbad926 module Interpretation is superseded by Plugin;
wenzelm
parents: 58239
diff changeset
    91
    (fn name => fn lthy =>
5963cdbad926 module Interpretation is superseded by Plugin;
wenzelm
parents: 58239
diff changeset
    92
      lthy
59880
30687c3f2b10 clarified role of naming for background theory: transform_binding (e.g. for "concealed" flag) uses naming of hypothetical context;
wenzelm
parents: 59859
diff changeset
    93
      |> Local_Theory.map_background_naming
58662
5963cdbad926 module Interpretation is superseded by Plugin;
wenzelm
parents: 58239
diff changeset
    94
          (Name_Space.root_path #> Name_Space.add_path (Long_Name.qualifier name))
5963cdbad926 module Interpretation is superseded by Plugin;
wenzelm
parents: 58239
diff changeset
    95
      |> f name
59880
30687c3f2b10 clarified role of naming for background theory: transform_binding (e.g. for "concealed" flag) uses naming of hypothetical context;
wenzelm
parents: 59859
diff changeset
    96
      |> Local_Theory.restore_background_naming lthy);
35741
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
    97
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
    98
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
    99
(* primitive typedef axiomatization -- for fresh typedecl *)
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   100
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   101
fun mk_inhabited A =
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   102
  let val T = HOLogic.dest_setT (Term.fastype_of A)
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   103
  in HOLogic.mk_Trueprop (HOLogic.exists_const T $ Abs ("x", T, HOLogic.mk_mem (Bound 0, A))) end;
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   104
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   105
fun mk_typedef newT oldT RepC AbsC A =
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   106
  let
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   107
    val typedefC =
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   108
      Const (@{const_name type_definition},
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   109
        (newT --> oldT) --> (oldT --> newT) --> HOLogic.mk_setT oldT --> HOLogic.boolT);
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   110
  in Logic.mk_implies (mk_inhabited A, HOLogic.mk_Trueprop (typedefC $ RepC $ AbsC $ A)) end;
35134
d8d6c2f55c0c Typedef.the_info;
wenzelm
parents: 35129
diff changeset
   111
61110
6b7c2ecc6aea more general Typedef.bindings;
wenzelm
parents: 61103
diff changeset
   112
fun primitive_typedef type_definition_name newT oldT Rep_name Abs_name A lthy =
35741
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   113
  let
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   114
    (* errors *)
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   115
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   116
    fun show_names pairs = commas_quote (map fst pairs);
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   117
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   118
    val lhs_tfrees = Term.add_tfreesT newT [];
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   119
    val rhs_tfrees = Term.add_tfreesT oldT [];
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   120
    val _ =
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   121
      (case fold (remove (op =)) lhs_tfrees rhs_tfrees of [] => ()
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   122
      | extras => error ("Extra type variables in representing set: " ^ show_names extras));
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   123
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   124
    val _ =
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   125
      (case Term.add_frees A [] of [] => []
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   126
      | xs => error ("Illegal variables in representing set: " ^ show_names xs));
35134
d8d6c2f55c0c Typedef.the_info;
wenzelm
parents: 35129
diff changeset
   127
35741
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   128
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   129
    (* axiomatization *)
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   130
42375
774df7c59508 report Name_Space.declare/define, relatively to context;
wenzelm
parents: 42361
diff changeset
   131
    val ((RepC, AbsC), consts_lthy) = lthy
774df7c59508 report Name_Space.declare/define, relatively to context;
wenzelm
parents: 42361
diff changeset
   132
      |> Local_Theory.background_theory_result
774df7c59508 report Name_Space.declare/define, relatively to context;
wenzelm
parents: 42361
diff changeset
   133
        (Sign.declare_const lthy ((Rep_name, newT --> oldT), NoSyn) ##>>
774df7c59508 report Name_Space.declare/define, relatively to context;
wenzelm
parents: 42361
diff changeset
   134
          Sign.declare_const lthy ((Abs_name, oldT --> newT), NoSyn));
35741
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   135
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   136
    val typedef_deps = Term.add_consts A [];
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   137
42375
774df7c59508 report Name_Space.declare/define, relatively to context;
wenzelm
parents: 42361
diff changeset
   138
    val ((axiom_name, axiom), axiom_lthy) = consts_lthy
774df7c59508 report Name_Space.declare/define, relatively to context;
wenzelm
parents: 42361
diff changeset
   139
      |> Local_Theory.background_theory_result
61110
6b7c2ecc6aea more general Typedef.bindings;
wenzelm
parents: 61103
diff changeset
   140
        (Thm.add_axiom consts_lthy (type_definition_name, mk_typedef newT oldT RepC AbsC A) ##>
42375
774df7c59508 report Name_Space.declare/define, relatively to context;
wenzelm
parents: 42361
diff changeset
   141
          Theory.add_deps consts_lthy "" (dest_Const RepC) typedef_deps ##>
774df7c59508 report Name_Space.declare/define, relatively to context;
wenzelm
parents: 42361
diff changeset
   142
          Theory.add_deps consts_lthy "" (dest_Const AbsC) typedef_deps);
35741
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   143
42375
774df7c59508 report Name_Space.declare/define, relatively to context;
wenzelm
parents: 42361
diff changeset
   144
  in ((RepC, AbsC, axiom_name, axiom), axiom_lthy) end;
15259
6aa593317905 Added simple code generator.
berghofe
parents: 14981
diff changeset
   145
6aa593317905 Added simple code generator.
berghofe
parents: 14981
diff changeset
   146
61110
6b7c2ecc6aea more general Typedef.bindings;
wenzelm
parents: 61103
diff changeset
   147
(* derived bindings *)
6b7c2ecc6aea more general Typedef.bindings;
wenzelm
parents: 61103
diff changeset
   148
6b7c2ecc6aea more general Typedef.bindings;
wenzelm
parents: 61103
diff changeset
   149
type bindings = {Rep_name: binding, Abs_name: binding, type_definition_name: binding};
6b7c2ecc6aea more general Typedef.bindings;
wenzelm
parents: 61103
diff changeset
   150
6b7c2ecc6aea more general Typedef.bindings;
wenzelm
parents: 61103
diff changeset
   151
fun default_bindings name =
6b7c2ecc6aea more general Typedef.bindings;
wenzelm
parents: 61103
diff changeset
   152
 {Rep_name = Binding.prefix_name "Rep_" name,
6b7c2ecc6aea more general Typedef.bindings;
wenzelm
parents: 61103
diff changeset
   153
  Abs_name = Binding.prefix_name "Abs_" name,
6b7c2ecc6aea more general Typedef.bindings;
wenzelm
parents: 61103
diff changeset
   154
  type_definition_name = Binding.prefix_name "type_definition_" name};
6b7c2ecc6aea more general Typedef.bindings;
wenzelm
parents: 61103
diff changeset
   155
6b7c2ecc6aea more general Typedef.bindings;
wenzelm
parents: 61103
diff changeset
   156
fun make_bindings name NONE = default_bindings name
6b7c2ecc6aea more general Typedef.bindings;
wenzelm
parents: 61103
diff changeset
   157
  | make_bindings _ (SOME bindings) = bindings;
6b7c2ecc6aea more general Typedef.bindings;
wenzelm
parents: 61103
diff changeset
   158
6b7c2ecc6aea more general Typedef.bindings;
wenzelm
parents: 61103
diff changeset
   159
fun make_morphisms name NONE = default_bindings name
6b7c2ecc6aea more general Typedef.bindings;
wenzelm
parents: 61103
diff changeset
   160
  | make_morphisms name (SOME (Rep_name, Abs_name)) =
6b7c2ecc6aea more general Typedef.bindings;
wenzelm
parents: 61103
diff changeset
   161
      {Rep_name = Rep_name, Abs_name = Abs_name,
6b7c2ecc6aea more general Typedef.bindings;
wenzelm
parents: 61103
diff changeset
   162
        type_definition_name = #type_definition_name (default_bindings name)};
6b7c2ecc6aea more general Typedef.bindings;
wenzelm
parents: 61103
diff changeset
   163
6b7c2ecc6aea more general Typedef.bindings;
wenzelm
parents: 61103
diff changeset
   164
6383
45bb139e6ceb actually check non-emptiness theorem;
wenzelm
parents: 6357
diff changeset
   165
(* prepare_typedef *)
45bb139e6ceb actually check non-emptiness theorem;
wenzelm
parents: 6357
diff changeset
   166
61110
6b7c2ecc6aea more general Typedef.bindings;
wenzelm
parents: 61103
diff changeset
   167
fun prepare_typedef prep_term (name, raw_args, mx) raw_set opt_bindings lthy =
4866
72a46bd00c8d renamed from typedef.ML;
wenzelm
parents:
diff changeset
   168
  let
30345
76fd85bbf139 more uniform handling of binding in packages;
wenzelm
parents: 29579
diff changeset
   169
    val bname = Binding.name_of name;
4866
72a46bd00c8d renamed from typedef.ML;
wenzelm
parents:
diff changeset
   170
35741
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   171
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   172
    (* rhs *)
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   173
36153
1ac501e16a6a replaced slightly odd Typedecl.predeclare_constraints by plain declaration of type arguments -- also avoid "recursive" declaration of type constructor, which can cause problems with sequential definitions B.foo = A.foo;
wenzelm
parents: 36107
diff changeset
   174
    val tmp_ctxt = lthy |> fold (Variable.declare_typ o TFree) raw_args;
1ac501e16a6a replaced slightly odd Typedecl.predeclare_constraints by plain declaration of type arguments -- also avoid "recursive" declaration of type constructor, which can cause problems with sequential definitions B.foo = A.foo;
wenzelm
parents: 36107
diff changeset
   175
    val set = prep_term tmp_ctxt raw_set;
1ac501e16a6a replaced slightly odd Typedecl.predeclare_constraints by plain declaration of type arguments -- also avoid "recursive" declaration of type constructor, which can cause problems with sequential definitions B.foo = A.foo;
wenzelm
parents: 36107
diff changeset
   176
    val tmp_ctxt' = tmp_ctxt |> Variable.declare_term set;
35836
9380fab5f4f7 eliminated slightly odd typedecl_wrt in favour of explicit predeclare_constraints;
wenzelm
parents: 35766
diff changeset
   177
21352
073c79be780c removed legacy read/cert/string_of;
wenzelm
parents: 20483
diff changeset
   178
    val setT = Term.fastype_of set;
35741
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   179
    val oldT = HOLogic.dest_setT setT handle TYPE _ =>
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   180
      error ("Not a set type: " ^ quote (Syntax.string_of_typ lthy setT));
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   181
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   182
    val goal = mk_inhabited set;
42290
b1f544c84040 discontinued special treatment of structure Lexicon;
wenzelm
parents: 38757
diff changeset
   183
    val goal_pat = mk_inhabited (Var (the_default (bname, 0) (Lexicon.read_variable bname), setT));
35741
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   184
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   185
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   186
    (* lhs *)
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   187
42361
23f352990944 modernized structure Proof_Context;
wenzelm
parents: 42290
diff changeset
   188
    val args = map (Proof_Context.check_tfree tmp_ctxt') raw_args;
35741
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   189
    val (newT, typedecl_lthy) = lthy
49835
31f32ec4d766 discontinued typedef with alternative name;
wenzelm
parents: 49834
diff changeset
   190
      |> Typedecl.typedecl (name, args, mx)
35741
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   191
      ||> Variable.declare_term set;
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   192
56375
32e0da92c786 use same idiom as used for datatype 'size' function to name constants and theorems emerging from various type interpretations -- reduces the chances of name clashes on theory merges
blanchet
parents: 54883
diff changeset
   193
    val Type (full_name, _) = newT;
35741
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   194
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   195
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   196
    (* axiomatization *)
4866
72a46bd00c8d renamed from typedef.ML;
wenzelm
parents:
diff changeset
   197
61110
6b7c2ecc6aea more general Typedef.bindings;
wenzelm
parents: 61103
diff changeset
   198
    val {Rep_name, Abs_name, type_definition_name} = make_bindings name opt_bindings;
4866
72a46bd00c8d renamed from typedef.ML;
wenzelm
parents:
diff changeset
   199
49833
1d80798e8d8a discontinued typedef with implicit set_def;
wenzelm
parents: 47702
diff changeset
   200
    val ((RepC, AbsC, axiom_name, typedef), typedef_lthy) = typedecl_lthy
61110
6b7c2ecc6aea more general Typedef.bindings;
wenzelm
parents: 61103
diff changeset
   201
      |> primitive_typedef type_definition_name newT oldT Rep_name Abs_name set;
35741
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   202
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   203
    val alias_lthy = typedef_lthy
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   204
      |> Local_Theory.const_alias Rep_name (#1 (Term.dest_Const RepC))
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   205
      |> Local_Theory.const_alias Abs_name (#1 (Term.dest_Const AbsC));
6383
45bb139e6ceb actually check non-emptiness theorem;
wenzelm
parents: 6357
diff changeset
   206
29056
dc08e3990c77 misc tuning and modernisation;
wenzelm
parents: 29054
diff changeset
   207
35741
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   208
    (* result *)
4866
72a46bd00c8d renamed from typedef.ML;
wenzelm
parents:
diff changeset
   209
35741
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   210
    fun note_qualify ((b, atts), th) =
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   211
      Local_Theory.note ((Binding.qualify false bname b, map (Attrib.internal o K) atts), [th])
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   212
      #>> (fn (_, [th']) => th');
4866
72a46bd00c8d renamed from typedef.ML;
wenzelm
parents:
diff changeset
   213
35741
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   214
    fun typedef_result inhabited lthy1 =
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   215
      let
49833
1d80798e8d8a discontinued typedef with implicit set_def;
wenzelm
parents: 47702
diff changeset
   216
        val typedef' = inhabited RS typedef;
54883
dd04a8b654fc proper context for norm_hhf and derived operations;
wenzelm
parents: 49835
diff changeset
   217
        fun make th = Goal.norm_result lthy1 (typedef' RS th);
35741
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   218
        val (((((((((((_, [type_definition]), Rep), Rep_inverse), Abs_inverse), Rep_inject),
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   219
            Abs_inject), Rep_cases), Abs_cases), Rep_induct), Abs_induct), lthy2) = lthy1
61110
6b7c2ecc6aea more general Typedef.bindings;
wenzelm
parents: 61103
diff changeset
   220
          |> Local_Theory.note ((type_definition_name, []), [typedef'])
35741
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   221
          ||>> note_qualify ((Rep_name, []), make @{thm type_definition.Rep})
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   222
          ||>> note_qualify ((Binding.suffix_name "_inverse" Rep_name, []),
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   223
              make @{thm type_definition.Rep_inverse})
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   224
          ||>> note_qualify ((Binding.suffix_name "_inverse" Abs_name, []),
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   225
              make @{thm type_definition.Abs_inverse})
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   226
          ||>> note_qualify ((Binding.suffix_name "_inject" Rep_name, []),
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   227
              make @{thm type_definition.Rep_inject})
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   228
          ||>> note_qualify ((Binding.suffix_name "_inject" Abs_name, []),
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   229
              make @{thm type_definition.Abs_inject})
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   230
          ||>> note_qualify ((Binding.suffix_name "_cases" Rep_name,
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   231
                [Rule_Cases.case_names [Binding.name_of Rep_name], Induct.cases_pred full_name]),
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   232
              make @{thm type_definition.Rep_cases})
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   233
          ||>> note_qualify ((Binding.suffix_name "_cases" Abs_name,
49835
31f32ec4d766 discontinued typedef with alternative name;
wenzelm
parents: 49834
diff changeset
   234
                [Rule_Cases.case_names [Binding.name_of Abs_name], Induct.cases_type full_name]),
35741
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   235
              make @{thm type_definition.Abs_cases})
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   236
          ||>> note_qualify ((Binding.suffix_name "_induct" Rep_name,
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   237
                [Rule_Cases.case_names [Binding.name_of Rep_name], Induct.induct_pred full_name]),
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   238
              make @{thm type_definition.Rep_induct})
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   239
          ||>> note_qualify ((Binding.suffix_name "_induct" Abs_name,
49835
31f32ec4d766 discontinued typedef with alternative name;
wenzelm
parents: 49834
diff changeset
   240
                [Rule_Cases.case_names [Binding.name_of Abs_name], Induct.induct_type full_name]),
35741
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   241
              make @{thm type_definition.Abs_induct});
4866
72a46bd00c8d renamed from typedef.ML;
wenzelm
parents:
diff changeset
   242
35994
9cc3df9a606e Typedef.info: separate global and local part, only the latter is transformed by morphisms;
wenzelm
parents: 35840
diff changeset
   243
        val info =
36107
2af69e16eced expose foundational typedef axiom name;
wenzelm
parents: 36106
diff changeset
   244
          ({rep_type = oldT, abs_type = newT, Rep_name = #1 (Term.dest_Const RepC),
2af69e16eced expose foundational typedef axiom name;
wenzelm
parents: 36106
diff changeset
   245
            Abs_name = #1 (Term.dest_Const AbsC), axiom_name = axiom_name},
49833
1d80798e8d8a discontinued typedef with implicit set_def;
wenzelm
parents: 47702
diff changeset
   246
           {inhabited = inhabited, type_definition = type_definition,
35741
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   247
            Rep = Rep, Rep_inverse = Rep_inverse, Abs_inverse = Abs_inverse,
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   248
            Rep_inject = Rep_inject, Abs_inject = Abs_inject, Rep_cases = Rep_cases,
35994
9cc3df9a606e Typedef.info: separate global and local part, only the latter is transformed by morphisms;
wenzelm
parents: 35840
diff changeset
   249
          Abs_cases = Abs_cases, Rep_induct = Rep_induct, Abs_induct = Abs_induct});
35741
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   250
      in
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   251
        lthy2
45291
57cd50f98fdc uniform Local_Theory.declaration with explicit params;
wenzelm
parents: 42381
diff changeset
   252
        |> Local_Theory.declaration {syntax = false, pervasive = true}
49835
31f32ec4d766 discontinued typedef with alternative name;
wenzelm
parents: 49834
diff changeset
   253
          (fn phi => put_info full_name (transform_info phi info))
58662
5963cdbad926 module Interpretation is superseded by Plugin;
wenzelm
parents: 58239
diff changeset
   254
        |> Typedef_Plugin.data Plugin_Name.default_filter full_name
49835
31f32ec4d766 discontinued typedef with alternative name;
wenzelm
parents: 49834
diff changeset
   255
        |> pair (full_name, info)
35741
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   256
      end;
11426
f280d4b29a2c abtract non-emptiness statements (no longer use Eps);
wenzelm
parents: 10697
diff changeset
   257
35741
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   258
  in ((goal, goal_pat, typedef_result), alias_lthy) end
30345
76fd85bbf139 more uniform handling of binding in packages;
wenzelm
parents: 29579
diff changeset
   259
  handle ERROR msg =>
42381
309ec68442c6 added Binding.print convenience, which includes quote already;
wenzelm
parents: 42375
diff changeset
   260
    cat_error msg ("The error(s) above occurred in typedef " ^ Binding.print name);
4866
72a46bd00c8d renamed from typedef.ML;
wenzelm
parents:
diff changeset
   261
72a46bd00c8d renamed from typedef.ML;
wenzelm
parents:
diff changeset
   262
29056
dc08e3990c77 misc tuning and modernisation;
wenzelm
parents: 29054
diff changeset
   263
(* add_typedef: tactic interface *)
4866
72a46bd00c8d renamed from typedef.ML;
wenzelm
parents:
diff changeset
   264
61110
6b7c2ecc6aea more general Typedef.bindings;
wenzelm
parents: 61103
diff changeset
   265
fun add_typedef typ set opt_bindings tac lthy =
6383
45bb139e6ceb actually check non-emptiness theorem;
wenzelm
parents: 6357
diff changeset
   266
  let
35741
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   267
    val ((goal, _, typedef_result), lthy') =
61110
6b7c2ecc6aea more general Typedef.bindings;
wenzelm
parents: 61103
diff changeset
   268
      prepare_typedef Syntax.check_term typ set opt_bindings lthy;
35741
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   269
    val inhabited =
58959
1f195ed99941 proper proof context for typedef;
wenzelm
parents: 58662
diff changeset
   270
      Goal.prove lthy' [] [] goal (tac o #context)
54883
dd04a8b654fc proper context for norm_hhf and derived operations;
wenzelm
parents: 49835
diff changeset
   271
      |> Goal.norm_result lthy' |> Thm.close_derivation;
35741
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   272
  in typedef_result inhabited lthy' end;
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   273
61110
6b7c2ecc6aea more general Typedef.bindings;
wenzelm
parents: 61103
diff changeset
   274
fun add_typedef_global typ set opt_bindings tac =
38388
94d5624dd1f7 Named_Target.theory_init
haftmann
parents: 38350
diff changeset
   275
  Named_Target.theory_init
61110
6b7c2ecc6aea more general Typedef.bindings;
wenzelm
parents: 61103
diff changeset
   276
  #> add_typedef typ set opt_bindings tac
35741
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   277
  #> Local_Theory.exit_result_global (apsnd o transform_info);
4866
72a46bd00c8d renamed from typedef.ML;
wenzelm
parents:
diff changeset
   278
17339
ab97ccef124a tuned Isar interfaces;
wenzelm
parents: 17280
diff changeset
   279
29056
dc08e3990c77 misc tuning and modernisation;
wenzelm
parents: 29054
diff changeset
   280
(* typedef: proof interface *)
6383
45bb139e6ceb actually check non-emptiness theorem;
wenzelm
parents: 6357
diff changeset
   281
17339
ab97ccef124a tuned Isar interfaces;
wenzelm
parents: 17280
diff changeset
   282
local
ab97ccef124a tuned Isar interfaces;
wenzelm
parents: 17280
diff changeset
   283
61110
6b7c2ecc6aea more general Typedef.bindings;
wenzelm
parents: 61103
diff changeset
   284
fun gen_typedef prep_term prep_constraint (b, raw_args, mx) set opt_bindings lthy =
11822
122834177ec1 improved internal interface of typedef;
wenzelm
parents: 11807
diff changeset
   285
  let
35840
01d7c4ba9050 allow sort constraints in HOL/typedef and related HOLCF variants;
wenzelm
parents: 35836
diff changeset
   286
    val args = map (apsnd (prep_constraint lthy)) raw_args;
35741
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   287
    val ((goal, goal_pat, typedef_result), lthy') =
61110
6b7c2ecc6aea more general Typedef.bindings;
wenzelm
parents: 61103
diff changeset
   288
      prepare_typedef prep_term (b, args, mx) set opt_bindings lthy;
35741
4f3660a3e5af localized typedef;
wenzelm
parents: 35682
diff changeset
   289
    fun after_qed [[th]] = snd o typedef_result th;
36323
655e2d74de3a modernized naming conventions of main Isar proof elements;
wenzelm
parents: 36153
diff changeset
   290
  in Proof.theorem NONE after_qed [[(goal, [goal_pat])]] lthy' end;
17339
ab97ccef124a tuned Isar interfaces;
wenzelm
parents: 17280
diff changeset
   291
ab97ccef124a tuned Isar interfaces;
wenzelm
parents: 17280
diff changeset
   292
in
6383
45bb139e6ceb actually check non-emptiness theorem;
wenzelm
parents: 6357
diff changeset
   293
35840
01d7c4ba9050 allow sort constraints in HOL/typedef and related HOLCF variants;
wenzelm
parents: 35836
diff changeset
   294
val typedef = gen_typedef Syntax.check_term (K I);
01d7c4ba9050 allow sort constraints in HOL/typedef and related HOLCF variants;
wenzelm
parents: 35836
diff changeset
   295
val typedef_cmd = gen_typedef Syntax.read_term Typedecl.read_constraint;
17339
ab97ccef124a tuned Isar interfaces;
wenzelm
parents: 17280
diff changeset
   296
19705
08de66826677 simplified info/get_info;
wenzelm
parents: 19617
diff changeset
   297
end;
15259
6aa593317905 Added simple code generator.
berghofe
parents: 14981
diff changeset
   298
6aa593317905 Added simple code generator.
berghofe
parents: 14981
diff changeset
   299
6aa593317905 Added simple code generator.
berghofe
parents: 14981
diff changeset
   300
6383
45bb139e6ceb actually check non-emptiness theorem;
wenzelm
parents: 6357
diff changeset
   301
(** outer syntax **)
45bb139e6ceb actually check non-emptiness theorem;
wenzelm
parents: 6357
diff changeset
   302
24867
e5b55d7be9bb simplified interfaces for outer syntax;
wenzelm
parents: 24861
diff changeset
   303
val _ =
59936
b8ffc3dc9e24 @{command_spec} is superseded by @{command_keyword};
wenzelm
parents: 59880
diff changeset
   304
  Outer_Syntax.local_theory_to_proof @{command_keyword typedef}
46961
5c6955f487e5 outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents: 46949
diff changeset
   305
    "HOL type definition (requires non-emptiness proof)"
49835
31f32ec4d766 discontinued typedef with alternative name;
wenzelm
parents: 49834
diff changeset
   306
    (Parse.type_args_constrained -- Parse.binding -- Parse.opt_mixfix --
31f32ec4d766 discontinued typedef with alternative name;
wenzelm
parents: 49834
diff changeset
   307
      (@{keyword "="} |-- Parse.term) --
31f32ec4d766 discontinued typedef with alternative name;
wenzelm
parents: 49834
diff changeset
   308
      Scan.option (@{keyword "morphisms"} |-- Parse.!!! (Parse.binding -- Parse.binding))
61110
6b7c2ecc6aea more general Typedef.bindings;
wenzelm
parents: 61103
diff changeset
   309
    >> (fn ((((vs, t), mx), A), opt_morphs) => fn lthy =>
6b7c2ecc6aea more general Typedef.bindings;
wenzelm
parents: 61103
diff changeset
   310
        typedef_cmd (t, vs, mx) A (SOME (make_morphisms t opt_morphs)) lthy));
6357
12448b8f92fb named witnesses: PureThy.get_thmss;
wenzelm
parents: 6092
diff changeset
   311
29056
dc08e3990c77 misc tuning and modernisation;
wenzelm
parents: 29054
diff changeset
   312
end;