src/HOL/Tools/BNF/bnf_fp_def_sugar.ML
author wenzelm
Sun, 10 Aug 2014 14:34:43 +0200
changeset 57882 38bf4de248a6
parent 57815 f97643a56615
parent 57830 2d0f0d6fdf3e
child 57890 1e13f63fb452
permissions -rw-r--r--
merged -- with manual conflict resolution for src/HOL/SMT_Examples/SMT_Examples.certs2, src/HOL/SMT_Examples/SMT_Word_Examples.certs2, src/Doc/Prog_Prove/document/intro-isabelle.tex;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
55061
a0adf838e2d1 adjusted comments
blanchet
parents: 55060
diff changeset
     1
(*  Title:      HOL/Tools/BNF/bnf_fp_def_sugar.ML
49112
4de4635d8f93 started work on sugared "(co)data" commands
blanchet
parents:
diff changeset
     2
    Author:     Jasmin Blanchette, TU Muenchen
57668
blanchet
parents: 57665
diff changeset
     3
    Author:     Martin Desharnais, TU Muenchen
blanchet
parents: 57665
diff changeset
     4
    Copyright   2012, 2013, 2014
49112
4de4635d8f93 started work on sugared "(co)data" commands
blanchet
parents:
diff changeset
     5
49389
blanchet
parents: 49381
diff changeset
     6
Sugared datatype and codatatype constructions.
49112
4de4635d8f93 started work on sugared "(co)data" commands
blanchet
parents:
diff changeset
     7
*)
4de4635d8f93 started work on sugared "(co)data" commands
blanchet
parents:
diff changeset
     8
49636
b7256a88a84b renamed ML file in preparation for next step
blanchet
parents: 49633
diff changeset
     9
signature BNF_FP_DEF_SUGAR =
49112
4de4635d8f93 started work on sugared "(co)data" commands
blanchet
parents:
diff changeset
    10
sig
56650
1f9ab71d43a5 no need to make 'size' generation an interpretation -- overkill
blanchet
parents: 56648
diff changeset
    11
  val fp_sugar_of: Proof.context -> string -> BNF_FP_Util.fp_sugar option
1f9ab71d43a5 no need to make 'size' generation an interpretation -- overkill
blanchet
parents: 56648
diff changeset
    12
  val fp_sugars_of: Proof.context -> BNF_FP_Util.fp_sugar list
1f9ab71d43a5 no need to make 'size' generation an interpretation -- overkill
blanchet
parents: 56648
diff changeset
    13
  val fp_sugar_interpretation: (BNF_FP_Util.fp_sugar list -> theory -> theory) -> theory -> theory
1f9ab71d43a5 no need to make 'size' generation an interpretation -- overkill
blanchet
parents: 56648
diff changeset
    14
  val register_fp_sugars: BNF_FP_Util.fp_sugar list -> local_theory -> local_theory
51852
23d938495367 refactoring
blanchet
parents: 51850
diff changeset
    15
53106
d81211f61a1b moved derivation of strong coinduction to sugar
traytel
parents: 53037
diff changeset
    16
  val co_induct_of: 'a list -> 'a
d81211f61a1b moved derivation of strong coinduction to sugar
traytel
parents: 53037
diff changeset
    17
  val strong_co_induct_of: 'a list -> 'a
d81211f61a1b moved derivation of strong coinduction to sugar
traytel
parents: 53037
diff changeset
    18
52868
cca9e958da5c export ML function (for primcorec)
blanchet
parents: 52823
diff changeset
    19
  val flat_corec_preds_predsss_gettersss: 'a list -> 'a list list list -> 'a list list list ->
cca9e958da5c export ML function (for primcorec)
blanchet
parents: 52823
diff changeset
    20
    'a list
57397
5004aca20821 tuned variable names
blanchet
parents: 57303
diff changeset
    21
  val nesting_bnfs: Proof.context -> typ list list list -> typ list -> BNF_Def.bnf list
53746
bd038e48526d have "datatype_new_compat" register induction and recursion theorems in nested case
blanchet
parents: 53741
diff changeset
    22
bd038e48526d have "datatype_new_compat" register induction and recursion theorems in nested case
blanchet
parents: 53741
diff changeset
    23
  type lfp_sugar_thms =
55856
bddaada24074 got rid of automatically generated fold constant and theorems (to reduce overhead)
blanchet
parents: 55803
diff changeset
    24
    (thm list * thm * Args.src list) * (thm list list * Args.src list)
53746
bd038e48526d have "datatype_new_compat" register induction and recursion theorems in nested case
blanchet
parents: 53741
diff changeset
    25
54256
4843082be7ef added some N2M caching
blanchet
parents: 54253
diff changeset
    26
  val morph_lfp_sugar_thms: morphism -> lfp_sugar_thms -> lfp_sugar_thms
4843082be7ef added some N2M caching
blanchet
parents: 54253
diff changeset
    27
  val transfer_lfp_sugar_thms: Proof.context -> lfp_sugar_thms -> lfp_sugar_thms
4843082be7ef added some N2M caching
blanchet
parents: 54253
diff changeset
    28
53746
bd038e48526d have "datatype_new_compat" register induction and recursion theorems in nested case
blanchet
parents: 53741
diff changeset
    29
  type gfp_sugar_thms =
57260
8747af0d1012 fixed postprocessing of 'coinduct' formula to obtain right property format (without needless hypotheses)
blanchet
parents: 57206
diff changeset
    30
    ((thm list * thm) list * (Args.src list * Args.src list))
57489
8f0ba9f2d10f generate 'corec_code' theorem for codatatypes
desharna
parents: 57471
diff changeset
    31
    * thm list list
8f0ba9f2d10f generate 'corec_code' theorem for codatatypes
desharna
parents: 57471
diff changeset
    32
    * thm list list
55856
bddaada24074 got rid of automatically generated fold constant and theorems (to reduce overhead)
blanchet
parents: 55803
diff changeset
    33
    * (thm list list * Args.src list)
bddaada24074 got rid of automatically generated fold constant and theorems (to reduce overhead)
blanchet
parents: 55803
diff changeset
    34
    * (thm list list list * Args.src list)
53746
bd038e48526d have "datatype_new_compat" register induction and recursion theorems in nested case
blanchet
parents: 53741
diff changeset
    35
54256
4843082be7ef added some N2M caching
blanchet
parents: 54253
diff changeset
    36
  val morph_gfp_sugar_thms: morphism -> gfp_sugar_thms -> gfp_sugar_thms
4843082be7ef added some N2M caching
blanchet
parents: 54253
diff changeset
    37
  val transfer_gfp_sugar_thms: Proof.context -> gfp_sugar_thms -> gfp_sugar_thms
4843082be7ef added some N2M caching
blanchet
parents: 54253
diff changeset
    38
55867
79b915f26533 rationalized internals
blanchet
parents: 55865
diff changeset
    39
  val mk_co_recs_prelims: BNF_Util.fp_kind -> typ list list list -> typ list -> typ list ->
79b915f26533 rationalized internals
blanchet
parents: 55865
diff changeset
    40
     typ list -> typ list -> int list -> int list list -> term list -> Proof.context ->
79b915f26533 rationalized internals
blanchet
parents: 55865
diff changeset
    41
     (term list
79b915f26533 rationalized internals
blanchet
parents: 55865
diff changeset
    42
      * (typ list list * typ list list list list * term list list * term list list list list) option
55862
b458558cbcc2 optimized simple non-recursive datatypes by reusing 'case' for 'rec' constant
blanchet
parents: 55861
diff changeset
    43
      * (string * term list * term list list
55867
79b915f26533 rationalized internals
blanchet
parents: 55865
diff changeset
    44
         * ((term list list * term list list list) * typ list)) option)
55862
b458558cbcc2 optimized simple non-recursive datatypes by reusing 'case' for 'rec' constant
blanchet
parents: 55861
diff changeset
    45
     * Proof.context
55772
367ec44763fd correct most general type for mutual recursion when several identical types are involved
blanchet
parents: 55701
diff changeset
    46
  val repair_nullary_single_ctr: typ list list -> typ list list
55867
79b915f26533 rationalized internals
blanchet
parents: 55865
diff changeset
    47
  val mk_corec_p_pred_types: typ list -> int list -> typ list list
79b915f26533 rationalized internals
blanchet
parents: 55865
diff changeset
    48
  val mk_corec_fun_arg_types: typ list list list -> typ list -> typ list -> typ list -> int list ->
55803
74d3fe9031d8 joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents: 55772
diff changeset
    49
    int list list -> term ->
74d3fe9031d8 joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents: 55772
diff changeset
    50
    typ list list
74d3fe9031d8 joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents: 55772
diff changeset
    51
    * (typ list list list list * typ list list list * typ list list list list * typ list)
55867
79b915f26533 rationalized internals
blanchet
parents: 55865
diff changeset
    52
  val define_rec:
56641
029997d3b5d8 reverted rb458558cbcc2 -- better to keep 'case' and 'rec' distinct, otherwise we lose the connection between 'ctor_rec' (the low-level recursor) and 'rec'
blanchet
parents: 56640
diff changeset
    53
    typ list list * typ list list list list * term list list * term list list list list ->
55862
b458558cbcc2 optimized simple non-recursive datatypes by reusing 'case' for 'rec' constant
blanchet
parents: 55861
diff changeset
    54
    (string -> binding) -> typ list -> typ list -> term list -> term -> Proof.context ->
55864
516ab2906e7e rationalized internals
blanchet
parents: 55863
diff changeset
    55
    (term * thm) * Proof.context
55867
79b915f26533 rationalized internals
blanchet
parents: 55865
diff changeset
    56
  val define_corec: 'a * term list * term list list
55862
b458558cbcc2 optimized simple non-recursive datatypes by reusing 'case' for 'rec' constant
blanchet
parents: 55861
diff changeset
    57
      * ((term list list * term list list list) * typ list) -> (string -> binding) -> 'b list ->
56347
6edbd4d20717 added new-style (co)datatype interpretation hook
blanchet
parents: 56254
diff changeset
    58
    typ list -> term list -> term -> local_theory -> (term * thm) * local_theory
55867
79b915f26533 rationalized internals
blanchet
parents: 55865
diff changeset
    59
  val derive_induct_recs_thms_for_types: BNF_Def.bnf list ->
79b915f26533 rationalized internals
blanchet
parents: 55865
diff changeset
    60
     ('a * typ list list list list * term list list * 'b) option -> thm -> thm list ->
55862
b458558cbcc2 optimized simple non-recursive datatypes by reusing 'case' for 'rec' constant
blanchet
parents: 55861
diff changeset
    61
     BNF_Def.bnf list -> BNF_Def.bnf list -> typ list -> typ list -> typ list ->
b458558cbcc2 optimized simple non-recursive datatypes by reusing 'case' for 'rec' constant
blanchet
parents: 55861
diff changeset
    62
     typ list list list -> thm list -> thm list -> thm list -> term list list -> thm list list ->
55864
516ab2906e7e rationalized internals
blanchet
parents: 55863
diff changeset
    63
     term list -> thm list -> Proof.context -> lfp_sugar_thms
55867
79b915f26533 rationalized internals
blanchet
parents: 55865
diff changeset
    64
  val derive_coinduct_corecs_thms_for_types: BNF_Def.bnf list ->
55862
b458558cbcc2 optimized simple non-recursive datatypes by reusing 'case' for 'rec' constant
blanchet
parents: 55861
diff changeset
    65
    string * term list * term list list * ((term list list * term list list list) * typ list) ->
55867
79b915f26533 rationalized internals
blanchet
parents: 55865
diff changeset
    66
    thm -> thm list -> thm list -> thm list -> BNF_Def.bnf list -> typ list -> typ list ->
55803
74d3fe9031d8 joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents: 55772
diff changeset
    67
    typ list -> typ list list list -> int list list -> int list list -> int list -> thm list ->
55864
516ab2906e7e rationalized internals
blanchet
parents: 55863
diff changeset
    68
    thm list -> (thm -> thm) -> thm list list -> Ctr_Sugar.ctr_sugar list -> term list ->
56347
6edbd4d20717 added new-style (co)datatype interpretation hook
blanchet
parents: 56254
diff changeset
    69
    thm list -> (thm list -> thm list) -> Proof.context -> gfp_sugar_thms
55469
b19dd108f0c2 aligned the syntax for 'free_constructors' on the 'datatype_new' and 'codatatype' syntax
blanchet
parents: 55468
diff changeset
    70
55575
a5e33e18fb5c moved 'primrec' up (for real this time) and removed temporary 'old_primrec'
blanchet
parents: 55573
diff changeset
    71
  val co_datatypes: BNF_Util.fp_kind -> (mixfix list -> binding list -> binding list ->
52207
21026c312cc3 tuning -- avoided unreadable true/false all over the place for LFP/GFP
blanchet
parents: 52197
diff changeset
    72
      binding list list -> binding list -> (string * sort) list -> typ list * typ list list ->
55803
74d3fe9031d8 joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents: 55772
diff changeset
    73
      BNF_Def.bnf list -> BNF_Comp.absT_info list -> local_theory ->
74d3fe9031d8 joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents: 55772
diff changeset
    74
      BNF_FP_Util.fp_result * local_theory) ->
57200
aab87ffa60cc use 'where' clause for selector default value syntax
blanchet
parents: 57199
diff changeset
    75
    (bool * bool)
57206
d9be905d6283 changed syntax of map: and rel: arguments to BNF-based datatypes
blanchet
parents: 57205
diff changeset
    76
    * ((((((binding option * (typ * sort)) list * binding) * mixfix)
d9be905d6283 changed syntax of map: and rel: arguments to BNF-based datatypes
blanchet
parents: 57205
diff changeset
    77
         * ((binding, binding * typ) Ctr_Sugar.ctr_spec * mixfix) list) * (binding * binding))
d9be905d6283 changed syntax of map: and rel: arguments to BNF-based datatypes
blanchet
parents: 57205
diff changeset
    78
       * term list) list ->
49297
47fbf2e3e89c provide a programmatic interface for FP sugar
blanchet
parents: 49287
diff changeset
    79
    local_theory -> local_theory
55575
a5e33e18fb5c moved 'primrec' up (for real this time) and removed temporary 'old_primrec'
blanchet
parents: 55573
diff changeset
    80
  val parse_co_datatype_cmd: BNF_Util.fp_kind -> (mixfix list -> binding list -> binding list ->
51867
6d756057e736 signature tuning
blanchet
parents: 51866
diff changeset
    81
      binding list list -> binding list -> (string * sort) list -> typ list * typ list list ->
55803
74d3fe9031d8 joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents: 55772
diff changeset
    82
      BNF_Def.bnf list -> BNF_Comp.absT_info list -> local_theory ->
74d3fe9031d8 joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents: 55772
diff changeset
    83
      BNF_FP_Util.fp_result * local_theory) ->
49308
6190b701e4f4 reorganized dependencies so that the sugar does not depend on GFP -- this will be essential for bootstrapping
blanchet
parents: 49302
diff changeset
    84
    (local_theory -> local_theory) parser
49112
4de4635d8f93 started work on sugared "(co)data" commands
blanchet
parents:
diff changeset
    85
end;
4de4635d8f93 started work on sugared "(co)data" commands
blanchet
parents:
diff changeset
    86
49636
b7256a88a84b renamed ML file in preparation for next step
blanchet
parents: 49633
diff changeset
    87
structure BNF_FP_Def_Sugar : BNF_FP_DEF_SUGAR =
49112
4de4635d8f93 started work on sugared "(co)data" commands
blanchet
parents:
diff changeset
    88
struct
4de4635d8f93 started work on sugared "(co)data" commands
blanchet
parents:
diff changeset
    89
54006
9fe1bd54d437 renamed theory file
blanchet
parents: 53974
diff changeset
    90
open Ctr_Sugar
55571
a6153343c44f prepare two-stage 'primrec' setup
blanchet
parents: 55570
diff changeset
    91
open BNF_FP_Rec_Sugar_Util
49119
1f605c36869c more work on FP sugar
blanchet
parents: 49112
diff changeset
    92
open BNF_Util
53222
8b159677efb5 better error message
blanchet
parents: 53221
diff changeset
    93
open BNF_Comp
49214
2a3cb4c71b87 construct the right iterator theorem in the recursive case
blanchet
parents: 49213
diff changeset
    94
open BNF_Def
51850
106afdf5806c renamed a few FP-related files, to make it clear that these are not the sum of LFP + GFP but rather shared basic libraries
blanchet
parents: 51847
diff changeset
    95
open BNF_FP_Util
49636
b7256a88a84b renamed ML file in preparation for next step
blanchet
parents: 49633
diff changeset
    96
open BNF_FP_Def_Sugar_Tactics
56650
1f9ab71d43a5 no need to make 'size' generation an interpretation -- overkill
blanchet
parents: 56648
diff changeset
    97
open BNF_LFP_Size
49119
1f605c36869c more work on FP sugar
blanchet
parents: 49112
diff changeset
    98
51788
5fe72280a49f put an underscore in prefix
blanchet
parents: 51787
diff changeset
    99
val EqN = "Eq_";
57489
8f0ba9f2d10f generate 'corec_code' theorem for codatatypes
desharna
parents: 57471
diff changeset
   100
8f0ba9f2d10f generate 'corec_code' theorem for codatatypes
desharna
parents: 57471
diff changeset
   101
val corec_codeN = "corec_code";
57046
b3613d7e108b generate 'sel_map[simp]' theorem for (co)datatypes and tuning 'disc_map_iff'
desharna
parents: 56991
diff changeset
   102
val disc_map_iffN = "disc_map_iff";
b3613d7e108b generate 'sel_map[simp]' theorem for (co)datatypes and tuning 'disc_map_iff'
desharna
parents: 56991
diff changeset
   103
val sel_mapN = "sel_map";
57152
de1ed2c1c3bf generate 'sel_set' theorem for (co)datatypes
desharna
parents: 57094
diff changeset
   104
val sel_setN = "sel_set";
56956
7425fa3763ff generate 'set_empty' theorem for BNFs
desharna
parents: 56767
diff changeset
   105
val set_emptyN = "set_empty";
57700
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   106
val set_inductN = "set_induct";
51777
48a0ae342ea0 generate proper attributes for coinduction rules
blanchet
parents: 51769
diff changeset
   107
51823
38996458bc5c create data structure for storing (co)datatype information
blanchet
parents: 51819
diff changeset
   108
structure Data = Generic_Data
38996458bc5c create data structure for storing (co)datatype information
blanchet
parents: 51819
diff changeset
   109
(
51840
b304fb6c5ef5 renamed records
blanchet
parents: 51839
diff changeset
   110
  type T = fp_sugar Symtab.table;
51823
38996458bc5c create data structure for storing (co)datatype information
blanchet
parents: 51819
diff changeset
   111
  val empty = Symtab.empty;
38996458bc5c create data structure for storing (co)datatype information
blanchet
parents: 51819
diff changeset
   112
  val extend = I;
55394
d5ebe055b599 more liberal merging of BNFs and constructor sugar
blanchet
parents: 55356
diff changeset
   113
  fun merge data : T = Symtab.merge (K true) data;
51823
38996458bc5c create data structure for storing (co)datatype information
blanchet
parents: 51819
diff changeset
   114
);
38996458bc5c create data structure for storing (co)datatype information
blanchet
parents: 51819
diff changeset
   115
57700
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   116
fun choose_binary_fun fs AB =
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   117
  find_first (fastype_of #> binder_types #> (fn [A, B] => AB = (A, B))) fs;
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   118
fun build_binary_fun_app fs a b =
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   119
  Option.map (rapp b o rapp a) (choose_binary_fun fs (fastype_of a, fastype_of b));
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   120
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   121
fun build_the_rel ctxt Rs Ts A B = build_rel ctxt Ts (the o choose_binary_fun Rs) (A, B);
57563
e3e7c86168b4 generate 'rel_sel' theorem for (co)datatypes
desharna
parents: 57562
diff changeset
   122
fun build_rel_app ctxt Rs Ts a b = build_the_rel ctxt Rs Ts (fastype_of a) (fastype_of b) $ a $ b;
57525
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
   123
57700
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   124
val name_of_set = name_of_const "set";
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   125
53126
f4d2c64c7aa8 transfer stored fp_sugar theorems into the "current" theory when retrieving an fp_sugar (avoids non-trivial merges)
traytel
parents: 53106
diff changeset
   126
fun fp_sugar_of ctxt =
f4d2c64c7aa8 transfer stored fp_sugar theorems into the "current" theory when retrieving an fp_sugar (avoids non-trivial merges)
traytel
parents: 53106
diff changeset
   127
  Symtab.lookup (Data.get (Context.Proof ctxt))
53907
d177eb989c65 added data query function
blanchet
parents: 53901
diff changeset
   128
  #> Option.map (transfer_fp_sugar ctxt);
d177eb989c65 added data query function
blanchet
parents: 53901
diff changeset
   129
d177eb989c65 added data query function
blanchet
parents: 53901
diff changeset
   130
fun fp_sugars_of ctxt =
d177eb989c65 added data query function
blanchet
parents: 53901
diff changeset
   131
  Symtab.fold (cons o transfer_fp_sugar ctxt o snd) (Data.get (Context.Proof ctxt)) [];
51823
38996458bc5c create data structure for storing (co)datatype information
blanchet
parents: 51819
diff changeset
   132
53106
d81211f61a1b moved derivation of strong coinduction to sugar
traytel
parents: 53037
diff changeset
   133
fun co_induct_of (i :: _) = i;
d81211f61a1b moved derivation of strong coinduction to sugar
traytel
parents: 53037
diff changeset
   134
fun strong_co_induct_of [_, s] = s;
d81211f61a1b moved derivation of strong coinduction to sugar
traytel
parents: 53037
diff changeset
   135
56347
6edbd4d20717 added new-style (co)datatype interpretation hook
blanchet
parents: 56254
diff changeset
   136
structure FP_Sugar_Interpretation = Interpretation
6edbd4d20717 added new-style (co)datatype interpretation hook
blanchet
parents: 56254
diff changeset
   137
(
56637
d1d55f1bbc8a invoke 'fp_sugar' interpretation hook on mutually recursive clique
blanchet
parents: 56523
diff changeset
   138
  type T = fp_sugar list;
d1d55f1bbc8a invoke 'fp_sugar' interpretation hook on mutually recursive clique
blanchet
parents: 56523
diff changeset
   139
  val eq: T * T -> bool = op = o pairself (map #T);
56347
6edbd4d20717 added new-style (co)datatype interpretation hook
blanchet
parents: 56254
diff changeset
   140
);
6edbd4d20717 added new-style (co)datatype interpretation hook
blanchet
parents: 56254
diff changeset
   141
56648
2ffa440b3074 manual merge + added 'rel_distincts' field to record for symmetry
blanchet
parents: 56641
diff changeset
   142
fun with_repaired_path f (fp_sugars as ({T = Type (s, _), ...} : fp_sugar) :: _) thy =
56376
5a93b8f928a2 added same idiomatic handling of namings for Ctr_Sugar/BNF-related interpretation hooks as for typedef and (old-style) datatypes
blanchet
parents: 56347
diff changeset
   143
  thy
56767
9b311dbd0f55 restored naming trick
blanchet
parents: 56765
diff changeset
   144
  |> Sign.root_path
9b311dbd0f55 restored naming trick
blanchet
parents: 56765
diff changeset
   145
  |> Sign.add_path (Long_Name.qualifier s)
56637
d1d55f1bbc8a invoke 'fp_sugar' interpretation hook on mutually recursive clique
blanchet
parents: 56523
diff changeset
   146
  |> f fp_sugars
56767
9b311dbd0f55 restored naming trick
blanchet
parents: 56765
diff changeset
   147
  |> Sign.restore_naming thy;
56376
5a93b8f928a2 added same idiomatic handling of namings for Ctr_Sugar/BNF-related interpretation hooks as for typedef and (old-style) datatypes
blanchet
parents: 56347
diff changeset
   148
56657
558afd429255 made SML/NJ happier
blanchet
parents: 56651
diff changeset
   149
fun fp_sugar_interpretation f = FP_Sugar_Interpretation.interpretation (with_repaired_path f);
56347
6edbd4d20717 added new-style (co)datatype interpretation hook
blanchet
parents: 56254
diff changeset
   150
56650
1f9ab71d43a5 no need to make 'size' generation an interpretation -- overkill
blanchet
parents: 56648
diff changeset
   151
fun register_fp_sugars (fp_sugars as {fp, ...} :: _) =
56648
2ffa440b3074 manual merge + added 'rel_distincts' field to record for symmetry
blanchet
parents: 56641
diff changeset
   152
  fold (fn fp_sugar as {T = Type (s, _), ...} =>
56637
d1d55f1bbc8a invoke 'fp_sugar' interpretation hook on mutually recursive clique
blanchet
parents: 56523
diff changeset
   153
      Local_Theory.declaration {syntax = false, pervasive = true}
d1d55f1bbc8a invoke 'fp_sugar' interpretation hook on mutually recursive clique
blanchet
parents: 56523
diff changeset
   154
        (fn phi => Data.map (Symtab.update (s, morph_fp_sugar phi fp_sugar))))
d1d55f1bbc8a invoke 'fp_sugar' interpretation hook on mutually recursive clique
blanchet
parents: 56523
diff changeset
   155
    fp_sugars
56651
fc105315822a localize new size function generation code
blanchet
parents: 56650
diff changeset
   156
  #> fp = Least_FP ? generate_lfp_size fp_sugars
56637
d1d55f1bbc8a invoke 'fp_sugar' interpretation hook on mutually recursive clique
blanchet
parents: 56523
diff changeset
   157
  #> Local_Theory.background_theory (FP_Sugar_Interpretation.data fp_sugars);
51823
38996458bc5c create data structure for storing (co)datatype information
blanchet
parents: 51819
diff changeset
   158
57397
5004aca20821 tuned variable names
blanchet
parents: 57303
diff changeset
   159
fun register_as_fp_sugars Ts BTs Xs fp pre_bnfs absT_infos fp_nesting_bnfs live_nesting_bnfs fp_res
56648
2ffa440b3074 manual merge + added 'rel_distincts' field to record for symmetry
blanchet
parents: 56641
diff changeset
   160
    ctrXs_Tsss ctr_defss ctr_sugars co_recs co_rec_defs mapss common_co_inducts co_inductss
57631
959caab43a3d use the noted theorem whenever possible, also in 'BNF_Def'
blanchet
parents: 57568
diff changeset
   161
    co_rec_thmss disc_co_recss sel_co_recsss rel_injectss rel_distinctss noted =
56637
d1d55f1bbc8a invoke 'fp_sugar' interpretation hook on mutually recursive clique
blanchet
parents: 56523
diff changeset
   162
  let
d1d55f1bbc8a invoke 'fp_sugar' interpretation hook on mutually recursive clique
blanchet
parents: 56523
diff changeset
   163
    val fp_sugars =
d1d55f1bbc8a invoke 'fp_sugar' interpretation hook on mutually recursive clique
blanchet
parents: 56523
diff changeset
   164
      map_index (fn (kk, T) =>
56648
2ffa440b3074 manual merge + added 'rel_distincts' field to record for symmetry
blanchet
parents: 56641
diff changeset
   165
        {T = T, BT = nth BTs kk, X = nth Xs kk, fp = fp, fp_res = fp_res, fp_res_index = kk,
57397
5004aca20821 tuned variable names
blanchet
parents: 57303
diff changeset
   166
         pre_bnf = nth pre_bnfs kk, absT_info = nth absT_infos kk,
5004aca20821 tuned variable names
blanchet
parents: 57303
diff changeset
   167
         fp_nesting_bnfs = fp_nesting_bnfs, live_nesting_bnfs = live_nesting_bnfs,
5004aca20821 tuned variable names
blanchet
parents: 57303
diff changeset
   168
         ctrXs_Tss = nth ctrXs_Tsss kk, ctr_defs = nth ctr_defss kk, ctr_sugar = nth ctr_sugars kk,
5004aca20821 tuned variable names
blanchet
parents: 57303
diff changeset
   169
         co_rec = nth co_recs kk, co_rec_def = nth co_rec_defs kk, maps = nth mapss kk,
5004aca20821 tuned variable names
blanchet
parents: 57303
diff changeset
   170
         common_co_inducts = common_co_inducts, co_inducts = nth co_inductss kk,
5004aca20821 tuned variable names
blanchet
parents: 57303
diff changeset
   171
         co_rec_thms = nth co_rec_thmss kk, disc_co_recs = nth disc_co_recss kk,
5004aca20821 tuned variable names
blanchet
parents: 57303
diff changeset
   172
         sel_co_recss = nth sel_co_recsss kk, rel_injects = nth rel_injectss kk,
57631
959caab43a3d use the noted theorem whenever possible, also in 'BNF_Def'
blanchet
parents: 57568
diff changeset
   173
         rel_distincts = nth rel_distinctss kk}
57633
4ff8c090d580 repaired named derivations
blanchet
parents: 57631
diff changeset
   174
        |> morph_fp_sugar (substitute_noted_thm noted)) Ts;
56637
d1d55f1bbc8a invoke 'fp_sugar' interpretation hook on mutually recursive clique
blanchet
parents: 56523
diff changeset
   175
  in
d1d55f1bbc8a invoke 'fp_sugar' interpretation hook on mutually recursive clique
blanchet
parents: 56523
diff changeset
   176
    register_fp_sugars fp_sugars
d1d55f1bbc8a invoke 'fp_sugar' interpretation hook on mutually recursive clique
blanchet
parents: 56523
diff changeset
   177
  end;
51824
27d073b0876c register all (co)datatypes in local data
blanchet
parents: 51823
diff changeset
   178
55342
blanchet
parents: 55095
diff changeset
   179
(* This function could produce (fairly harmless) clashes in contrived examples (e.g., "x.A",
blanchet
parents: 55095
diff changeset
   180
   "x.x_A", "y.A"). *)
49622
a93f976c3307 use a nicer scheme to indexify names
blanchet
parents: 49605
diff changeset
   181
fun quasi_unambiguous_case_names names =
a93f976c3307 use a nicer scheme to indexify names
blanchet
parents: 49605
diff changeset
   182
  let
a93f976c3307 use a nicer scheme to indexify names
blanchet
parents: 49605
diff changeset
   183
    val ps = map (`Long_Name.base_name) names;
a93f976c3307 use a nicer scheme to indexify names
blanchet
parents: 49605
diff changeset
   184
    val dups = Library.duplicates (op =) (map fst ps);
a93f976c3307 use a nicer scheme to indexify names
blanchet
parents: 49605
diff changeset
   185
    fun underscore s =
a93f976c3307 use a nicer scheme to indexify names
blanchet
parents: 49605
diff changeset
   186
      let val ss = space_explode Long_Name.separator s in
a93f976c3307 use a nicer scheme to indexify names
blanchet
parents: 49605
diff changeset
   187
        space_implode "_" (drop (length ss - 2) ss)
a93f976c3307 use a nicer scheme to indexify names
blanchet
parents: 49605
diff changeset
   188
      end;
a93f976c3307 use a nicer scheme to indexify names
blanchet
parents: 49605
diff changeset
   189
  in
a93f976c3307 use a nicer scheme to indexify names
blanchet
parents: 49605
diff changeset
   190
    map (fn (base, full) => if member (op =) dups base then underscore full else base) ps
a93f976c3307 use a nicer scheme to indexify names
blanchet
parents: 49605
diff changeset
   191
  end;
a93f976c3307 use a nicer scheme to indexify names
blanchet
parents: 49605
diff changeset
   192
49591
91b228e26348 generate high-level "coinduct" and "strong_coinduct" properties
blanchet
parents: 49590
diff changeset
   193
val mp_conj = @{thm mp_conj};
91b228e26348 generate high-level "coinduct" and "strong_coinduct" properties
blanchet
parents: 49590
diff changeset
   194
55397
c2506f61fd26 generate 'fundec_cong' attribute for new-style (co)datatypes
blanchet
parents: 55394
diff changeset
   195
val fundefcong_attrs = @{attributes [fundef_cong]};
54145
297d1c603999 make sure that registered code equations are actually equations
blanchet
parents: 54107
diff changeset
   196
val nitpicksimp_attrs = @{attributes [nitpick_simp]};
297d1c603999 make sure that registered code equations are actually equations
blanchet
parents: 54107
diff changeset
   197
val code_nitpicksimp_attrs = Code.add_default_eqn_attrib :: nitpicksimp_attrs;
49300
c707df2e2083 added attributes to theorems
blanchet
parents: 49298
diff changeset
   198
val simp_attrs = @{attributes [simp]};
c707df2e2083 added attributes to theorems
blanchet
parents: 49298
diff changeset
   199
49297
47fbf2e3e89c provide a programmatic interface for FP sugar
blanchet
parents: 49287
diff changeset
   200
val lists_bmoc = fold (fn xs => fn t => Term.list_comb (t, xs));
49202
f493cd25737f some work towards iterator and recursor properties
blanchet
parents: 49201
diff changeset
   201
55871
a28817253b31 removed (co)iterators from documentation
blanchet
parents: 55869
diff changeset
   202
fun flat_corec_predss_getterss qss gss = maps (op @) (qss ~~ gss);
51829
3cc93eeac8cc signature tuning
blanchet
parents: 51828
diff changeset
   203
55871
a28817253b31 removed (co)iterators from documentation
blanchet
parents: 55869
diff changeset
   204
fun flat_corec_preds_predsss_gettersss [] [qss] [gss] = flat_corec_predss_getterss qss gss
a28817253b31 removed (co)iterators from documentation
blanchet
parents: 55869
diff changeset
   205
  | flat_corec_preds_predsss_gettersss (p :: ps) (qss :: qsss) (gss :: gsss) =
a28817253b31 removed (co)iterators from documentation
blanchet
parents: 55869
diff changeset
   206
    p :: flat_corec_predss_getterss qss gss @ flat_corec_preds_predsss_gettersss ps qsss gsss;
51829
3cc93eeac8cc signature tuning
blanchet
parents: 51828
diff changeset
   207
49585
5c4a12550491 generate high-level "maps", "sets", and "rels" properties
blanchet
parents: 49583
diff changeset
   208
fun mk_flip (x, Type (_, [T1, Type (_, [T2, T3])])) =
5c4a12550491 generate high-level "maps", "sets", and "rels" properties
blanchet
parents: 49583
diff changeset
   209
  Abs ("x", T1, Abs ("y", T2, Var (x, T2 --> T1 --> T3) $ Bound 0 $ Bound 1));
5c4a12550491 generate high-level "maps", "sets", and "rels" properties
blanchet
parents: 49583
diff changeset
   210
5c4a12550491 generate high-level "maps", "sets", and "rels" properties
blanchet
parents: 49583
diff changeset
   211
fun flip_rels lthy n thm =
5c4a12550491 generate high-level "maps", "sets", and "rels" properties
blanchet
parents: 49583
diff changeset
   212
  let
5c4a12550491 generate high-level "maps", "sets", and "rels" properties
blanchet
parents: 49583
diff changeset
   213
    val Rs = Term.add_vars (prop_of thm) [];
5c4a12550491 generate high-level "maps", "sets", and "rels" properties
blanchet
parents: 49583
diff changeset
   214
    val Rs' = rev (drop (length Rs - n) Rs);
5c4a12550491 generate high-level "maps", "sets", and "rels" properties
blanchet
parents: 49583
diff changeset
   215
    val cRs = map (fn f => (certify lthy (Var f), certify lthy (mk_flip f))) Rs';
5c4a12550491 generate high-level "maps", "sets", and "rels" properties
blanchet
parents: 49583
diff changeset
   216
  in
5c4a12550491 generate high-level "maps", "sets", and "rels" properties
blanchet
parents: 49583
diff changeset
   217
    Drule.cterm_instantiate cRs thm
5c4a12550491 generate high-level "maps", "sets", and "rels" properties
blanchet
parents: 49583
diff changeset
   218
  end;
5c4a12550491 generate high-level "maps", "sets", and "rels" properties
blanchet
parents: 49583
diff changeset
   219
49536
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   220
fun mk_ctor_or_dtor get_T Ts t =
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   221
  let val Type (_, Ts0) = get_T (fastype_of t) in
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   222
    Term.subst_atomic_types (Ts0 ~~ Ts) t
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   223
  end;
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   224
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   225
val mk_ctor = mk_ctor_or_dtor range_type;
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   226
val mk_dtor = mk_ctor_or_dtor domain_type;
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   227
55867
79b915f26533 rationalized internals
blanchet
parents: 55865
diff changeset
   228
fun mk_xtor_co_recs thy fp fpTs Cs ts0 =
51911
6c425d450a8c more robust iterator construction (needed for mutualized FPs)
blanchet
parents: 51910
diff changeset
   229
  let
6c425d450a8c more robust iterator construction (needed for mutualized FPs)
blanchet
parents: 51910
diff changeset
   230
    val nn = length fpTs;
6c425d450a8c more robust iterator construction (needed for mutualized FPs)
blanchet
parents: 51910
diff changeset
   231
    val (fpTs0, Cs0) =
52207
21026c312cc3 tuning -- avoided unreadable true/false all over the place for LFP/GFP
blanchet
parents: 52197
diff changeset
   232
      map ((fp = Greatest_FP ? swap) o dest_funT o snd o strip_typeN nn o fastype_of) ts0
51911
6c425d450a8c more robust iterator construction (needed for mutualized FPs)
blanchet
parents: 51910
diff changeset
   233
      |> split_list;
6c425d450a8c more robust iterator construction (needed for mutualized FPs)
blanchet
parents: 51910
diff changeset
   234
    val rho = tvar_subst thy (fpTs0 @ Cs0) (fpTs @ Cs);
6c425d450a8c more robust iterator construction (needed for mutualized FPs)
blanchet
parents: 51910
diff changeset
   235
  in
52170
564be617ae84 generalized "mk_co_iter" to handle mutualized (co)iterators
blanchet
parents: 52169
diff changeset
   236
    map (Term.subst_TVars rho) ts0
51911
6c425d450a8c more robust iterator construction (needed for mutualized FPs)
blanchet
parents: 51910
diff changeset
   237
  end;
51827
836257faaad5 tuned signature
blanchet
parents: 51824
diff changeset
   238
57665
232954f7df1c tuned code
blanchet
parents: 57633
diff changeset
   239
fun mk_set Ts t =
232954f7df1c tuned code
blanchet
parents: 57633
diff changeset
   240
  subst_nonatomic_types (snd (Term.dest_Type (domain_type (fastype_of t))) ~~ Ts) t;
232954f7df1c tuned code
blanchet
parents: 57633
diff changeset
   241
55575
a5e33e18fb5c moved 'primrec' up (for real this time) and removed temporary 'old_primrec'
blanchet
parents: 55573
diff changeset
   242
fun unzip_recT (Type (@{type_name prod}, _)) T = [T]
a5e33e18fb5c moved 'primrec' up (for real this time) and removed temporary 'old_primrec'
blanchet
parents: 55573
diff changeset
   243
  | unzip_recT _ (Type (@{type_name prod}, Ts)) = Ts
a5e33e18fb5c moved 'primrec' up (for real this time) and removed temporary 'old_primrec'
blanchet
parents: 55573
diff changeset
   244
  | unzip_recT _ T = [T];
a5e33e18fb5c moved 'primrec' up (for real this time) and removed temporary 'old_primrec'
blanchet
parents: 55573
diff changeset
   245
53591
b6e2993fd0d3 don't wrongly destroy sum types in coiterators
blanchet
parents: 53569
diff changeset
   246
fun unzip_corecT (Type (@{type_name sum}, _)) T = [T]
53901
blanchet
parents: 53888
diff changeset
   247
  | unzip_corecT _ (Type (@{type_name sum}, Ts)) = Ts
52871
blanchet
parents: 52870
diff changeset
   248
  | unzip_corecT _ T = [T];
blanchet
parents: 52870
diff changeset
   249
52347
ead18e3b2c1b changed back type of corecursor for nested case, effectively reverting aa66ea552357 and 78a3d5006cf1
blanchet
parents: 52346
diff changeset
   250
fun liveness_of_fp_bnf n bnf =
ead18e3b2c1b changed back type of corecursor for nested case, effectively reverting aa66ea552357 and 78a3d5006cf1
blanchet
parents: 52346
diff changeset
   251
  (case T_of_bnf bnf of
ead18e3b2c1b changed back type of corecursor for nested case, effectively reverting aa66ea552357 and 78a3d5006cf1
blanchet
parents: 52346
diff changeset
   252
    Type (_, Ts) => map (not o member (op =) (deads_of_bnf bnf)) Ts
ead18e3b2c1b changed back type of corecursor for nested case, effectively reverting aa66ea552357 and 78a3d5006cf1
blanchet
parents: 52346
diff changeset
   253
  | _ => replicate n false);
ead18e3b2c1b changed back type of corecursor for nested case, effectively reverting aa66ea552357 and 78a3d5006cf1
blanchet
parents: 52346
diff changeset
   254
55700
cf6a029b28d8 more precise error message
blanchet
parents: 55699
diff changeset
   255
fun cannot_merge_types fp =
cf6a029b28d8 more precise error message
blanchet
parents: 55699
diff changeset
   256
  error ("Mutually " ^ co_prefix fp ^ "recursive types must have the same type parameters");
52347
ead18e3b2c1b changed back type of corecursor for nested case, effectively reverting aa66ea552357 and 78a3d5006cf1
blanchet
parents: 52346
diff changeset
   257
55700
cf6a029b28d8 more precise error message
blanchet
parents: 55699
diff changeset
   258
fun merge_type_arg fp T T' = if T = T' then T else cannot_merge_types fp;
52347
ead18e3b2c1b changed back type of corecursor for nested case, effectively reverting aa66ea552357 and 78a3d5006cf1
blanchet
parents: 52346
diff changeset
   259
55700
cf6a029b28d8 more precise error message
blanchet
parents: 55699
diff changeset
   260
fun merge_type_args fp (As, As') =
cf6a029b28d8 more precise error message
blanchet
parents: 55699
diff changeset
   261
  if length As = length As' then map2 (merge_type_arg fp) As As' else cannot_merge_types fp;
52347
ead18e3b2c1b changed back type of corecursor for nested case, effectively reverting aa66ea552357 and 78a3d5006cf1
blanchet
parents: 52346
diff changeset
   262
57200
aab87ffa60cc use 'where' clause for selector default value syntax
blanchet
parents: 57199
diff changeset
   263
fun type_args_named_constrained_of_spec (((((ncAs, _), _), _), _), _) = ncAs;
aab87ffa60cc use 'where' clause for selector default value syntax
blanchet
parents: 57199
diff changeset
   264
fun type_binding_of_spec (((((_, b), _), _), _), _) = b;
57206
d9be905d6283 changed syntax of map: and rel: arguments to BNF-based datatypes
blanchet
parents: 57205
diff changeset
   265
fun mixfix_of_spec ((((_, mx), _), _), _) = mx;
d9be905d6283 changed syntax of map: and rel: arguments to BNF-based datatypes
blanchet
parents: 57205
diff changeset
   266
fun mixfixed_ctr_specs_of_spec (((_, mx_ctr_specs), _), _) = mx_ctr_specs;
d9be905d6283 changed syntax of map: and rel: arguments to BNF-based datatypes
blanchet
parents: 57205
diff changeset
   267
fun map_binding_of_spec ((_, (b, _)), _) = b;
d9be905d6283 changed syntax of map: and rel: arguments to BNF-based datatypes
blanchet
parents: 57205
diff changeset
   268
fun rel_binding_of_spec ((_, (_, b)), _) = b;
57200
aab87ffa60cc use 'where' clause for selector default value syntax
blanchet
parents: 57199
diff changeset
   269
fun sel_default_eqs_of_spec (_, ts) = ts;
52347
ead18e3b2c1b changed back type of corecursor for nested case, effectively reverting aa66ea552357 and 78a3d5006cf1
blanchet
parents: 52346
diff changeset
   270
57397
5004aca20821 tuned variable names
blanchet
parents: 57303
diff changeset
   271
fun add_nesting_bnf_names Us =
52347
ead18e3b2c1b changed back type of corecursor for nested case, effectively reverting aa66ea552357 and 78a3d5006cf1
blanchet
parents: 52346
diff changeset
   272
  let
ead18e3b2c1b changed back type of corecursor for nested case, effectively reverting aa66ea552357 and 78a3d5006cf1
blanchet
parents: 52346
diff changeset
   273
    fun add (Type (s, Ts)) ss =
ead18e3b2c1b changed back type of corecursor for nested case, effectively reverting aa66ea552357 and 78a3d5006cf1
blanchet
parents: 52346
diff changeset
   274
        let val (needs, ss') = fold_map add Ts ss in
ead18e3b2c1b changed back type of corecursor for nested case, effectively reverting aa66ea552357 and 78a3d5006cf1
blanchet
parents: 52346
diff changeset
   275
          if exists I needs then (true, insert (op =) s ss') else (false, ss')
ead18e3b2c1b changed back type of corecursor for nested case, effectively reverting aa66ea552357 and 78a3d5006cf1
blanchet
parents: 52346
diff changeset
   276
        end
ead18e3b2c1b changed back type of corecursor for nested case, effectively reverting aa66ea552357 and 78a3d5006cf1
blanchet
parents: 52346
diff changeset
   277
      | add T ss = (member (op =) Us T, ss);
ead18e3b2c1b changed back type of corecursor for nested case, effectively reverting aa66ea552357 and 78a3d5006cf1
blanchet
parents: 52346
diff changeset
   278
  in snd oo add end;
ead18e3b2c1b changed back type of corecursor for nested case, effectively reverting aa66ea552357 and 78a3d5006cf1
blanchet
parents: 52346
diff changeset
   279
57397
5004aca20821 tuned variable names
blanchet
parents: 57303
diff changeset
   280
fun nesting_bnfs ctxt ctr_Tsss Us =
5004aca20821 tuned variable names
blanchet
parents: 57303
diff changeset
   281
  map_filter (bnf_of ctxt) (fold (fold (fold (add_nesting_bnf_names Us))) ctr_Tsss []);
52347
ead18e3b2c1b changed back type of corecursor for nested case, effectively reverting aa66ea552357 and 78a3d5006cf1
blanchet
parents: 52346
diff changeset
   282
54237
7cc6e286fe28 made sugared 'coinduct' theorem construction n2m-proof
blanchet
parents: 54236
diff changeset
   283
fun indexify proj xs f p = f (find_index (curry (op =) (proj p)) xs) p;
52347
ead18e3b2c1b changed back type of corecursor for nested case, effectively reverting aa66ea552357 and 78a3d5006cf1
blanchet
parents: 52346
diff changeset
   284
53746
bd038e48526d have "datatype_new_compat" register induction and recursion theorems in nested case
blanchet
parents: 53741
diff changeset
   285
type lfp_sugar_thms =
55856
bddaada24074 got rid of automatically generated fold constant and theorems (to reduce overhead)
blanchet
parents: 55803
diff changeset
   286
  (thm list * thm * Args.src list) * (thm list list * Args.src list);
53746
bd038e48526d have "datatype_new_compat" register induction and recursion theorems in nested case
blanchet
parents: 53741
diff changeset
   287
55867
79b915f26533 rationalized internals
blanchet
parents: 55865
diff changeset
   288
fun morph_lfp_sugar_thms phi ((inducts, induct, induct_attrs), (recss, rec_attrs)) =
54256
4843082be7ef added some N2M caching
blanchet
parents: 54253
diff changeset
   289
  ((map (Morphism.thm phi) inducts, Morphism.thm phi induct, induct_attrs),
55867
79b915f26533 rationalized internals
blanchet
parents: 55865
diff changeset
   290
   (map (map (Morphism.thm phi)) recss, rec_attrs))
55095
7883bd17362f made SML/NJ happier
blanchet
parents: 55093
diff changeset
   291
  : lfp_sugar_thms;
54256
4843082be7ef added some N2M caching
blanchet
parents: 54253
diff changeset
   292
4843082be7ef added some N2M caching
blanchet
parents: 54253
diff changeset
   293
val transfer_lfp_sugar_thms =
54740
91f54d386680 maintain morphism names for diagnostic purposes;
wenzelm
parents: 54626
diff changeset
   294
  morph_lfp_sugar_thms o Morphism.transfer_morphism o Proof_Context.theory_of;
54256
4843082be7ef added some N2M caching
blanchet
parents: 54253
diff changeset
   295
53746
bd038e48526d have "datatype_new_compat" register induction and recursion theorems in nested case
blanchet
parents: 53741
diff changeset
   296
type gfp_sugar_thms =
57260
8747af0d1012 fixed postprocessing of 'coinduct' formula to obtain right property format (without needless hypotheses)
blanchet
parents: 57206
diff changeset
   297
  ((thm list * thm) list * (Args.src list * Args.src list))
57489
8f0ba9f2d10f generate 'corec_code' theorem for codatatypes
desharna
parents: 57471
diff changeset
   298
  * thm list list
8f0ba9f2d10f generate 'corec_code' theorem for codatatypes
desharna
parents: 57471
diff changeset
   299
  * thm list list
55856
bddaada24074 got rid of automatically generated fold constant and theorems (to reduce overhead)
blanchet
parents: 55803
diff changeset
   300
  * (thm list list * Args.src list)
bddaada24074 got rid of automatically generated fold constant and theorems (to reduce overhead)
blanchet
parents: 55803
diff changeset
   301
  * (thm list list list * Args.src list);
53746
bd038e48526d have "datatype_new_compat" register induction and recursion theorems in nested case
blanchet
parents: 53741
diff changeset
   302
57260
8747af0d1012 fixed postprocessing of 'coinduct' formula to obtain right property format (without needless hypotheses)
blanchet
parents: 57206
diff changeset
   303
fun morph_gfp_sugar_thms phi ((coinducts_pairs, coinduct_attrs_pair),
57489
8f0ba9f2d10f generate 'corec_code' theorem for codatatypes
desharna
parents: 57471
diff changeset
   304
    corecss, disc_corecss, (disc_corec_iffss, disc_corec_iff_attrs),
8f0ba9f2d10f generate 'corec_code' theorem for codatatypes
desharna
parents: 57471
diff changeset
   305
    (sel_corecsss, sel_corec_attrs)) =
54256
4843082be7ef added some N2M caching
blanchet
parents: 54253
diff changeset
   306
  ((map (apfst (map (Morphism.thm phi)) o apsnd (Morphism.thm phi)) coinducts_pairs,
57260
8747af0d1012 fixed postprocessing of 'coinduct' formula to obtain right property format (without needless hypotheses)
blanchet
parents: 57206
diff changeset
   307
    coinduct_attrs_pair),
57489
8f0ba9f2d10f generate 'corec_code' theorem for codatatypes
desharna
parents: 57471
diff changeset
   308
   map (map (Morphism.thm phi)) corecss,
8f0ba9f2d10f generate 'corec_code' theorem for codatatypes
desharna
parents: 57471
diff changeset
   309
   map (map (Morphism.thm phi)) disc_corecss,
55871
a28817253b31 removed (co)iterators from documentation
blanchet
parents: 55869
diff changeset
   310
   (map (map (Morphism.thm phi)) disc_corec_iffss, disc_corec_iff_attrs),
a28817253b31 removed (co)iterators from documentation
blanchet
parents: 55869
diff changeset
   311
   (map (map (map (Morphism.thm phi))) sel_corecsss, sel_corec_attrs)) : gfp_sugar_thms;
54256
4843082be7ef added some N2M caching
blanchet
parents: 54253
diff changeset
   312
4843082be7ef added some N2M caching
blanchet
parents: 54253
diff changeset
   313
val transfer_gfp_sugar_thms =
54740
91f54d386680 maintain morphism names for diagnostic purposes;
wenzelm
parents: 54626
diff changeset
   314
  morph_gfp_sugar_thms o Morphism.transfer_morphism o Proof_Context.theory_of;
54256
4843082be7ef added some N2M caching
blanchet
parents: 54253
diff changeset
   315
55867
79b915f26533 rationalized internals
blanchet
parents: 55865
diff changeset
   316
fun mk_recs_args_types ctr_Tsss Cs absTs repTs ns mss ctor_rec_fun_Ts lthy =
51832
blanchet
parents: 51831
diff changeset
   317
  let
52214
4cc5a80bba80 generalized recursors, effectively reverting inductive half of c7a034d01936
blanchet
parents: 52213
diff changeset
   318
    val Css = map2 replicate ns Cs;
55869
54ddb003e128 rationalized internals
blanchet
parents: 55868
diff changeset
   319
    val x_Tssss =
55867
79b915f26533 rationalized internals
blanchet
parents: 55865
diff changeset
   320
      map6 (fn absT => fn repT => fn n => fn ms => fn ctr_Tss => fn ctor_rec_fun_T =>
55803
74d3fe9031d8 joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents: 55772
diff changeset
   321
          map2 (map2 unzip_recT)
55867
79b915f26533 rationalized internals
blanchet
parents: 55865
diff changeset
   322
            ctr_Tss (dest_absumprodT absT repT n ms (domain_type ctor_rec_fun_T)))
79b915f26533 rationalized internals
blanchet
parents: 55865
diff changeset
   323
        absTs repTs ns mss ctr_Tsss ctor_rec_fun_Ts;
51832
blanchet
parents: 51831
diff changeset
   324
55869
54ddb003e128 rationalized internals
blanchet
parents: 55868
diff changeset
   325
    val x_Tsss' = map (map flat_rec_arg_args) x_Tssss;
54ddb003e128 rationalized internals
blanchet
parents: 55868
diff changeset
   326
    val f_Tss = map2 (map2 (curry (op --->))) x_Tsss' Css;
51832
blanchet
parents: 51831
diff changeset
   327
55869
54ddb003e128 rationalized internals
blanchet
parents: 55868
diff changeset
   328
    val ((fss, xssss), lthy) =
52214
4cc5a80bba80 generalized recursors, effectively reverting inductive half of c7a034d01936
blanchet
parents: 52213
diff changeset
   329
      lthy
55869
54ddb003e128 rationalized internals
blanchet
parents: 55868
diff changeset
   330
      |> mk_Freess "f" f_Tss
54ddb003e128 rationalized internals
blanchet
parents: 55868
diff changeset
   331
      ||>> mk_Freessss "x" x_Tssss;
51832
blanchet
parents: 51831
diff changeset
   332
  in
55869
54ddb003e128 rationalized internals
blanchet
parents: 55868
diff changeset
   333
    ((f_Tss, x_Tssss, fss, xssss), lthy)
51832
blanchet
parents: 51831
diff changeset
   334
  end;
blanchet
parents: 51831
diff changeset
   335
55867
79b915f26533 rationalized internals
blanchet
parents: 55865
diff changeset
   336
(*avoid "'a itself" arguments in corecursors*)
55966
972f0aa7091b balance tuples that represent curried functions
blanchet
parents: 55903
diff changeset
   337
fun repair_nullary_single_ctr [[]] = [[HOLogic.unitT]]
55772
367ec44763fd correct most general type for mutual recursion when several identical types are involved
blanchet
parents: 55701
diff changeset
   338
  | repair_nullary_single_ctr Tss = Tss;
367ec44763fd correct most general type for mutual recursion when several identical types are involved
blanchet
parents: 55701
diff changeset
   339
55867
79b915f26533 rationalized internals
blanchet
parents: 55865
diff changeset
   340
fun mk_corec_fun_arg_types0 ctr_Tsss Cs absTs repTs ns mss fun_Ts =
51829
3cc93eeac8cc signature tuning
blanchet
parents: 51828
diff changeset
   341
  let
55772
367ec44763fd correct most general type for mutual recursion when several identical types are involved
blanchet
parents: 55701
diff changeset
   342
    val ctr_Tsss' = map repair_nullary_single_ctr ctr_Tsss;
55869
54ddb003e128 rationalized internals
blanchet
parents: 55868
diff changeset
   343
    val g_absTs = map range_type fun_Ts;
54ddb003e128 rationalized internals
blanchet
parents: 55868
diff changeset
   344
    val g_Tsss = map repair_nullary_single_ctr (map5 dest_absumprodT absTs repTs ns mss g_absTs);
54ddb003e128 rationalized internals
blanchet
parents: 55868
diff changeset
   345
    val g_Tssss = map3 (fn C => map2 (map2 (map (curry (op -->) C) oo unzip_corecT)))
54ddb003e128 rationalized internals
blanchet
parents: 55868
diff changeset
   346
      Cs ctr_Tsss' g_Tsss;
54ddb003e128 rationalized internals
blanchet
parents: 55868
diff changeset
   347
    val q_Tssss = map (map (map (fn [_] => [] | [_, T] => [mk_pred1T (domain_type T)]))) g_Tssss;
52870
blanchet
parents: 52869
diff changeset
   348
  in
55869
54ddb003e128 rationalized internals
blanchet
parents: 55868
diff changeset
   349
    (q_Tssss, g_Tsss, g_Tssss, g_absTs)
52870
blanchet
parents: 52869
diff changeset
   350
  end;
51829
3cc93eeac8cc signature tuning
blanchet
parents: 51828
diff changeset
   351
55867
79b915f26533 rationalized internals
blanchet
parents: 55865
diff changeset
   352
fun mk_corec_p_pred_types Cs ns = map2 (fn n => replicate (Int.max (0, n - 1)) o mk_pred1T) ns Cs;
52898
2af1caada147 enrich exported ML function's signature
blanchet
parents: 52872
diff changeset
   353
55867
79b915f26533 rationalized internals
blanchet
parents: 55865
diff changeset
   354
fun mk_corec_fun_arg_types ctr_Tsss Cs absTs repTs ns mss dtor_corec =
79b915f26533 rationalized internals
blanchet
parents: 55865
diff changeset
   355
  (mk_corec_p_pred_types Cs ns,
79b915f26533 rationalized internals
blanchet
parents: 55865
diff changeset
   356
   mk_corec_fun_arg_types0 ctr_Tsss Cs absTs repTs ns mss
79b915f26533 rationalized internals
blanchet
parents: 55865
diff changeset
   357
     (binder_fun_types (fastype_of dtor_corec)));
51829
3cc93eeac8cc signature tuning
blanchet
parents: 51828
diff changeset
   358
55867
79b915f26533 rationalized internals
blanchet
parents: 55865
diff changeset
   359
fun mk_corecs_args_types ctr_Tsss Cs absTs repTs ns mss dtor_corec_fun_Ts lthy =
79b915f26533 rationalized internals
blanchet
parents: 55865
diff changeset
   360
  let
79b915f26533 rationalized internals
blanchet
parents: 55865
diff changeset
   361
    val p_Tss = mk_corec_p_pred_types Cs ns;
51829
3cc93eeac8cc signature tuning
blanchet
parents: 51828
diff changeset
   362
55869
54ddb003e128 rationalized internals
blanchet
parents: 55868
diff changeset
   363
    val (q_Tssss, g_Tsss, g_Tssss, corec_types) =
55867
79b915f26533 rationalized internals
blanchet
parents: 55865
diff changeset
   364
      mk_corec_fun_arg_types0 ctr_Tsss Cs absTs repTs ns mss dtor_corec_fun_Ts;
51831
blanchet
parents: 51830
diff changeset
   365
55869
54ddb003e128 rationalized internals
blanchet
parents: 55868
diff changeset
   366
    val (((((Free (x, _), cs), pss), qssss), gssss), lthy) =
51829
3cc93eeac8cc signature tuning
blanchet
parents: 51828
diff changeset
   367
      lthy
55869
54ddb003e128 rationalized internals
blanchet
parents: 55868
diff changeset
   368
      |> yield_singleton (mk_Frees "x") dummyT
52347
ead18e3b2c1b changed back type of corecursor for nested case, effectively reverting aa66ea552357 and 78a3d5006cf1
blanchet
parents: 52346
diff changeset
   369
      ||>> mk_Frees "a" Cs
51829
3cc93eeac8cc signature tuning
blanchet
parents: 51828
diff changeset
   370
      ||>> mk_Freess "p" p_Tss
55869
54ddb003e128 rationalized internals
blanchet
parents: 55868
diff changeset
   371
      ||>> mk_Freessss "q" q_Tssss
54ddb003e128 rationalized internals
blanchet
parents: 55868
diff changeset
   372
      ||>> mk_Freessss "g" g_Tssss;
51831
blanchet
parents: 51830
diff changeset
   373
blanchet
parents: 51830
diff changeset
   374
    val cpss = map2 (map o rapp) cs pss;
51829
3cc93eeac8cc signature tuning
blanchet
parents: 51828
diff changeset
   375
57303
498a62e65f5f tune the implementation of 'rel_coinduct'
desharna
parents: 57302
diff changeset
   376
    fun build_sum_inj mk_inj = build_map lthy [] (uncurry mk_inj o dest_sumT o snd);
52347
ead18e3b2c1b changed back type of corecursor for nested case, effectively reverting aa66ea552357 and 78a3d5006cf1
blanchet
parents: 52346
diff changeset
   377
55871
a28817253b31 removed (co)iterators from documentation
blanchet
parents: 55869
diff changeset
   378
    fun build_dtor_corec_arg _ [] [cg] = cg
a28817253b31 removed (co)iterators from documentation
blanchet
parents: 55869
diff changeset
   379
      | build_dtor_corec_arg T [cq] [cg, cg'] =
a28817253b31 removed (co)iterators from documentation
blanchet
parents: 55869
diff changeset
   380
        mk_If cq (build_sum_inj Inl_const (fastype_of cg, T) $ cg)
a28817253b31 removed (co)iterators from documentation
blanchet
parents: 55869
diff changeset
   381
          (build_sum_inj Inr_const (fastype_of cg', T) $ cg');
52347
ead18e3b2c1b changed back type of corecursor for nested case, effectively reverting aa66ea552357 and 78a3d5006cf1
blanchet
parents: 52346
diff changeset
   382
55869
54ddb003e128 rationalized internals
blanchet
parents: 55868
diff changeset
   383
    val pgss = map3 flat_corec_preds_predsss_gettersss pss qssss gssss;
54ddb003e128 rationalized internals
blanchet
parents: 55868
diff changeset
   384
    val cqssss = map2 (map o map o map o rapp) cs qssss;
54ddb003e128 rationalized internals
blanchet
parents: 55868
diff changeset
   385
    val cgssss = map2 (map o map o map o rapp) cs gssss;
54ddb003e128 rationalized internals
blanchet
parents: 55868
diff changeset
   386
    val cqgsss = map3 (map3 (map3 build_dtor_corec_arg)) g_Tsss cqssss cgssss;
51831
blanchet
parents: 51830
diff changeset
   387
  in
55869
54ddb003e128 rationalized internals
blanchet
parents: 55868
diff changeset
   388
    ((x, cs, cpss, ((pgss, cqgsss), corec_types)), lthy)
51831
blanchet
parents: 51830
diff changeset
   389
  end;
51829
3cc93eeac8cc signature tuning
blanchet
parents: 51828
diff changeset
   390
55867
79b915f26533 rationalized internals
blanchet
parents: 55865
diff changeset
   391
fun mk_co_recs_prelims fp ctr_Tsss fpTs Cs absTs repTs ns mss xtor_co_recs0 lthy =
51903
126f8d11f873 move function to library
blanchet
parents: 51902
diff changeset
   392
  let
52169
blanchet
parents: 51912
diff changeset
   393
    val thy = Proof_Context.theory_of lthy;
blanchet
parents: 51912
diff changeset
   394
55867
79b915f26533 rationalized internals
blanchet
parents: 55865
diff changeset
   395
    val (xtor_co_rec_fun_Ts, xtor_co_recs) =
79b915f26533 rationalized internals
blanchet
parents: 55865
diff changeset
   396
      mk_xtor_co_recs thy fp fpTs Cs xtor_co_recs0 |> `(binder_fun_types o fastype_of o hd);
51903
126f8d11f873 move function to library
blanchet
parents: 51902
diff changeset
   397
55867
79b915f26533 rationalized internals
blanchet
parents: 55865
diff changeset
   398
    val ((recs_args_types, corecs_args_types), lthy') =
52207
21026c312cc3 tuning -- avoided unreadable true/false all over the place for LFP/GFP
blanchet
parents: 52197
diff changeset
   399
      if fp = Least_FP then
56641
029997d3b5d8 reverted rb458558cbcc2 -- better to keep 'case' and 'rec' distinct, otherwise we lose the connection between 'ctor_rec' (the low-level recursor) and 'rec'
blanchet
parents: 56640
diff changeset
   400
        mk_recs_args_types ctr_Tsss Cs absTs repTs ns mss xtor_co_rec_fun_Ts lthy
029997d3b5d8 reverted rb458558cbcc2 -- better to keep 'case' and 'rec' distinct, otherwise we lose the connection between 'ctor_rec' (the low-level recursor) and 'rec'
blanchet
parents: 56640
diff changeset
   401
        |>> (rpair NONE o SOME)
51903
126f8d11f873 move function to library
blanchet
parents: 51902
diff changeset
   402
      else
55867
79b915f26533 rationalized internals
blanchet
parents: 55865
diff changeset
   403
        mk_corecs_args_types ctr_Tsss Cs absTs repTs ns mss xtor_co_rec_fun_Ts lthy
55803
74d3fe9031d8 joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents: 55772
diff changeset
   404
        |>> (pair NONE o SOME);
51903
126f8d11f873 move function to library
blanchet
parents: 51902
diff changeset
   405
  in
55867
79b915f26533 rationalized internals
blanchet
parents: 55865
diff changeset
   406
    ((xtor_co_recs, recs_args_types, corecs_args_types), lthy')
51903
126f8d11f873 move function to library
blanchet
parents: 51902
diff changeset
   407
  end;
126f8d11f873 move function to library
blanchet
parents: 51902
diff changeset
   408
55869
54ddb003e128 rationalized internals
blanchet
parents: 55868
diff changeset
   409
fun mk_preds_getterss_join c cps absT abs cqgss =
55803
74d3fe9031d8 joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents: 55772
diff changeset
   410
  let
55869
54ddb003e128 rationalized internals
blanchet
parents: 55868
diff changeset
   411
    val n = length cqgss;
54ddb003e128 rationalized internals
blanchet
parents: 55868
diff changeset
   412
    val ts = map2 (mk_absumprod absT abs n) (1 upto n) cqgss;
55803
74d3fe9031d8 joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents: 55772
diff changeset
   413
  in
74d3fe9031d8 joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents: 55772
diff changeset
   414
    Term.lambda c (mk_IfN absT cps ts)
51900
blanchet
parents: 51899
diff changeset
   415
  end;
51886
e7fac4a483b5 started factoring out coiter construction
blanchet
parents: 51885
diff changeset
   416
55867
79b915f26533 rationalized internals
blanchet
parents: 55865
diff changeset
   417
fun define_co_rec fp fpT Cs b rhs lthy0 =
51897
9a27c870ee21 refactoring
blanchet
parents: 51896
diff changeset
   418
  let
52170
564be617ae84 generalized "mk_co_iter" to handle mutualized (co)iterators
blanchet
parents: 52169
diff changeset
   419
    val thy = Proof_Context.theory_of lthy0;
564be617ae84 generalized "mk_co_iter" to handle mutualized (co)iterators
blanchet
parents: 52169
diff changeset
   420
53569
b4db0ade27bd conceal definitions of high-level constructors and (co)iterators
traytel
parents: 53553
diff changeset
   421
    val maybe_conceal_def_binding = Thm.def_binding
b4db0ade27bd conceal definitions of high-level constructors and (co)iterators
traytel
parents: 53553
diff changeset
   422
      #> Config.get lthy0 bnf_note_all = false ? Binding.conceal;
b4db0ade27bd conceal definitions of high-level constructors and (co)iterators
traytel
parents: 53553
diff changeset
   423
55864
516ab2906e7e rationalized internals
blanchet
parents: 55863
diff changeset
   424
    val ((cst, (_, def)), (lthy', lthy)) = lthy0
516ab2906e7e rationalized internals
blanchet
parents: 55863
diff changeset
   425
      |> Local_Theory.define ((b, NoSyn), ((maybe_conceal_def_binding b, []), rhs))
52327
blanchet
parents: 52326
diff changeset
   426
      ||> `Local_Theory.restore;
blanchet
parents: 52326
diff changeset
   427
blanchet
parents: 52326
diff changeset
   428
    val phi = Proof_Context.export_morphism lthy lthy';
blanchet
parents: 52326
diff changeset
   429
55869
54ddb003e128 rationalized internals
blanchet
parents: 55868
diff changeset
   430
    val cst' = mk_co_rec thy fp fpT Cs (Morphism.term phi cst);
55864
516ab2906e7e rationalized internals
blanchet
parents: 55863
diff changeset
   431
    val def' = Morphism.thm phi def;
52327
blanchet
parents: 52326
diff changeset
   432
  in
55864
516ab2906e7e rationalized internals
blanchet
parents: 55863
diff changeset
   433
    ((cst', def'), lthy')
52327
blanchet
parents: 52326
diff changeset
   434
  end;
blanchet
parents: 52326
diff changeset
   435
56641
029997d3b5d8 reverted rb458558cbcc2 -- better to keep 'case' and 'rec' distinct, otherwise we lose the connection between 'ctor_rec' (the low-level recursor) and 'rec'
blanchet
parents: 56640
diff changeset
   436
fun define_rec (_, _, fss, xssss) mk_binding fpTs Cs reps ctor_rec =
029997d3b5d8 reverted rb458558cbcc2 -- better to keep 'case' and 'rec' distinct, otherwise we lose the connection between 'ctor_rec' (the low-level recursor) and 'rec'
blanchet
parents: 56640
diff changeset
   437
  let
029997d3b5d8 reverted rb458558cbcc2 -- better to keep 'case' and 'rec' distinct, otherwise we lose the connection between 'ctor_rec' (the low-level recursor) and 'rec'
blanchet
parents: 56640
diff changeset
   438
    val nn = length fpTs;
029997d3b5d8 reverted rb458558cbcc2 -- better to keep 'case' and 'rec' distinct, otherwise we lose the connection between 'ctor_rec' (the low-level recursor) and 'rec'
blanchet
parents: 56640
diff changeset
   439
    val (ctor_rec_absTs, fpT) = strip_typeN nn (fastype_of ctor_rec)
029997d3b5d8 reverted rb458558cbcc2 -- better to keep 'case' and 'rec' distinct, otherwise we lose the connection between 'ctor_rec' (the low-level recursor) and 'rec'
blanchet
parents: 56640
diff changeset
   440
      |>> map domain_type ||> domain_type;
029997d3b5d8 reverted rb458558cbcc2 -- better to keep 'case' and 'rec' distinct, otherwise we lose the connection between 'ctor_rec' (the low-level recursor) and 'rec'
blanchet
parents: 56640
diff changeset
   441
  in
029997d3b5d8 reverted rb458558cbcc2 -- better to keep 'case' and 'rec' distinct, otherwise we lose the connection between 'ctor_rec' (the low-level recursor) and 'rec'
blanchet
parents: 56640
diff changeset
   442
    define_co_rec Least_FP fpT Cs (mk_binding recN)
029997d3b5d8 reverted rb458558cbcc2 -- better to keep 'case' and 'rec' distinct, otherwise we lose the connection between 'ctor_rec' (the low-level recursor) and 'rec'
blanchet
parents: 56640
diff changeset
   443
      (fold_rev (fold_rev Term.lambda) fss (Term.list_comb (ctor_rec,
029997d3b5d8 reverted rb458558cbcc2 -- better to keep 'case' and 'rec' distinct, otherwise we lose the connection between 'ctor_rec' (the low-level recursor) and 'rec'
blanchet
parents: 56640
diff changeset
   444
         map4 (fn ctor_rec_absT => fn rep => fn fs => fn xsss =>
029997d3b5d8 reverted rb458558cbcc2 -- better to keep 'case' and 'rec' distinct, otherwise we lose the connection between 'ctor_rec' (the low-level recursor) and 'rec'
blanchet
parents: 56640
diff changeset
   445
             mk_case_absumprod ctor_rec_absT rep fs (map (map HOLogic.mk_tuple) xsss)
029997d3b5d8 reverted rb458558cbcc2 -- better to keep 'case' and 'rec' distinct, otherwise we lose the connection between 'ctor_rec' (the low-level recursor) and 'rec'
blanchet
parents: 56640
diff changeset
   446
               (map flat_rec_arg_args xsss))
029997d3b5d8 reverted rb458558cbcc2 -- better to keep 'case' and 'rec' distinct, otherwise we lose the connection between 'ctor_rec' (the low-level recursor) and 'rec'
blanchet
parents: 56640
diff changeset
   447
           ctor_rec_absTs reps fss xssss)))
029997d3b5d8 reverted rb458558cbcc2 -- better to keep 'case' and 'rec' distinct, otherwise we lose the connection between 'ctor_rec' (the low-level recursor) and 'rec'
blanchet
parents: 56640
diff changeset
   448
  end;
51897
9a27c870ee21 refactoring
blanchet
parents: 51896
diff changeset
   449
55869
54ddb003e128 rationalized internals
blanchet
parents: 55868
diff changeset
   450
fun define_corec (_, cs, cpss, ((pgss, cqgsss), f_absTs)) mk_binding fpTs Cs abss dtor_corec =
51897
9a27c870ee21 refactoring
blanchet
parents: 51896
diff changeset
   451
  let
51899
c2c23ac31973 code tuning
blanchet
parents: 51897
diff changeset
   452
    val nn = length fpTs;
55867
79b915f26533 rationalized internals
blanchet
parents: 55865
diff changeset
   453
    val fpT = range_type (snd (strip_typeN nn (fastype_of dtor_corec)));
51897
9a27c870ee21 refactoring
blanchet
parents: 51896
diff changeset
   454
  in
55867
79b915f26533 rationalized internals
blanchet
parents: 55865
diff changeset
   455
    define_co_rec Greatest_FP fpT Cs (mk_binding corecN)
55869
54ddb003e128 rationalized internals
blanchet
parents: 55868
diff changeset
   456
      (fold_rev (fold_rev Term.lambda) pgss (Term.list_comb (dtor_corec,
54ddb003e128 rationalized internals
blanchet
parents: 55868
diff changeset
   457
         map5 mk_preds_getterss_join cs cpss f_absTs abss cqgsss)))
52320
blanchet
parents: 52319
diff changeset
   458
  end;
51897
9a27c870ee21 refactoring
blanchet
parents: 51896
diff changeset
   459
57471
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
   460
fun postproc_co_induct lthy nn prop prop_conj =
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
   461
  Drule.zero_var_indexes
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
   462
  #> `(conj_dests nn)
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
   463
  #>> map (fn thm => Thm.permute_prems 0 (~1) (thm RS prop))
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
   464
  ##> (fn thm => Thm.permute_prems 0 (~nn)
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
   465
    (if nn = 1 then thm RS prop
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
   466
     else funpow nn (fn thm => Local_Defs.unfold lthy @{thms conj_assoc} (thm RS prop_conj)) thm));
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
   467
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
   468
fun mk_induct_attrs ctrss =
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
   469
  let
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
   470
    val induct_cases = quasi_unambiguous_case_names (maps (map name_of_ctr) ctrss);
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
   471
    val induct_case_names_attr = Attrib.internal (K (Rule_Cases.case_names induct_cases));
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
   472
  in
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
   473
    [induct_case_names_attr]
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
   474
  end;
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
   475
57535
9b99b773acd4 made SML/NJ happier
blanchet
parents: 57525
diff changeset
   476
fun derive_rel_induct_thms_for_types lthy fpA_Ts As Bs ctrAss ctrAs_Tsss exhausts ctor_rel_induct
9b99b773acd4 made SML/NJ happier
blanchet
parents: 57525
diff changeset
   477
    ctor_defss ctor_injects pre_rel_defs abs_inverses live_nesting_rel_eqs =
57471
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
   478
  let
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
   479
    val B_ify = typ_subst_nonatomic (As ~~ Bs)
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
   480
    val fpB_Ts = map B_ify fpA_Ts;
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
   481
    val ctrBs_Tsss = map (map (map B_ify)) ctrAs_Tsss;
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
   482
    val ctrBss = map (map (subst_nonatomic_types (As ~~ Bs))) ctrAss;
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
   483
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
   484
    val ((((Rs, IRs), ctrAsss), ctrBsss), names_lthy) = lthy
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
   485
      |> mk_Frees "R" (map2 mk_pred2T As Bs)
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
   486
      ||>> mk_Frees "IR" (map2 mk_pred2T fpA_Ts fpB_Ts)
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
   487
      ||>> mk_Freesss "a" ctrAs_Tsss
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
   488
      ||>> mk_Freesss "b" ctrBs_Tsss;
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
   489
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
   490
    val premises =
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
   491
      let
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
   492
        fun mk_prem ctrA ctrB argAs argBs =
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
   493
          fold_rev Logic.all (argAs @ argBs) (fold_rev (curry Logic.mk_implies)
57565
ab7f39114507 refactor commonly used functions
desharna
parents: 57563
diff changeset
   494
            (map2 (HOLogic.mk_Trueprop oo build_rel_app names_lthy (Rs @ IRs) fpA_Ts) argAs argBs)
ab7f39114507 refactor commonly used functions
desharna
parents: 57563
diff changeset
   495
            (HOLogic.mk_Trueprop (build_rel_app names_lthy (Rs @ IRs) fpA_Ts
ab7f39114507 refactor commonly used functions
desharna
parents: 57563
diff changeset
   496
              (Term.list_comb (ctrA, argAs)) (Term.list_comb (ctrB, argBs)))));
57471
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
   497
      in
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
   498
        flat (map4 (map4 mk_prem) ctrAss ctrBss ctrAsss ctrBsss)
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
   499
      end;
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
   500
57525
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
   501
    val goal = HOLogic.mk_Trueprop (Library.foldr1 HOLogic.mk_conj (map2 mk_leq
57565
ab7f39114507 refactor commonly used functions
desharna
parents: 57563
diff changeset
   502
      (map2 (build_the_rel lthy (Rs @ IRs) []) fpA_Ts fpB_Ts) IRs));
57471
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
   503
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
   504
    val rel_induct0_thm = Goal.prove_sorry lthy [] premises goal
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
   505
      (fn {context = ctxt, prems = prems} =>
57535
9b99b773acd4 made SML/NJ happier
blanchet
parents: 57525
diff changeset
   506
          mk_rel_induct0_tac ctxt ctor_rel_induct prems (map (certify ctxt) IRs) exhausts ctor_defss
9b99b773acd4 made SML/NJ happier
blanchet
parents: 57525
diff changeset
   507
            ctor_injects pre_rel_defs abs_inverses live_nesting_rel_eqs)
57471
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
   508
      |> singleton (Proof_Context.export names_lthy lthy)
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
   509
      |> Thm.close_derivation;
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
   510
  in
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
   511
    (postproc_co_induct lthy (length fpA_Ts) @{thm predicate2D} @{thm predicate2D_conj}
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
   512
       rel_induct0_thm,
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
   513
     mk_induct_attrs ctrAss)
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
   514
  end;
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
   515
55867
79b915f26533 rationalized internals
blanchet
parents: 55865
diff changeset
   516
fun derive_induct_recs_thms_for_types pre_bnfs rec_args_typess ctor_induct ctor_rec_thms
57397
5004aca20821 tuned variable names
blanchet
parents: 57303
diff changeset
   517
    live_nesting_bnfs fp_nesting_bnfs fpTs Cs Xs ctrXs_Tsss fp_abs_inverses fp_type_definitions
5004aca20821 tuned variable names
blanchet
parents: 57303
diff changeset
   518
    abs_inverses ctrss ctr_defss recs rec_defs lthy =
51808
355dcd6a9b3c factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents: 51805
diff changeset
   519
  let
51827
836257faaad5 tuned signature
blanchet
parents: 51824
diff changeset
   520
    val ctr_Tsss = map (map (binder_types o fastype_of)) ctrss;
836257faaad5 tuned signature
blanchet
parents: 51824
diff changeset
   521
51815
efacb9b99865 tune signatures
blanchet
parents: 51814
diff changeset
   522
    val nn = length pre_bnfs;
51827
836257faaad5 tuned signature
blanchet
parents: 51824
diff changeset
   523
    val ns = map length ctr_Tsss;
836257faaad5 tuned signature
blanchet
parents: 51824
diff changeset
   524
    val mss = map (map length) ctr_Tsss;
51815
efacb9b99865 tune signatures
blanchet
parents: 51814
diff changeset
   525
51808
355dcd6a9b3c factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents: 51805
diff changeset
   526
    val pre_map_defs = map map_def_of_bnf pre_bnfs;
355dcd6a9b3c factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents: 51805
diff changeset
   527
    val pre_set_defss = map set_defs_of_bnf pre_bnfs;
57399
cfc19f0a6261 compile
blanchet
parents: 57397
diff changeset
   528
    val live_nesting_map_ident0s = map map_ident0_of_bnf live_nesting_bnfs;
cfc19f0a6261 compile
blanchet
parents: 57397
diff changeset
   529
    val fp_nesting_map_ident0s = map map_ident0_of_bnf fp_nesting_bnfs;
57397
5004aca20821 tuned variable names
blanchet
parents: 57303
diff changeset
   530
    val fp_nesting_set_maps = maps set_map_of_bnf fp_nesting_bnfs;
51808
355dcd6a9b3c factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents: 51805
diff changeset
   531
51816
5f1dec4297da use base names, not full names
blanchet
parents: 51815
diff changeset
   532
    val fp_b_names = map base_name_of_typ fpTs;
51811
1461426e2bf1 tuned function signatures
blanchet
parents: 51810
diff changeset
   533
51832
blanchet
parents: 51831
diff changeset
   534
    val ((((ps, ps'), xsss), us'), names_lthy) =
52315
fafab8eac3ee avoid duplicate call to "mk_fold_rec_args_types" function
blanchet
parents: 52314
diff changeset
   535
      lthy
51808
355dcd6a9b3c factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents: 51805
diff changeset
   536
      |> mk_Frees' "P" (map mk_pred1T fpTs)
51827
836257faaad5 tuned signature
blanchet
parents: 51824
diff changeset
   537
      ||>> mk_Freesss "x" ctr_Tsss
51816
5f1dec4297da use base names, not full names
blanchet
parents: 51815
diff changeset
   538
      ||>> Variable.variant_fixes fp_b_names;
51808
355dcd6a9b3c factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents: 51805
diff changeset
   539
355dcd6a9b3c factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents: 51805
diff changeset
   540
    val us = map2 (curry Free) us' fpTs;
355dcd6a9b3c factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents: 51805
diff changeset
   541
57665
232954f7df1c tuned code
blanchet
parents: 57633
diff changeset
   542
    fun mk_sets bnf =
51808
355dcd6a9b3c factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents: 51805
diff changeset
   543
      let
355dcd6a9b3c factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents: 51805
diff changeset
   544
        val Type (T_name, Us) = T_of_bnf bnf;
355dcd6a9b3c factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents: 51805
diff changeset
   545
        val lives = lives_of_bnf bnf;
355dcd6a9b3c factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents: 51805
diff changeset
   546
        val sets = sets_of_bnf bnf;
355dcd6a9b3c factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents: 51805
diff changeset
   547
        fun mk_set U =
54237
7cc6e286fe28 made sugared 'coinduct' theorem construction n2m-proof
blanchet
parents: 54236
diff changeset
   548
          (case find_index (curry (op =) U) lives of
51808
355dcd6a9b3c factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents: 51805
diff changeset
   549
            ~1 => Term.dummy
355dcd6a9b3c factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents: 51805
diff changeset
   550
          | i => nth sets i);
355dcd6a9b3c factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents: 51805
diff changeset
   551
      in
355dcd6a9b3c factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents: 51805
diff changeset
   552
        (T_name, map mk_set Us)
355dcd6a9b3c factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents: 51805
diff changeset
   553
      end;
355dcd6a9b3c factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents: 51805
diff changeset
   554
57665
232954f7df1c tuned code
blanchet
parents: 57633
diff changeset
   555
    val setss_fp_nesting = map mk_sets fp_nesting_bnfs;
51808
355dcd6a9b3c factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents: 51805
diff changeset
   556
355dcd6a9b3c factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents: 51805
diff changeset
   557
    val (induct_thms, induct_thm) =
355dcd6a9b3c factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents: 51805
diff changeset
   558
      let
52310
28063e412793 support induction principles with multiple occurrences of the same type in "fpTs" and (hopefully) with loss of recursion (e.g. primrec definition of is_nil, where the IH can be dropped)
blanchet
parents: 52309
diff changeset
   559
        fun mk_raw_prem_prems _ (x as Free (_, Type _)) (X as TFree _) =
54237
7cc6e286fe28 made sugared 'coinduct' theorem construction n2m-proof
blanchet
parents: 54236
diff changeset
   560
            [([], (find_index (curry (op =) X) Xs + 1, x))]
52310
28063e412793 support induction principles with multiple occurrences of the same type in "fpTs" and (hopefully) with loss of recursion (e.g. primrec definition of is_nil, where the IH can be dropped)
blanchet
parents: 52309
diff changeset
   561
          | mk_raw_prem_prems names_lthy (x as Free (s, Type (T_name, Ts0))) (Type (_, Xs_Ts0)) =
57665
232954f7df1c tuned code
blanchet
parents: 57633
diff changeset
   562
            (case AList.lookup (op =) setss_fp_nesting T_name of
52310
28063e412793 support induction principles with multiple occurrences of the same type in "fpTs" and (hopefully) with loss of recursion (e.g. primrec definition of is_nil, where the IH can be dropped)
blanchet
parents: 52309
diff changeset
   563
              NONE => []
28063e412793 support induction principles with multiple occurrences of the same type in "fpTs" and (hopefully) with loss of recursion (e.g. primrec definition of is_nil, where the IH can be dropped)
blanchet
parents: 52309
diff changeset
   564
            | SOME raw_sets0 =>
28063e412793 support induction principles with multiple occurrences of the same type in "fpTs" and (hopefully) with loss of recursion (e.g. primrec definition of is_nil, where the IH can be dropped)
blanchet
parents: 52309
diff changeset
   565
              let
28063e412793 support induction principles with multiple occurrences of the same type in "fpTs" and (hopefully) with loss of recursion (e.g. primrec definition of is_nil, where the IH can be dropped)
blanchet
parents: 52309
diff changeset
   566
                val (Xs_Ts, (Ts, raw_sets)) =
28063e412793 support induction principles with multiple occurrences of the same type in "fpTs" and (hopefully) with loss of recursion (e.g. primrec definition of is_nil, where the IH can be dropped)
blanchet
parents: 52309
diff changeset
   567
                  filter (exists_subtype_in Xs o fst) (Xs_Ts0 ~~ (Ts0 ~~ raw_sets0))
28063e412793 support induction principles with multiple occurrences of the same type in "fpTs" and (hopefully) with loss of recursion (e.g. primrec definition of is_nil, where the IH can be dropped)
blanchet
parents: 52309
diff changeset
   568
                  |> split_list ||> split_list;
28063e412793 support induction principles with multiple occurrences of the same type in "fpTs" and (hopefully) with loss of recursion (e.g. primrec definition of is_nil, where the IH can be dropped)
blanchet
parents: 52309
diff changeset
   569
                val sets = map (mk_set Ts0) raw_sets;
28063e412793 support induction principles with multiple occurrences of the same type in "fpTs" and (hopefully) with loss of recursion (e.g. primrec definition of is_nil, where the IH can be dropped)
blanchet
parents: 52309
diff changeset
   570
                val (ys, names_lthy') = names_lthy |> mk_Frees s Ts;
28063e412793 support induction principles with multiple occurrences of the same type in "fpTs" and (hopefully) with loss of recursion (e.g. primrec definition of is_nil, where the IH can be dropped)
blanchet
parents: 52309
diff changeset
   571
                val xysets = map (pair x) (ys ~~ sets);
28063e412793 support induction principles with multiple occurrences of the same type in "fpTs" and (hopefully) with loss of recursion (e.g. primrec definition of is_nil, where the IH can be dropped)
blanchet
parents: 52309
diff changeset
   572
                val ppremss = map2 (mk_raw_prem_prems names_lthy') ys Xs_Ts;
28063e412793 support induction principles with multiple occurrences of the same type in "fpTs" and (hopefully) with loss of recursion (e.g. primrec definition of is_nil, where the IH can be dropped)
blanchet
parents: 52309
diff changeset
   573
              in
28063e412793 support induction principles with multiple occurrences of the same type in "fpTs" and (hopefully) with loss of recursion (e.g. primrec definition of is_nil, where the IH can be dropped)
blanchet
parents: 52309
diff changeset
   574
                flat (map2 (map o apfst o cons) xysets ppremss)
28063e412793 support induction principles with multiple occurrences of the same type in "fpTs" and (hopefully) with loss of recursion (e.g. primrec definition of is_nil, where the IH can be dropped)
blanchet
parents: 52309
diff changeset
   575
              end)
28063e412793 support induction principles with multiple occurrences of the same type in "fpTs" and (hopefully) with loss of recursion (e.g. primrec definition of is_nil, where the IH can be dropped)
blanchet
parents: 52309
diff changeset
   576
          | mk_raw_prem_prems _ _ _ = [];
51808
355dcd6a9b3c factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents: 51805
diff changeset
   577
355dcd6a9b3c factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents: 51805
diff changeset
   578
        fun close_prem_prem xs t =
355dcd6a9b3c factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents: 51805
diff changeset
   579
          fold_rev Logic.all (map Free (drop (nn + length xs)
355dcd6a9b3c factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents: 51805
diff changeset
   580
            (rev (Term.add_frees t (map dest_Free xs @ ps'))))) t;
355dcd6a9b3c factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents: 51805
diff changeset
   581
355dcd6a9b3c factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents: 51805
diff changeset
   582
        fun mk_prem_prem xs (xysets, (j, x)) =
355dcd6a9b3c factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents: 51805
diff changeset
   583
          close_prem_prem xs (Logic.list_implies (map (fn (x', (y, set)) =>
57567
d554b0097ad4 add mk_Trueprop_mem utility function
desharna
parents: 57565
diff changeset
   584
              mk_Trueprop_mem (y, set $ x')) xysets,
51808
355dcd6a9b3c factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents: 51805
diff changeset
   585
            HOLogic.mk_Trueprop (nth ps (j - 1) $ x)));
355dcd6a9b3c factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents: 51805
diff changeset
   586
52310
28063e412793 support induction principles with multiple occurrences of the same type in "fpTs" and (hopefully) with loss of recursion (e.g. primrec definition of is_nil, where the IH can be dropped)
blanchet
parents: 52309
diff changeset
   587
        fun mk_raw_prem phi ctr ctr_Ts ctrXs_Ts =
51808
355dcd6a9b3c factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents: 51805
diff changeset
   588
          let
355dcd6a9b3c factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents: 51805
diff changeset
   589
            val (xs, names_lthy') = names_lthy |> mk_Frees "x" ctr_Ts;
52310
28063e412793 support induction principles with multiple occurrences of the same type in "fpTs" and (hopefully) with loss of recursion (e.g. primrec definition of is_nil, where the IH can be dropped)
blanchet
parents: 52309
diff changeset
   590
            val pprems = flat (map2 (mk_raw_prem_prems names_lthy') xs ctrXs_Ts);
51808
355dcd6a9b3c factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents: 51805
diff changeset
   591
          in (xs, pprems, HOLogic.mk_Trueprop (phi $ Term.list_comb (ctr, xs))) end;
355dcd6a9b3c factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents: 51805
diff changeset
   592
355dcd6a9b3c factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents: 51805
diff changeset
   593
        fun mk_prem (xs, raw_pprems, concl) =
355dcd6a9b3c factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents: 51805
diff changeset
   594
          fold_rev Logic.all xs (Logic.list_implies (map (mk_prem_prem xs) raw_pprems, concl));
355dcd6a9b3c factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents: 51805
diff changeset
   595
52310
28063e412793 support induction principles with multiple occurrences of the same type in "fpTs" and (hopefully) with loss of recursion (e.g. primrec definition of is_nil, where the IH can be dropped)
blanchet
parents: 52309
diff changeset
   596
        val raw_premss = map4 (map3 o mk_raw_prem) ps ctrss ctr_Tsss ctrXs_Tsss;
51808
355dcd6a9b3c factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents: 51805
diff changeset
   597
355dcd6a9b3c factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents: 51805
diff changeset
   598
        val goal =
355dcd6a9b3c factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents: 51805
diff changeset
   599
          Library.foldr (Logic.list_implies o apfst (map mk_prem)) (raw_premss,
54237
7cc6e286fe28 made sugared 'coinduct' theorem construction n2m-proof
blanchet
parents: 54236
diff changeset
   600
            HOLogic.mk_Trueprop (Library.foldr1 HOLogic.mk_conj (map2 (curry (op $)) ps us)));
51808
355dcd6a9b3c factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents: 51805
diff changeset
   601
355dcd6a9b3c factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents: 51805
diff changeset
   602
        val kksss = map (map (map (fst o snd) o #2)) raw_premss;
355dcd6a9b3c factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents: 51805
diff changeset
   603
55803
74d3fe9031d8 joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents: 55772
diff changeset
   604
        val ctor_induct' = ctor_induct OF (map2 mk_absumprodE fp_type_definitions mss);
51808
355dcd6a9b3c factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents: 51805
diff changeset
   605
355dcd6a9b3c factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents: 51805
diff changeset
   606
        val thm =
355dcd6a9b3c factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents: 51805
diff changeset
   607
          Goal.prove_sorry lthy [] [] goal (fn {context = ctxt, ...} =>
55803
74d3fe9031d8 joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents: 55772
diff changeset
   608
            mk_induct_tac ctxt nn ns mss kksss (flat ctr_defss) ctor_induct' fp_abs_inverses
57397
5004aca20821 tuned variable names
blanchet
parents: 57303
diff changeset
   609
              abs_inverses fp_nesting_set_maps pre_set_defss)
57633
4ff8c090d580 repaired named derivations
blanchet
parents: 57631
diff changeset
   610
          |> singleton (Proof_Context.export names_lthy lthy);
51808
355dcd6a9b3c factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents: 51805
diff changeset
   611
      in
355dcd6a9b3c factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents: 51805
diff changeset
   612
        `(conj_dests nn) thm
355dcd6a9b3c factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents: 51805
diff changeset
   613
      end;
355dcd6a9b3c factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents: 51805
diff changeset
   614
52305
3f7b92017d71 avoid code duplication
blanchet
parents: 52304
diff changeset
   615
    val xctrss = map2 (map2 (curry Term.list_comb)) ctrss xsss;
3f7b92017d71 avoid code duplication
blanchet
parents: 52304
diff changeset
   616
55867
79b915f26533 rationalized internals
blanchet
parents: 55865
diff changeset
   617
    fun mk_rec_thmss (_, x_Tssss, fss, _) recs rec_defs ctor_rec_thms =
51808
355dcd6a9b3c factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents: 51805
diff changeset
   618
      let
55867
79b915f26533 rationalized internals
blanchet
parents: 55865
diff changeset
   619
        val frecs = map (lists_bmoc fss) recs;
51808
355dcd6a9b3c factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents: 51805
diff changeset
   620
55871
a28817253b31 removed (co)iterators from documentation
blanchet
parents: 55869
diff changeset
   621
        fun mk_goal frec xctr f xs fxs =
51808
355dcd6a9b3c factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents: 51805
diff changeset
   622
          fold_rev (fold_rev Logic.all) (xs :: fss)
55867
79b915f26533 rationalized internals
blanchet
parents: 55865
diff changeset
   623
            (mk_Trueprop_eq (frec $ xctr, Term.list_comb (f, fxs)));
51808
355dcd6a9b3c factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents: 51805
diff changeset
   624
52302
blanchet
parents: 52301
diff changeset
   625
        fun maybe_tick (T, U) u f =
blanchet
parents: 52301
diff changeset
   626
          if try (fst o HOLogic.dest_prodT) U = SOME T then
blanchet
parents: 52301
diff changeset
   627
            Term.lambda u (HOLogic.mk_prod (u, f $ u))
blanchet
parents: 52301
diff changeset
   628
          else
blanchet
parents: 52301
diff changeset
   629
            f;
51808
355dcd6a9b3c factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents: 51805
diff changeset
   630
55867
79b915f26533 rationalized internals
blanchet
parents: 55865
diff changeset
   631
        fun build_rec (x as Free (_, T)) U =
52368
blanchet
parents: 52367
diff changeset
   632
          if T = U then
blanchet
parents: 52367
diff changeset
   633
            x
blanchet
parents: 52367
diff changeset
   634
          else
57303
498a62e65f5f tune the implementation of 'rel_coinduct'
desharna
parents: 57302
diff changeset
   635
            build_map lthy [] (indexify (perhaps (try (snd o HOLogic.dest_prodT)) o snd) Cs
55867
79b915f26533 rationalized internals
blanchet
parents: 55865
diff changeset
   636
              (fn kk => fn TU => maybe_tick TU (nth us kk) (nth frecs kk))) (T, U) $ x;
52301
7935e82a4ae4 simpler, more robust iterator goal construction code
blanchet
parents: 52300
diff changeset
   637
55867
79b915f26533 rationalized internals
blanchet
parents: 55865
diff changeset
   638
        val fxsss = map2 (map2 (flat_rec_arg_args oo map2 (map o build_rec))) xsss x_Tssss;
55871
a28817253b31 removed (co)iterators from documentation
blanchet
parents: 55869
diff changeset
   639
        val goalss = map5 (map4 o mk_goal) frecs xctrss fss xsss fxsss;
51808
355dcd6a9b3c factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents: 51805
diff changeset
   640
57397
5004aca20821 tuned variable names
blanchet
parents: 57303
diff changeset
   641
        val tacss = map4 (map ooo
57399
cfc19f0a6261 compile
blanchet
parents: 57397
diff changeset
   642
              mk_rec_tac pre_map_defs (fp_nesting_map_ident0s @ live_nesting_map_ident0s) rec_defs)
55867
79b915f26533 rationalized internals
blanchet
parents: 55865
diff changeset
   643
            ctor_rec_thms fp_abs_inverses abs_inverses ctr_defss;
51808
355dcd6a9b3c factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents: 51805
diff changeset
   644
355dcd6a9b3c factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents: 51805
diff changeset
   645
        fun prove goal tac =
355dcd6a9b3c factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents: 51805
diff changeset
   646
          Goal.prove_sorry lthy [] [] goal (tac o #context)
355dcd6a9b3c factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents: 51805
diff changeset
   647
          |> Thm.close_derivation;
355dcd6a9b3c factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents: 51805
diff changeset
   648
      in
52305
3f7b92017d71 avoid code duplication
blanchet
parents: 52304
diff changeset
   649
        map2 (map2 prove) goalss tacss
51808
355dcd6a9b3c factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents: 51805
diff changeset
   650
      end;
355dcd6a9b3c factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents: 51805
diff changeset
   651
56641
029997d3b5d8 reverted rb458558cbcc2 -- better to keep 'case' and 'rec' distinct, otherwise we lose the connection between 'ctor_rec' (the low-level recursor) and 'rec'
blanchet
parents: 56640
diff changeset
   652
    val rec_thmss = mk_rec_thmss (the rec_args_typess) recs rec_defs ctor_rec_thms;
51808
355dcd6a9b3c factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents: 51805
diff changeset
   653
  in
57471
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
   654
    ((induct_thms, induct_thm, mk_induct_attrs ctrss),
55856
bddaada24074 got rid of automatically generated fold constant and theorems (to reduce overhead)
blanchet
parents: 55803
diff changeset
   655
     (rec_thmss, code_nitpicksimp_attrs @ simp_attrs))
51808
355dcd6a9b3c factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents: 51805
diff changeset
   656
  end;
355dcd6a9b3c factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents: 51805
diff changeset
   657
57535
9b99b773acd4 made SML/NJ happier
blanchet
parents: 57525
diff changeset
   658
fun mk_coinduct_attributes fpTs ctrss discss mss =
57302
58f02fbaa764 generate 'rel_coinduct' theorem for codatatypes
desharna
parents: 57301
diff changeset
   659
  let
58f02fbaa764 generate 'rel_coinduct' theorem for codatatypes
desharna
parents: 57301
diff changeset
   660
    val nn = length fpTs;
58f02fbaa764 generate 'rel_coinduct' theorem for codatatypes
desharna
parents: 57301
diff changeset
   661
    val fp_b_names = map base_name_of_typ fpTs;
57535
9b99b773acd4 made SML/NJ happier
blanchet
parents: 57525
diff changeset
   662
57302
58f02fbaa764 generate 'rel_coinduct' theorem for codatatypes
desharna
parents: 57301
diff changeset
   663
    fun mk_coinduct_concls ms discs ctrs =
58f02fbaa764 generate 'rel_coinduct' theorem for codatatypes
desharna
parents: 57301
diff changeset
   664
      let
58f02fbaa764 generate 'rel_coinduct' theorem for codatatypes
desharna
parents: 57301
diff changeset
   665
        fun mk_disc_concl disc = [name_of_disc disc];
58f02fbaa764 generate 'rel_coinduct' theorem for codatatypes
desharna
parents: 57301
diff changeset
   666
        fun mk_ctr_concl 0 _ = []
58f02fbaa764 generate 'rel_coinduct' theorem for codatatypes
desharna
parents: 57301
diff changeset
   667
          | mk_ctr_concl _ ctor = [name_of_ctr ctor];
58f02fbaa764 generate 'rel_coinduct' theorem for codatatypes
desharna
parents: 57301
diff changeset
   668
        val disc_concls = map mk_disc_concl (fst (split_last discs)) @ [[]];
58f02fbaa764 generate 'rel_coinduct' theorem for codatatypes
desharna
parents: 57301
diff changeset
   669
        val ctr_concls = map2 mk_ctr_concl ms ctrs;
58f02fbaa764 generate 'rel_coinduct' theorem for codatatypes
desharna
parents: 57301
diff changeset
   670
      in
58f02fbaa764 generate 'rel_coinduct' theorem for codatatypes
desharna
parents: 57301
diff changeset
   671
        flat (map2 append disc_concls ctr_concls)
58f02fbaa764 generate 'rel_coinduct' theorem for codatatypes
desharna
parents: 57301
diff changeset
   672
      end;
57535
9b99b773acd4 made SML/NJ happier
blanchet
parents: 57525
diff changeset
   673
57302
58f02fbaa764 generate 'rel_coinduct' theorem for codatatypes
desharna
parents: 57301
diff changeset
   674
    val coinduct_cases = quasi_unambiguous_case_names (map (prefix EqN) fp_b_names);
58f02fbaa764 generate 'rel_coinduct' theorem for codatatypes
desharna
parents: 57301
diff changeset
   675
    val coinduct_conclss =
58f02fbaa764 generate 'rel_coinduct' theorem for codatatypes
desharna
parents: 57301
diff changeset
   676
      map3 (quasi_unambiguous_case_names ooo mk_coinduct_concls) mss discss ctrss;
58f02fbaa764 generate 'rel_coinduct' theorem for codatatypes
desharna
parents: 57301
diff changeset
   677
58f02fbaa764 generate 'rel_coinduct' theorem for codatatypes
desharna
parents: 57301
diff changeset
   678
    val common_coinduct_consumes_attr = Attrib.internal (K (Rule_Cases.consumes nn));
58f02fbaa764 generate 'rel_coinduct' theorem for codatatypes
desharna
parents: 57301
diff changeset
   679
    val coinduct_consumes_attr = Attrib.internal (K (Rule_Cases.consumes 1));
58f02fbaa764 generate 'rel_coinduct' theorem for codatatypes
desharna
parents: 57301
diff changeset
   680
58f02fbaa764 generate 'rel_coinduct' theorem for codatatypes
desharna
parents: 57301
diff changeset
   681
    val coinduct_case_names_attr = Attrib.internal (K (Rule_Cases.case_names coinduct_cases));
58f02fbaa764 generate 'rel_coinduct' theorem for codatatypes
desharna
parents: 57301
diff changeset
   682
    val coinduct_case_concl_attrs =
58f02fbaa764 generate 'rel_coinduct' theorem for codatatypes
desharna
parents: 57301
diff changeset
   683
      map2 (fn casex => fn concls =>
58f02fbaa764 generate 'rel_coinduct' theorem for codatatypes
desharna
parents: 57301
diff changeset
   684
          Attrib.internal (K (Rule_Cases.case_conclusion (casex, concls))))
58f02fbaa764 generate 'rel_coinduct' theorem for codatatypes
desharna
parents: 57301
diff changeset
   685
        coinduct_cases coinduct_conclss;
58f02fbaa764 generate 'rel_coinduct' theorem for codatatypes
desharna
parents: 57301
diff changeset
   686
58f02fbaa764 generate 'rel_coinduct' theorem for codatatypes
desharna
parents: 57301
diff changeset
   687
    val common_coinduct_attrs =
58f02fbaa764 generate 'rel_coinduct' theorem for codatatypes
desharna
parents: 57301
diff changeset
   688
      common_coinduct_consumes_attr :: coinduct_case_names_attr :: coinduct_case_concl_attrs;
58f02fbaa764 generate 'rel_coinduct' theorem for codatatypes
desharna
parents: 57301
diff changeset
   689
    val coinduct_attrs =
58f02fbaa764 generate 'rel_coinduct' theorem for codatatypes
desharna
parents: 57301
diff changeset
   690
      coinduct_consumes_attr :: coinduct_case_names_attr :: coinduct_case_concl_attrs;
58f02fbaa764 generate 'rel_coinduct' theorem for codatatypes
desharna
parents: 57301
diff changeset
   691
  in
58f02fbaa764 generate 'rel_coinduct' theorem for codatatypes
desharna
parents: 57301
diff changeset
   692
    (coinduct_attrs, common_coinduct_attrs)
58f02fbaa764 generate 'rel_coinduct' theorem for codatatypes
desharna
parents: 57301
diff changeset
   693
  end;
58f02fbaa764 generate 'rel_coinduct' theorem for codatatypes
desharna
parents: 57301
diff changeset
   694
57535
9b99b773acd4 made SML/NJ happier
blanchet
parents: 57525
diff changeset
   695
fun derive_rel_coinduct_thm_for_types lthy fpA_Ts ns As Bs mss (ctr_sugars : ctr_sugar list)
9b99b773acd4 made SML/NJ happier
blanchet
parents: 57525
diff changeset
   696
    abs_inverses abs_injects ctor_injects dtor_ctors rel_pre_defs ctor_defss dtor_rel_coinduct
9b99b773acd4 made SML/NJ happier
blanchet
parents: 57525
diff changeset
   697
    live_nesting_rel_eqs =
57301
7b997028aaac generate 'rel_coinduct0' theorem for codatatypes
desharna
parents: 57279
diff changeset
   698
  let
57302
58f02fbaa764 generate 'rel_coinduct' theorem for codatatypes
desharna
parents: 57301
diff changeset
   699
    val fpB_Ts = map (typ_subst_nonatomic (As ~~ Bs)) fpA_Ts;
57301
7b997028aaac generate 'rel_coinduct0' theorem for codatatypes
desharna
parents: 57279
diff changeset
   700
7b997028aaac generate 'rel_coinduct0' theorem for codatatypes
desharna
parents: 57279
diff changeset
   701
    val (Rs, IRs, fpAs, fpBs, names_lthy) =
7b997028aaac generate 'rel_coinduct0' theorem for codatatypes
desharna
parents: 57279
diff changeset
   702
      let
7b997028aaac generate 'rel_coinduct0' theorem for codatatypes
desharna
parents: 57279
diff changeset
   703
        val fp_names = map base_name_of_typ fpA_Ts;
7b997028aaac generate 'rel_coinduct0' theorem for codatatypes
desharna
parents: 57279
diff changeset
   704
        val ((((Rs, IRs), fpAs_names), fpBs_names), names_lthy) = lthy
7b997028aaac generate 'rel_coinduct0' theorem for codatatypes
desharna
parents: 57279
diff changeset
   705
          |> mk_Frees "R" (map2 mk_pred2T As Bs)
7b997028aaac generate 'rel_coinduct0' theorem for codatatypes
desharna
parents: 57279
diff changeset
   706
          ||>> mk_Frees "IR" (map2 mk_pred2T fpA_Ts fpB_Ts)
7b997028aaac generate 'rel_coinduct0' theorem for codatatypes
desharna
parents: 57279
diff changeset
   707
          ||>> Variable.variant_fixes fp_names
7b997028aaac generate 'rel_coinduct0' theorem for codatatypes
desharna
parents: 57279
diff changeset
   708
          ||>> Variable.variant_fixes (map (suffix "'") fp_names);
7b997028aaac generate 'rel_coinduct0' theorem for codatatypes
desharna
parents: 57279
diff changeset
   709
      in
7b997028aaac generate 'rel_coinduct0' theorem for codatatypes
desharna
parents: 57279
diff changeset
   710
        (Rs, IRs,
7b997028aaac generate 'rel_coinduct0' theorem for codatatypes
desharna
parents: 57279
diff changeset
   711
          map2 (curry Free) fpAs_names fpA_Ts,
57302
58f02fbaa764 generate 'rel_coinduct' theorem for codatatypes
desharna
parents: 57301
diff changeset
   712
          map2 (curry Free) fpBs_names fpB_Ts,
58f02fbaa764 generate 'rel_coinduct' theorem for codatatypes
desharna
parents: 57301
diff changeset
   713
          names_lthy)
57301
7b997028aaac generate 'rel_coinduct0' theorem for codatatypes
desharna
parents: 57279
diff changeset
   714
      end;
7b997028aaac generate 'rel_coinduct0' theorem for codatatypes
desharna
parents: 57279
diff changeset
   715
7b997028aaac generate 'rel_coinduct0' theorem for codatatypes
desharna
parents: 57279
diff changeset
   716
    val ((discA_tss, selA_tsss), (discB_tss, selB_tsss)) =
7b997028aaac generate 'rel_coinduct0' theorem for codatatypes
desharna
parents: 57279
diff changeset
   717
      let
7b997028aaac generate 'rel_coinduct0' theorem for codatatypes
desharna
parents: 57279
diff changeset
   718
        val discss = map #discs ctr_sugars;
7b997028aaac generate 'rel_coinduct0' theorem for codatatypes
desharna
parents: 57279
diff changeset
   719
        val selsss = map #selss ctr_sugars;
7b997028aaac generate 'rel_coinduct0' theorem for codatatypes
desharna
parents: 57279
diff changeset
   720
        fun mk_discss ts Ts = map2 (map o rapp) ts (map (map (mk_disc_or_sel Ts)) discss);
7b997028aaac generate 'rel_coinduct0' theorem for codatatypes
desharna
parents: 57279
diff changeset
   721
        fun mk_selsss ts Ts = map2 (map o map o rapp) ts (map (map (map (mk_disc_or_sel Ts)))
7b997028aaac generate 'rel_coinduct0' theorem for codatatypes
desharna
parents: 57279
diff changeset
   722
          selsss);
7b997028aaac generate 'rel_coinduct0' theorem for codatatypes
desharna
parents: 57279
diff changeset
   723
      in
57302
58f02fbaa764 generate 'rel_coinduct' theorem for codatatypes
desharna
parents: 57301
diff changeset
   724
        ((mk_discss fpAs As, mk_selsss fpAs As),
58f02fbaa764 generate 'rel_coinduct' theorem for codatatypes
desharna
parents: 57301
diff changeset
   725
         (mk_discss fpBs Bs, mk_selsss fpBs Bs))
57301
7b997028aaac generate 'rel_coinduct0' theorem for codatatypes
desharna
parents: 57279
diff changeset
   726
      end;
7b997028aaac generate 'rel_coinduct0' theorem for codatatypes
desharna
parents: 57279
diff changeset
   727
7b997028aaac generate 'rel_coinduct0' theorem for codatatypes
desharna
parents: 57279
diff changeset
   728
    val premises =
7b997028aaac generate 'rel_coinduct0' theorem for codatatypes
desharna
parents: 57279
diff changeset
   729
      let
7b997028aaac generate 'rel_coinduct0' theorem for codatatypes
desharna
parents: 57279
diff changeset
   730
        fun mk_prem_ctr_concls n k discA_t selA_ts discB_t selB_ts =
7b997028aaac generate 'rel_coinduct0' theorem for codatatypes
desharna
parents: 57279
diff changeset
   731
          (if k = n then [] else [HOLogic.mk_eq (discA_t, discB_t)]) @
7b997028aaac generate 'rel_coinduct0' theorem for codatatypes
desharna
parents: 57279
diff changeset
   732
          (case (selA_ts, selB_ts) of
57303
498a62e65f5f tune the implementation of 'rel_coinduct'
desharna
parents: 57302
diff changeset
   733
            ([], []) => []
57301
7b997028aaac generate 'rel_coinduct0' theorem for codatatypes
desharna
parents: 57279
diff changeset
   734
          | (_ :: _, _ :: _) =>
57565
ab7f39114507 refactor commonly used functions
desharna
parents: 57563
diff changeset
   735
            [Library.foldr HOLogic.mk_imp
ab7f39114507 refactor commonly used functions
desharna
parents: 57563
diff changeset
   736
              (if n = 1 then [] else [discA_t, discB_t],
ab7f39114507 refactor commonly used functions
desharna
parents: 57563
diff changeset
   737
               Library.foldr1 HOLogic.mk_conj
ab7f39114507 refactor commonly used functions
desharna
parents: 57563
diff changeset
   738
                 (map2 (build_rel_app lthy (Rs @ IRs) fpA_Ts) selA_ts selB_ts))]);
57301
7b997028aaac generate 'rel_coinduct0' theorem for codatatypes
desharna
parents: 57279
diff changeset
   739
7b997028aaac generate 'rel_coinduct0' theorem for codatatypes
desharna
parents: 57279
diff changeset
   740
        fun mk_prem_concl n discA_ts selA_tss discB_ts selB_tss =
7b997028aaac generate 'rel_coinduct0' theorem for codatatypes
desharna
parents: 57279
diff changeset
   741
          Library.foldr1 HOLogic.mk_conj (flat (map5 (mk_prem_ctr_concls n)
7b997028aaac generate 'rel_coinduct0' theorem for codatatypes
desharna
parents: 57279
diff changeset
   742
            (1 upto n) discA_ts selA_tss discB_ts selB_tss))
7b997028aaac generate 'rel_coinduct0' theorem for codatatypes
desharna
parents: 57279
diff changeset
   743
          handle List.Empty => @{term True};
7b997028aaac generate 'rel_coinduct0' theorem for codatatypes
desharna
parents: 57279
diff changeset
   744
7b997028aaac generate 'rel_coinduct0' theorem for codatatypes
desharna
parents: 57279
diff changeset
   745
        fun mk_prem IR tA tB n discA_ts selA_tss discB_ts selB_tss =
7b997028aaac generate 'rel_coinduct0' theorem for codatatypes
desharna
parents: 57279
diff changeset
   746
          fold_rev Logic.all [tA, tB] (Logic.mk_implies (HOLogic.mk_Trueprop (IR $ tA $ tB),
7b997028aaac generate 'rel_coinduct0' theorem for codatatypes
desharna
parents: 57279
diff changeset
   747
            HOLogic.mk_Trueprop (mk_prem_concl n discA_ts selA_tss discB_ts selB_tss)));
7b997028aaac generate 'rel_coinduct0' theorem for codatatypes
desharna
parents: 57279
diff changeset
   748
      in
7b997028aaac generate 'rel_coinduct0' theorem for codatatypes
desharna
parents: 57279
diff changeset
   749
        map8 mk_prem IRs fpAs fpBs ns discA_tss selA_tsss discB_tss selB_tsss
7b997028aaac generate 'rel_coinduct0' theorem for codatatypes
desharna
parents: 57279
diff changeset
   750
      end;
7b997028aaac generate 'rel_coinduct0' theorem for codatatypes
desharna
parents: 57279
diff changeset
   751
57525
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
   752
    val goal = HOLogic.mk_Trueprop (Library.foldr1 HOLogic.mk_conj (map2 mk_leq
57565
ab7f39114507 refactor commonly used functions
desharna
parents: 57563
diff changeset
   753
      IRs (map2 (build_the_rel lthy (Rs @ IRs) []) fpA_Ts fpB_Ts)));
57302
58f02fbaa764 generate 'rel_coinduct' theorem for codatatypes
desharna
parents: 57301
diff changeset
   754
58f02fbaa764 generate 'rel_coinduct' theorem for codatatypes
desharna
parents: 57301
diff changeset
   755
    val rel_coinduct0_thm = Goal.prove_sorry lthy [] premises goal
57301
7b997028aaac generate 'rel_coinduct0' theorem for codatatypes
desharna
parents: 57279
diff changeset
   756
      (fn {context = ctxt, prems = prems} =>
7b997028aaac generate 'rel_coinduct0' theorem for codatatypes
desharna
parents: 57279
diff changeset
   757
          mk_rel_coinduct0_tac ctxt dtor_rel_coinduct (map (certify ctxt) IRs) prems
57303
498a62e65f5f tune the implementation of 'rel_coinduct'
desharna
parents: 57302
diff changeset
   758
            (map #exhaust ctr_sugars) (map (flat o #disc_thmss) ctr_sugars)
498a62e65f5f tune the implementation of 'rel_coinduct'
desharna
parents: 57302
diff changeset
   759
            (map (flat o #sel_thmss) ctr_sugars) ctor_defss dtor_ctors ctor_injects abs_injects
57471
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
   760
            rel_pre_defs abs_inverses live_nesting_rel_eqs)
57301
7b997028aaac generate 'rel_coinduct0' theorem for codatatypes
desharna
parents: 57279
diff changeset
   761
      |> singleton (Proof_Context.export names_lthy lthy)
57302
58f02fbaa764 generate 'rel_coinduct' theorem for codatatypes
desharna
parents: 57301
diff changeset
   762
      |> Thm.close_derivation;
58f02fbaa764 generate 'rel_coinduct' theorem for codatatypes
desharna
parents: 57301
diff changeset
   763
  in
57471
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
   764
    (postproc_co_induct lthy (length fpA_Ts) @{thm predicate2D} @{thm predicate2D_conj}
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
   765
       rel_coinduct0_thm,
57535
9b99b773acd4 made SML/NJ happier
blanchet
parents: 57525
diff changeset
   766
     mk_coinduct_attributes fpA_Ts (map #ctrs ctr_sugars) (map #discs ctr_sugars) mss)
57301
7b997028aaac generate 'rel_coinduct0' theorem for codatatypes
desharna
parents: 57279
diff changeset
   767
  end;
7b997028aaac generate 'rel_coinduct0' theorem for codatatypes
desharna
parents: 57279
diff changeset
   768
57700
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   769
fun derive_set_induct_thms_for_types lthy nn fpTs ctrss setss dtor_set_inducts exhausts
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   770
    set_pre_defs ctor_defs dtor_ctors Abs_pre_inverses =
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   771
  let
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   772
    fun mk_prems A Ps ctr_args t ctxt =
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   773
      (case fastype_of t of
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   774
        Type (type_name, xs) =>
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   775
        (case bnf_of ctxt type_name of
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   776
          NONE => ([], ctxt)
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   777
        | SOME bnf =>
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   778
          let
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   779
            fun seq_assm a set ctxt =
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   780
              let
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   781
                val X = HOLogic.dest_setT (range_type (fastype_of set));
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   782
                val (x, ctxt') = yield_singleton (mk_Frees "x") X ctxt;
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   783
                val assm = mk_Trueprop_mem (x, set $ a);
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   784
              in
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   785
                (case build_binary_fun_app Ps x a of
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   786
                  NONE =>
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   787
                  mk_prems A Ps ctr_args x ctxt'
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   788
                  |>> map (Logic.all x o Logic.mk_implies o pair assm)
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   789
                | SOME f =>
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   790
                  ([Logic.all x
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   791
                      (Logic.mk_implies (assm,
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   792
                         Logic.mk_implies (HOLogic.mk_Trueprop f,
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   793
                           HOLogic.mk_Trueprop (the (build_binary_fun_app Ps x ctr_args)))))],
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   794
                   ctxt'))
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   795
              end;
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   796
          in
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   797
            fold_map (seq_assm t o mk_set xs) (sets_of_bnf bnf) ctxt
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   798
            |>> flat
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   799
          end)
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   800
      | T =>
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   801
        if T = A then ([HOLogic.mk_Trueprop (the (build_binary_fun_app Ps t ctr_args))], ctxt)
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   802
        else ([], ctxt));
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   803
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   804
    fun mk_prems_for_ctr A Ps ctr ctxt =
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   805
      let
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   806
        val (args, ctxt') = mk_Frees "arg" (binder_types (fastype_of ctr)) ctxt;
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   807
      in
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   808
        fold_map (mk_prems A Ps (list_comb (ctr, args))) args ctxt'
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   809
        |>> map (fold_rev Logic.all args) o flat
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   810
        |>> (fn prems => (prems, mk_names (length prems) (name_of_ctr ctr)))
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   811
      end;
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   812
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   813
    fun mk_prems_and_concl_for_type A Ps ((fpT, ctrs), set) ctxt =
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   814
      let
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   815
        val ((x, fp), ctxt') = ctxt
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   816
          |> yield_singleton (mk_Frees "x") A
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   817
          ||>> yield_singleton (mk_Frees "a") fpT;
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   818
        val concl = mk_Ball (set $ fp) (Term.absfree (dest_Free x)
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   819
          (the (build_binary_fun_app Ps x fp)));
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   820
      in
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   821
        fold_map (mk_prems_for_ctr A Ps) ctrs ctxt'
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   822
        |>> split_list
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   823
        |>> map_prod flat flat
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   824
        |>> apfst (rpair concl)
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   825
      end;
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   826
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   827
    fun mk_thm ctxt fpTs ctrss sets =
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   828
      let
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   829
        val A = HOLogic.dest_setT (range_type (fastype_of (hd sets)));
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   830
        val (Ps, ctxt') = mk_Frees "P" (map (fn fpT => A --> fpT --> HOLogic.boolT) fpTs) ctxt;
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   831
        val (((premises, conclusion), case_names), ctxt'') =
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   832
          (fold_map (mk_prems_and_concl_for_type A Ps) (fpTs ~~ ctrss ~~ sets) ctxt')
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   833
          |>> apfst split_list o split_list
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   834
          |>> apfst (apfst flat)
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   835
          |>> apfst (apsnd (Library.foldr1 HOLogic.mk_conj))
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   836
          |>> apsnd flat;
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   837
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   838
        val thm =  Goal.prove_sorry lthy [] premises (HOLogic.mk_Trueprop conclusion)
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   839
          (fn {context = ctxt, prems = prems} =>
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   840
             mk_set_induct0_tac ctxt (map (certify ctxt'') Ps) prems dtor_set_inducts exhausts
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   841
              set_pre_defs ctor_defs dtor_ctors Abs_pre_inverses)
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   842
          |> singleton (Proof_Context.export ctxt'' ctxt)
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   843
          |> Thm.close_derivation;
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   844
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   845
        val case_names_attr =
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   846
          Attrib.internal (K (Rule_Cases.case_names (quasi_unambiguous_case_names case_names)));
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   847
        val induct_set_attrs = map (Attrib.internal o K o Induct.induct_pred o name_of_set) sets;
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   848
      in
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   849
        (thm, case_names_attr :: induct_set_attrs)
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   850
      end
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   851
    val consumes_attr = Attrib.internal (K (Rule_Cases.consumes 1));
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   852
  in
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   853
    map (fn Asets =>
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   854
      let
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   855
        fun massage_thm thm = rotate_prems (~1) (thm RS bspec);
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   856
      in
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   857
        mk_thm lthy fpTs ctrss Asets |> nn = 1 ? map_prod massage_thm (cons consumes_attr)
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   858
      end) (transpose setss)
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   859
  end;
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
   860
55871
a28817253b31 removed (co)iterators from documentation
blanchet
parents: 55869
diff changeset
   861
fun derive_coinduct_corecs_thms_for_types pre_bnfs (x, cs, cpss, ((pgss, cqgsss), _))
57397
5004aca20821 tuned variable names
blanchet
parents: 57303
diff changeset
   862
    dtor_coinduct dtor_injects dtor_ctors dtor_corec_thms live_nesting_bnfs fpTs Cs Xs ctrXs_Tsss
5004aca20821 tuned variable names
blanchet
parents: 57303
diff changeset
   863
    kss mss ns fp_abs_inverses abs_inverses mk_vimage2p ctr_defss (ctr_sugars : ctr_sugar list)
55864
516ab2906e7e rationalized internals
blanchet
parents: 55863
diff changeset
   864
    corecs corec_defs export_args lthy =
51810
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
   865
  let
55867
79b915f26533 rationalized internals
blanchet
parents: 55865
diff changeset
   866
    fun mk_ctor_dtor_corec_thm dtor_inject dtor_ctor corec =
79b915f26533 rationalized internals
blanchet
parents: 55865
diff changeset
   867
      iffD1 OF [dtor_inject, trans OF [corec, dtor_ctor RS sym]];
53203
222ea6acbdd6 moved derivation of ctor_dtor_unfold to sugar (streamlines fp_result interface)
traytel
parents: 53143
diff changeset
   868
55867
79b915f26533 rationalized internals
blanchet
parents: 55865
diff changeset
   869
    val ctor_dtor_corec_thms = map3 mk_ctor_dtor_corec_thm dtor_injects dtor_ctors dtor_corec_thms;
53203
222ea6acbdd6 moved derivation of ctor_dtor_unfold to sugar (streamlines fp_result interface)
traytel
parents: 53143
diff changeset
   870
51815
efacb9b99865 tune signatures
blanchet
parents: 51814
diff changeset
   871
    val nn = length pre_bnfs;
efacb9b99865 tune signatures
blanchet
parents: 51814
diff changeset
   872
51810
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
   873
    val pre_map_defs = map map_def_of_bnf pre_bnfs;
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
   874
    val pre_rel_defs = map rel_def_of_bnf pre_bnfs;
57399
cfc19f0a6261 compile
blanchet
parents: 57397
diff changeset
   875
    val live_nesting_map_ident0s = map map_ident0_of_bnf live_nesting_bnfs;
57397
5004aca20821 tuned variable names
blanchet
parents: 57303
diff changeset
   876
    val live_nesting_rel_eqs = map rel_eq_of_bnf live_nesting_bnfs;
51810
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
   877
51816
5f1dec4297da use base names, not full names
blanchet
parents: 51815
diff changeset
   878
    val fp_b_names = map base_name_of_typ fpTs;
51811
1461426e2bf1 tuned function signatures
blanchet
parents: 51810
diff changeset
   879
53210
7219c61796c0 simplify code (now that ctr_sugar uses the same type variables as fp_sugar)
blanchet
parents: 53203
diff changeset
   880
    val ctrss = map #ctrs ctr_sugars;
7219c61796c0 simplify code (now that ctr_sugar uses the same type variables as fp_sugar)
blanchet
parents: 53203
diff changeset
   881
    val discss = map #discs ctr_sugars;
7219c61796c0 simplify code (now that ctr_sugar uses the same type variables as fp_sugar)
blanchet
parents: 53203
diff changeset
   882
    val selsss = map #selss ctr_sugars;
51840
b304fb6c5ef5 renamed records
blanchet
parents: 51839
diff changeset
   883
    val exhausts = map #exhaust ctr_sugars;
b304fb6c5ef5 renamed records
blanchet
parents: 51839
diff changeset
   884
    val disc_thmsss = map #disc_thmss ctr_sugars;
b304fb6c5ef5 renamed records
blanchet
parents: 51839
diff changeset
   885
    val discIss = map #discIs ctr_sugars;
b304fb6c5ef5 renamed records
blanchet
parents: 51839
diff changeset
   886
    val sel_thmsss = map #sel_thmss ctr_sugars;
51810
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
   887
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
   888
    val (((rs, us'), vs'), names_lthy) =
52341
blanchet
parents: 52340
diff changeset
   889
      lthy
51810
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
   890
      |> mk_Frees "R" (map (fn T => mk_pred2T T T) fpTs)
51816
5f1dec4297da use base names, not full names
blanchet
parents: 51815
diff changeset
   891
      ||>> Variable.variant_fixes fp_b_names
5f1dec4297da use base names, not full names
blanchet
parents: 51815
diff changeset
   892
      ||>> Variable.variant_fixes (map (suffix "'") fp_b_names);
51810
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
   893
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
   894
    val us = map2 (curry Free) us' fpTs;
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
   895
    val udiscss = map2 (map o rapp) us discss;
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
   896
    val uselsss = map2 (map o map o rapp) us selsss;
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
   897
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
   898
    val vs = map2 (curry Free) vs' fpTs;
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
   899
    val vdiscss = map2 (map o rapp) vs discss;
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
   900
    val vselsss = map2 (map o map o rapp) vs selsss;
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
   901
52345
blanchet
parents: 52344
diff changeset
   902
    val coinduct_thms_pairs =
51810
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
   903
      let
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
   904
        val uvrs = map3 (fn r => fn u => fn v => r $ u $ v) rs us vs;
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
   905
        val uv_eqs = map2 (curry HOLogic.mk_eq) us vs;
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
   906
        val strong_rs =
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
   907
          map4 (fn u => fn v => fn uvr => fn uv_eq =>
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
   908
            fold_rev Term.lambda [u, v] (HOLogic.mk_disj (uvr, uv_eq))) us vs uvrs uv_eqs;
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
   909
54237
7cc6e286fe28 made sugared 'coinduct' theorem construction n2m-proof
blanchet
parents: 54236
diff changeset
   910
        fun build_the_rel rs' T Xs_T =
57303
498a62e65f5f tune the implementation of 'rel_coinduct'
desharna
parents: 57302
diff changeset
   911
          build_rel lthy [] (fn (_, X) => nth rs' (find_index (curry (op =) X) Xs)) (T, Xs_T)
54237
7cc6e286fe28 made sugared 'coinduct' theorem construction n2m-proof
blanchet
parents: 54236
diff changeset
   912
          |> Term.subst_atomic_types (Xs ~~ fpTs);
51810
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
   913
54237
7cc6e286fe28 made sugared 'coinduct' theorem construction n2m-proof
blanchet
parents: 54236
diff changeset
   914
        fun build_rel_app rs' usel vsel Xs_T =
7cc6e286fe28 made sugared 'coinduct' theorem construction n2m-proof
blanchet
parents: 54236
diff changeset
   915
          fold rapp [usel, vsel] (build_the_rel rs' (fastype_of usel) Xs_T);
51810
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
   916
54237
7cc6e286fe28 made sugared 'coinduct' theorem construction n2m-proof
blanchet
parents: 54236
diff changeset
   917
        fun mk_prem_ctr_concls rs' n k udisc usels vdisc vsels ctrXs_Ts =
51810
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
   918
          (if k = n then [] else [HOLogic.mk_eq (udisc, vdisc)]) @
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
   919
          (if null usels then
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
   920
             []
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
   921
           else
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
   922
             [Library.foldr HOLogic.mk_imp (if n = 1 then [] else [udisc, vdisc],
54237
7cc6e286fe28 made sugared 'coinduct' theorem construction n2m-proof
blanchet
parents: 54236
diff changeset
   923
                Library.foldr1 HOLogic.mk_conj (map3 (build_rel_app rs') usels vsels ctrXs_Ts))]);
51810
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
   924
54237
7cc6e286fe28 made sugared 'coinduct' theorem construction n2m-proof
blanchet
parents: 54236
diff changeset
   925
        fun mk_prem_concl rs' n udiscs uselss vdiscs vselss ctrXs_Tss =
7cc6e286fe28 made sugared 'coinduct' theorem construction n2m-proof
blanchet
parents: 54236
diff changeset
   926
          Library.foldr1 HOLogic.mk_conj (flat (map6 (mk_prem_ctr_concls rs' n)
7cc6e286fe28 made sugared 'coinduct' theorem construction n2m-proof
blanchet
parents: 54236
diff changeset
   927
            (1 upto n) udiscs uselss vdiscs vselss ctrXs_Tss))
51810
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
   928
          handle List.Empty => @{term True};
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
   929
54237
7cc6e286fe28 made sugared 'coinduct' theorem construction n2m-proof
blanchet
parents: 54236
diff changeset
   930
        fun mk_prem rs' uvr u v n udiscs uselss vdiscs vselss ctrXs_Tss =
51810
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
   931
          fold_rev Logic.all [u, v] (Logic.mk_implies (HOLogic.mk_Trueprop uvr,
54237
7cc6e286fe28 made sugared 'coinduct' theorem construction n2m-proof
blanchet
parents: 54236
diff changeset
   932
            HOLogic.mk_Trueprop (mk_prem_concl rs' n udiscs uselss vdiscs vselss ctrXs_Tss)));
51810
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
   933
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
   934
        val concl =
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
   935
          HOLogic.mk_Trueprop (Library.foldr1 HOLogic.mk_conj
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
   936
            (map3 (fn uvr => fn u => fn v => HOLogic.mk_imp (uvr, HOLogic.mk_eq (u, v)))
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
   937
               uvrs us vs));
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
   938
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
   939
        fun mk_goal rs' =
54237
7cc6e286fe28 made sugared 'coinduct' theorem construction n2m-proof
blanchet
parents: 54236
diff changeset
   940
          Logic.list_implies (map9 (mk_prem rs') uvrs us vs ns udiscss uselsss vdiscss vselsss
7cc6e286fe28 made sugared 'coinduct' theorem construction n2m-proof
blanchet
parents: 54236
diff changeset
   941
            ctrXs_Tsss, concl);
51810
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
   942
52345
blanchet
parents: 52344
diff changeset
   943
        val goals = map mk_goal [rs, strong_rs];
51810
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
   944
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
   945
        fun prove dtor_coinduct' goal =
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
   946
          Goal.prove_sorry lthy [] [] goal (fn {context = ctxt, ...} =>
57397
5004aca20821 tuned variable names
blanchet
parents: 57303
diff changeset
   947
            mk_coinduct_tac ctxt live_nesting_rel_eqs nn ns dtor_coinduct' pre_rel_defs
5004aca20821 tuned variable names
blanchet
parents: 57303
diff changeset
   948
              fp_abs_inverses abs_inverses dtor_ctors exhausts ctr_defss disc_thmsss sel_thmsss)
51810
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
   949
          |> singleton (Proof_Context.export names_lthy lthy)
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
   950
          |> Thm.close_derivation;
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
   951
53106
d81211f61a1b moved derivation of strong coinduction to sugar
traytel
parents: 53037
diff changeset
   952
        val rel_eqs = map rel_eq_of_bnf pre_bnfs;
d81211f61a1b moved derivation of strong coinduction to sugar
traytel
parents: 53037
diff changeset
   953
        val rel_monos = map rel_mono_of_bnf pre_bnfs;
d81211f61a1b moved derivation of strong coinduction to sugar
traytel
parents: 53037
diff changeset
   954
        val dtor_coinducts =
55803
74d3fe9031d8 joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents: 55772
diff changeset
   955
          [dtor_coinduct, mk_strong_coinduct_thm dtor_coinduct rel_eqs rel_monos mk_vimage2p lthy]
51810
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
   956
      in
57471
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
   957
        map2 (postproc_co_induct lthy nn mp mp_conj oo prove) dtor_coinducts goals
51810
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
   958
      end;
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
   959
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
   960
    fun mk_maybe_not pos = not pos ? HOLogic.mk_not;
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
   961
55869
54ddb003e128 rationalized internals
blanchet
parents: 55868
diff changeset
   962
    val gcorecs = map (lists_bmoc pgss) corecs;
51810
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
   963
55856
bddaada24074 got rid of automatically generated fold constant and theorems (to reduce overhead)
blanchet
parents: 55803
diff changeset
   964
    val corec_thmss =
51810
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
   965
      let
55869
54ddb003e128 rationalized internals
blanchet
parents: 55868
diff changeset
   966
        fun mk_goal c cps gcorec n k ctr m cfs' =
54ddb003e128 rationalized internals
blanchet
parents: 55868
diff changeset
   967
          fold_rev (fold_rev Logic.all) ([c] :: pgss)
51810
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
   968
            (Logic.list_implies (seq_conds (HOLogic.mk_Trueprop oo mk_maybe_not) n k cps,
55869
54ddb003e128 rationalized internals
blanchet
parents: 55868
diff changeset
   969
               mk_Trueprop_eq (gcorec $ c, Term.list_comb (ctr, take m cfs'))));
51810
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
   970
55869
54ddb003e128 rationalized internals
blanchet
parents: 55868
diff changeset
   971
        val mk_U = typ_subst_nonatomic (map2 (fn C => fn fpT => (mk_sumT (fpT, C), fpT)) Cs fpTs);
52347
ead18e3b2c1b changed back type of corecursor for nested case, effectively reverting aa66ea552357 and 78a3d5006cf1
blanchet
parents: 52346
diff changeset
   972
55869
54ddb003e128 rationalized internals
blanchet
parents: 55868
diff changeset
   973
        fun tack (c, u) f =
54ddb003e128 rationalized internals
blanchet
parents: 55868
diff changeset
   974
          let val x' = Free (x, mk_sumT (fastype_of u, fastype_of c)) in
54ddb003e128 rationalized internals
blanchet
parents: 55868
diff changeset
   975
            Term.lambda x' (mk_case_sum (Term.lambda u u, Term.lambda c (f $ c)) $ x')
52347
ead18e3b2c1b changed back type of corecursor for nested case, effectively reverting aa66ea552357 and 78a3d5006cf1
blanchet
parents: 52346
diff changeset
   976
          end;
51810
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
   977
55869
54ddb003e128 rationalized internals
blanchet
parents: 55868
diff changeset
   978
        fun build_corec cqg =
54ddb003e128 rationalized internals
blanchet
parents: 55868
diff changeset
   979
          let val T = fastype_of cqg in
52347
ead18e3b2c1b changed back type of corecursor for nested case, effectively reverting aa66ea552357 and 78a3d5006cf1
blanchet
parents: 52346
diff changeset
   980
            if exists_subtype_in Cs T then
55869
54ddb003e128 rationalized internals
blanchet
parents: 55868
diff changeset
   981
              let val U = mk_U T in
57303
498a62e65f5f tune the implementation of 'rel_coinduct'
desharna
parents: 57302
diff changeset
   982
                build_map lthy [] (indexify fst (map2 (curry mk_sumT) fpTs Cs) (fn kk => fn _ =>
55869
54ddb003e128 rationalized internals
blanchet
parents: 55868
diff changeset
   983
                  tack (nth cs kk, nth us kk) (nth gcorecs kk))) (T, U) $ cqg
52368
blanchet
parents: 52367
diff changeset
   984
              end
52347
ead18e3b2c1b changed back type of corecursor for nested case, effectively reverting aa66ea552357 and 78a3d5006cf1
blanchet
parents: 52346
diff changeset
   985
            else
55869
54ddb003e128 rationalized internals
blanchet
parents: 55868
diff changeset
   986
              cqg
52347
ead18e3b2c1b changed back type of corecursor for nested case, effectively reverting aa66ea552357 and 78a3d5006cf1
blanchet
parents: 52346
diff changeset
   987
          end;
51810
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
   988
55869
54ddb003e128 rationalized internals
blanchet
parents: 55868
diff changeset
   989
        val cqgsss' = map (map (map build_corec)) cqgsss;
54ddb003e128 rationalized internals
blanchet
parents: 55868
diff changeset
   990
        val goalss = map8 (map4 oooo mk_goal) cs cpss gcorecs ns kss ctrss mss cqgsss';
51810
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
   991
55856
bddaada24074 got rid of automatically generated fold constant and theorems (to reduce overhead)
blanchet
parents: 55803
diff changeset
   992
        val tacss =
57399
cfc19f0a6261 compile
blanchet
parents: 57397
diff changeset
   993
          map4 (map ooo mk_corec_tac corec_defs live_nesting_map_ident0s)
55867
79b915f26533 rationalized internals
blanchet
parents: 55865
diff changeset
   994
            ctor_dtor_corec_thms pre_map_defs abs_inverses ctr_defss;
51810
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
   995
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
   996
        fun prove goal tac =
51815
efacb9b99865 tune signatures
blanchet
parents: 51814
diff changeset
   997
          Goal.prove_sorry lthy [] [] goal (tac o #context)
efacb9b99865 tune signatures
blanchet
parents: 51814
diff changeset
   998
          |> Thm.close_derivation;
51810
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
   999
      in
55856
bddaada24074 got rid of automatically generated fold constant and theorems (to reduce overhead)
blanchet
parents: 55803
diff changeset
  1000
        map2 (map2 prove) goalss tacss
bddaada24074 got rid of automatically generated fold constant and theorems (to reduce overhead)
blanchet
parents: 55803
diff changeset
  1001
        |> map (map (unfold_thms lthy @{thms case_sum_if}))
51810
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
  1002
      end;
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
  1003
55856
bddaada24074 got rid of automatically generated fold constant and theorems (to reduce overhead)
blanchet
parents: 55803
diff changeset
  1004
    val disc_corec_iff_thmss =
51810
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
  1005
      let
55869
54ddb003e128 rationalized internals
blanchet
parents: 55868
diff changeset
  1006
        fun mk_goal c cps gcorec n k disc =
54ddb003e128 rationalized internals
blanchet
parents: 55868
diff changeset
  1007
          mk_Trueprop_eq (disc $ (gcorec $ c),
51810
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
  1008
            if n = 1 then @{const True}
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
  1009
            else Library.foldr1 HOLogic.mk_conj (seq_conds mk_maybe_not n k cps));
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
  1010
55869
54ddb003e128 rationalized internals
blanchet
parents: 55868
diff changeset
  1011
        val goalss = map6 (map2 oooo mk_goal) cs cpss gcorecs ns kss discss;
51810
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
  1012
51828
67c6d6136915 whitespace tuning
blanchet
parents: 51827
diff changeset
  1013
        fun mk_case_split' cp = Drule.instantiate' [] [SOME (certify lthy cp)] @{thm case_split};
51810
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
  1014
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
  1015
        val case_splitss' = map (map mk_case_split') cpss;
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
  1016
55867
79b915f26533 rationalized internals
blanchet
parents: 55865
diff changeset
  1017
        val tacss = map3 (map oo mk_disc_corec_iff_tac) case_splitss' corec_thmss disc_thmsss;
51810
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
  1018
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
  1019
        fun prove goal tac =
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
  1020
          Goal.prove_sorry lthy [] [] goal (tac o #context)
52357
a5d3730043c2 use right context when exporting variables (cf. AFP Coinductive_List failures)
blanchet
parents: 52356
diff changeset
  1021
          |> singleton export_args
51829
3cc93eeac8cc signature tuning
blanchet
parents: 51828
diff changeset
  1022
          |> singleton (Proof_Context.export names_lthy lthy)
51810
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
  1023
          |> Thm.close_derivation;
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
  1024
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
  1025
        fun proves [_] [_] = []
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
  1026
          | proves goals tacs = map2 prove goals tacs;
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
  1027
      in
55856
bddaada24074 got rid of automatically generated fold constant and theorems (to reduce overhead)
blanchet
parents: 55803
diff changeset
  1028
        map2 proves goalss tacss
51810
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
  1029
      end;
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
  1030
55867
79b915f26533 rationalized internals
blanchet
parents: 55865
diff changeset
  1031
    fun mk_disc_corec_thms corecs discIs = map (op RS) (corecs ~~ discIs);
51810
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
  1032
55867
79b915f26533 rationalized internals
blanchet
parents: 55865
diff changeset
  1033
    val disc_corec_thmss = map2 mk_disc_corec_thms corec_thmss discIss;
51810
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
  1034
55867
79b915f26533 rationalized internals
blanchet
parents: 55865
diff changeset
  1035
    fun mk_sel_corec_thm corec_thm sel sel_thm =
51810
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
  1036
      let
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
  1037
        val (domT, ranT) = dest_funT (fastype_of sel);
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
  1038
        val arg_cong' =
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
  1039
          Drule.instantiate' (map (SOME o certifyT lthy) [domT, ranT])
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
  1040
            [NONE, NONE, SOME (certify lthy sel)] arg_cong
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
  1041
          |> Thm.varifyT_global;
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
  1042
        val sel_thm' = sel_thm RSN (2, trans);
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
  1043
      in
55867
79b915f26533 rationalized internals
blanchet
parents: 55865
diff changeset
  1044
        corec_thm RS arg_cong' RS sel_thm'
51810
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
  1045
      end;
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
  1046
55867
79b915f26533 rationalized internals
blanchet
parents: 55865
diff changeset
  1047
    fun mk_sel_corec_thms corec_thmss =
79b915f26533 rationalized internals
blanchet
parents: 55865
diff changeset
  1048
      map3 (map3 (map2 o mk_sel_corec_thm)) corec_thmss selsss sel_thmsss;
51810
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
  1049
55867
79b915f26533 rationalized internals
blanchet
parents: 55865
diff changeset
  1050
    val sel_corec_thmsss = mk_sel_corec_thms corec_thmss;
51810
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
  1051
  in
57535
9b99b773acd4 made SML/NJ happier
blanchet
parents: 57525
diff changeset
  1052
    ((coinduct_thms_pairs,
9b99b773acd4 made SML/NJ happier
blanchet
parents: 57525
diff changeset
  1053
      mk_coinduct_attributes fpTs (map #ctrs ctr_sugars) (map #discs ctr_sugars) mss),
57489
8f0ba9f2d10f generate 'corec_code' theorem for codatatypes
desharna
parents: 57471
diff changeset
  1054
     corec_thmss,
8f0ba9f2d10f generate 'corec_code' theorem for codatatypes
desharna
parents: 57471
diff changeset
  1055
     disc_corec_thmss,
55856
bddaada24074 got rid of automatically generated fold constant and theorems (to reduce overhead)
blanchet
parents: 55803
diff changeset
  1056
     (disc_corec_iff_thmss, simp_attrs),
bddaada24074 got rid of automatically generated fold constant and theorems (to reduce overhead)
blanchet
parents: 55803
diff changeset
  1057
     (sel_corec_thmsss, simp_attrs))
51810
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
  1058
  end;
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
  1059
52207
21026c312cc3 tuning -- avoided unreadable true/false all over the place for LFP/GFP
blanchet
parents: 52197
diff changeset
  1060
fun define_co_datatypes prepare_constraint prepare_typ prepare_term fp construct_fp
57094
589ec121ce1a don't generate discriminators and selectors for 'datatype_new' unless the user asked for it
blanchet
parents: 57091
diff changeset
  1061
    ((discs_sels0, no_code), specs) no_defs_lthy0 =
49112
4de4635d8f93 started work on sugared "(co)data" commands
blanchet
parents:
diff changeset
  1062
  let
49298
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
  1063
    (* TODO: sanity checks on arguments *)
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
  1064
57094
589ec121ce1a don't generate discriminators and selectors for 'datatype_new' unless the user asked for it
blanchet
parents: 57091
diff changeset
  1065
    val discs_sels = discs_sels0 orelse fp = Greatest_FP;
49278
718e4ad1517e added no_dests option
blanchet
parents: 49277
diff changeset
  1066
49367
blanchet
parents: 49366
diff changeset
  1067
    val nn = length specs;
55469
b19dd108f0c2 aligned the syntax for 'free_constructors' on the 'datatype_new' and 'codatatype' syntax
blanchet
parents: 55468
diff changeset
  1068
    val fp_bs = map type_binding_of_spec specs;
49498
acc583e14167 tuned variable names
blanchet
parents: 49484
diff changeset
  1069
    val fp_b_names = map Binding.name_of fp_bs;
acc583e14167 tuned variable names
blanchet
parents: 49484
diff changeset
  1070
    val fp_common_name = mk_common_name fp_b_names;
55469
b19dd108f0c2 aligned the syntax for 'free_constructors' on the 'datatype_new' and 'codatatype' syntax
blanchet
parents: 55468
diff changeset
  1071
    val map_bs = map map_binding_of_spec specs;
b19dd108f0c2 aligned the syntax for 'free_constructors' on the 'datatype_new' and 'codatatype' syntax
blanchet
parents: 55468
diff changeset
  1072
    val rel_bs = map rel_binding_of_spec specs;
49298
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
  1073
51758
55963309557b honor user-specified name for map function
blanchet
parents: 51757
diff changeset
  1074
    fun prepare_type_arg (_, (ty, c)) =
49298
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
  1075
      let val TFree (s, _) = prepare_typ no_defs_lthy0 ty in
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
  1076
        TFree (s, prepare_constraint no_defs_lthy0 c)
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
  1077
      end;
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
  1078
55469
b19dd108f0c2 aligned the syntax for 'free_constructors' on the 'datatype_new' and 'codatatype' syntax
blanchet
parents: 55468
diff changeset
  1079
    val Ass0 = map (map prepare_type_arg o type_args_named_constrained_of_spec) specs;
56254
a2dd9200854d more antiquotations;
wenzelm
parents: 56049
diff changeset
  1080
    val unsorted_Ass0 = map (map (resort_tfree @{sort type})) Ass0;
55700
cf6a029b28d8 more precise error message
blanchet
parents: 55699
diff changeset
  1081
    val unsorted_As = Library.foldr1 (merge_type_args fp) unsorted_Ass0;
53266
89f7f1cc9ae3 cleaner handling of bootstrapping "fake" context, with fewer (no?) obscure bugs
blanchet
parents: 53264
diff changeset
  1082
    val num_As = length unsorted_As;
55699
1f9cc432ecd4 reuse same parser for '(co)datatype(_new)' as for 'bnf_decl'
blanchet
parents: 55575
diff changeset
  1083
1f9cc432ecd4 reuse same parser for '(co)datatype(_new)' as for 'bnf_decl'
blanchet
parents: 55575
diff changeset
  1084
    val set_boss = map (map fst o type_args_named_constrained_of_spec) specs;
1f9cc432ecd4 reuse same parser for '(co)datatype(_new)' as for 'bnf_decl'
blanchet
parents: 55575
diff changeset
  1085
    val set_bss = map (map (the_default Binding.empty)) set_boss;
49119
1f605c36869c more work on FP sugar
blanchet
parents: 49112
diff changeset
  1086
49585
5c4a12550491 generate high-level "maps", "sets", and "rels" properties
blanchet
parents: 49583
diff changeset
  1087
    val (((Bs0, Cs), Xs), no_defs_lthy) =
49298
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
  1088
      no_defs_lthy0
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
  1089
      |> fold (Variable.declare_typ o resort_tfree dummyS) unsorted_As
53266
89f7f1cc9ae3 cleaner handling of bootstrapping "fake" context, with fewer (no?) obscure bugs
blanchet
parents: 53264
diff changeset
  1090
      |> mk_TFrees num_As
49585
5c4a12550491 generate high-level "maps", "sets", and "rels" properties
blanchet
parents: 49583
diff changeset
  1091
      ||>> mk_TFrees nn
51858
7a08fe1e19b1 added and moved library functions (used in primrec code)
blanchet
parents: 51857
diff changeset
  1092
      ||>> variant_tfrees fp_b_names;
49119
1f605c36869c more work on FP sugar
blanchet
parents: 49112
diff changeset
  1093
55469
b19dd108f0c2 aligned the syntax for 'free_constructors' on the 'datatype_new' and 'codatatype' syntax
blanchet
parents: 55468
diff changeset
  1094
    fun add_fake_type spec =
b19dd108f0c2 aligned the syntax for 'free_constructors' on the 'datatype_new' and 'codatatype' syntax
blanchet
parents: 55468
diff changeset
  1095
      Typedecl.basic_typedecl (type_binding_of_spec spec, num_As, mixfix_of_spec spec);
51768
d2a236b10796 proper error generated for wrong mixfix
blanchet
parents: 51767
diff changeset
  1096
53268
de1dc709f9d4 handle type class annotations on (co)datatype parameters gracefully
blanchet
parents: 53266
diff changeset
  1097
    val (fake_T_names, fake_lthy) = fold_map add_fake_type specs no_defs_lthy0;
49119
1f605c36869c more work on FP sugar
blanchet
parents: 49112
diff changeset
  1098
53262
23927b18dce2 rationalize message generation + added a warning
blanchet
parents: 53260
diff changeset
  1099
    val qsoty = quote o Syntax.string_of_typ fake_lthy;
23927b18dce2 rationalize message generation + added a warning
blanchet
parents: 53260
diff changeset
  1100
54253
04cd231e2b9e nicer error message in case of duplicates
blanchet
parents: 54243
diff changeset
  1101
    val _ = (case Library.duplicates (op =) unsorted_As of [] => ()
53262
23927b18dce2 rationalize message generation + added a warning
blanchet
parents: 53260
diff changeset
  1102
      | A :: _ => error ("Duplicate type parameter " ^ qsoty A ^ " in " ^ co_prefix fp ^
23927b18dce2 rationalize message generation + added a warning
blanchet
parents: 53260
diff changeset
  1103
          "datatype specification"));
23927b18dce2 rationalize message generation + added a warning
blanchet
parents: 53260
diff changeset
  1104
23927b18dce2 rationalize message generation + added a warning
blanchet
parents: 53260
diff changeset
  1105
    val bad_args =
23927b18dce2 rationalize message generation + added a warning
blanchet
parents: 53260
diff changeset
  1106
      map (Logic.type_map (singleton (Variable.polymorphic no_defs_lthy0))) unsorted_As
23927b18dce2 rationalize message generation + added a warning
blanchet
parents: 53260
diff changeset
  1107
      |> filter_out Term.is_TVar;
23927b18dce2 rationalize message generation + added a warning
blanchet
parents: 53260
diff changeset
  1108
    val _ = null bad_args orelse
23927b18dce2 rationalize message generation + added a warning
blanchet
parents: 53260
diff changeset
  1109
      error ("Locally fixed type argument " ^ qsoty (hd bad_args) ^ " in " ^ co_prefix fp ^
23927b18dce2 rationalize message generation + added a warning
blanchet
parents: 53260
diff changeset
  1110
        "datatype specification");
23927b18dce2 rationalize message generation + added a warning
blanchet
parents: 53260
diff changeset
  1111
55469
b19dd108f0c2 aligned the syntax for 'free_constructors' on the 'datatype_new' and 'codatatype' syntax
blanchet
parents: 55468
diff changeset
  1112
    val mixfixes = map mixfix_of_spec specs;
49119
1f605c36869c more work on FP sugar
blanchet
parents: 49112
diff changeset
  1113
54253
04cd231e2b9e nicer error message in case of duplicates
blanchet
parents: 54243
diff changeset
  1114
    val _ = (case Library.duplicates Binding.eq_name fp_bs of [] => ()
49119
1f605c36869c more work on FP sugar
blanchet
parents: 49112
diff changeset
  1115
      | b :: _ => error ("Duplicate type name declaration " ^ quote (Binding.name_of b)));
1f605c36869c more work on FP sugar
blanchet
parents: 49112
diff changeset
  1116
55469
b19dd108f0c2 aligned the syntax for 'free_constructors' on the 'datatype_new' and 'codatatype' syntax
blanchet
parents: 55468
diff changeset
  1117
    val mx_ctr_specss = map mixfixed_ctr_specs_of_spec specs;
b19dd108f0c2 aligned the syntax for 'free_constructors' on the 'datatype_new' and 'codatatype' syntax
blanchet
parents: 55468
diff changeset
  1118
    val ctr_specss = map (map fst) mx_ctr_specss;
b19dd108f0c2 aligned the syntax for 'free_constructors' on the 'datatype_new' and 'codatatype' syntax
blanchet
parents: 55468
diff changeset
  1119
    val ctr_mixfixess = map (map snd) mx_ctr_specss;
49119
1f605c36869c more work on FP sugar
blanchet
parents: 49112
diff changeset
  1120
55469
b19dd108f0c2 aligned the syntax for 'free_constructors' on the 'datatype_new' and 'codatatype' syntax
blanchet
parents: 55468
diff changeset
  1121
    val disc_bindingss = map (map disc_of_ctr_spec) ctr_specss;
49336
blanchet
parents: 49330
diff changeset
  1122
    val ctr_bindingss =
55469
b19dd108f0c2 aligned the syntax for 'free_constructors' on the 'datatype_new' and 'codatatype' syntax
blanchet
parents: 55468
diff changeset
  1123
      map2 (fn fp_b_name => map (Binding.qualify false fp_b_name o ctr_of_ctr_spec)) fp_b_names
b19dd108f0c2 aligned the syntax for 'free_constructors' on the 'datatype_new' and 'codatatype' syntax
blanchet
parents: 55468
diff changeset
  1124
        ctr_specss;
b19dd108f0c2 aligned the syntax for 'free_constructors' on the 'datatype_new' and 'codatatype' syntax
blanchet
parents: 55468
diff changeset
  1125
    val ctr_argsss = map (map args_of_ctr_spec) ctr_specss;
49119
1f605c36869c more work on FP sugar
blanchet
parents: 49112
diff changeset
  1126
49336
blanchet
parents: 49330
diff changeset
  1127
    val sel_bindingsss = map (map (map fst)) ctr_argsss;
49298
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
  1128
    val fake_ctr_Tsss0 = map (map (map (prepare_typ fake_lthy o snd))) ctr_argsss;
57200
aab87ffa60cc use 'where' clause for selector default value syntax
blanchet
parents: 57199
diff changeset
  1129
    val raw_sel_default_eqss = map sel_default_eqs_of_spec specs;
49286
dde4967c9233 added "defaults" option
blanchet
parents: 49280
diff changeset
  1130
49308
6190b701e4f4 reorganized dependencies so that the sugar does not depend on GFP -- this will be essential for bootstrapping
blanchet
parents: 49302
diff changeset
  1131
    val (As :: _) :: fake_ctr_Tsss =
49298
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
  1132
      burrow (burrow (Syntax.check_typs fake_lthy)) (Ass0 :: fake_ctr_Tsss0);
53262
23927b18dce2 rationalize message generation + added a warning
blanchet
parents: 53260
diff changeset
  1133
    val As' = map dest_TFree As;
49298
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
  1134
49183
0cc46e2dee7e careful about constructor types w.r.t. fake context (third step of localization)
blanchet
parents: 49182
diff changeset
  1135
    val rhs_As' = fold (fold (fold Term.add_tfreesT)) fake_ctr_Tsss [];
53262
23927b18dce2 rationalize message generation + added a warning
blanchet
parents: 53260
diff changeset
  1136
    val _ = (case subtract (op =) As' rhs_As' of [] => ()
23927b18dce2 rationalize message generation + added a warning
blanchet
parents: 53260
diff changeset
  1137
      | extras => error ("Extra type variables on right-hand side: " ^
23927b18dce2 rationalize message generation + added a warning
blanchet
parents: 53260
diff changeset
  1138
          commas (map (qsoty o TFree) extras)));
49165
c6ccaf6df93c check type variables on rhs
blanchet
parents: 49161
diff changeset
  1139
53268
de1dc709f9d4 handle type class annotations on (co)datatype parameters gracefully
blanchet
parents: 53266
diff changeset
  1140
    val fake_Ts = map (fn s => Type (s, As)) fake_T_names;
de1dc709f9d4 handle type class annotations on (co)datatype parameters gracefully
blanchet
parents: 53266
diff changeset
  1141
53262
23927b18dce2 rationalize message generation + added a warning
blanchet
parents: 53260
diff changeset
  1142
    fun eq_fpT_check (T as Type (s, Ts)) (T' as Type (s', Ts')) =
23927b18dce2 rationalize message generation + added a warning
blanchet
parents: 53260
diff changeset
  1143
        s = s' andalso (Ts = Ts' orelse
23927b18dce2 rationalize message generation + added a warning
blanchet
parents: 53260
diff changeset
  1144
          error ("Wrong type arguments in " ^ co_prefix fp ^ "recursive type " ^ qsoty T ^
23927b18dce2 rationalize message generation + added a warning
blanchet
parents: 53260
diff changeset
  1145
            " (expected " ^ qsoty T' ^ ")"))
49591
91b228e26348 generate high-level "coinduct" and "strong_coinduct" properties
blanchet
parents: 49590
diff changeset
  1146
      | eq_fpT_check _ _ = false;
49146
e32b1f748854 added a check
blanchet
parents: 49135
diff changeset
  1147
53222
8b159677efb5 better error message
blanchet
parents: 53221
diff changeset
  1148
    fun freeze_fp (T as Type (s, Ts)) =
49591
91b228e26348 generate high-level "coinduct" and "strong_coinduct" properties
blanchet
parents: 49590
diff changeset
  1149
        (case find_index (eq_fpT_check T) fake_Ts of
53222
8b159677efb5 better error message
blanchet
parents: 53221
diff changeset
  1150
          ~1 => Type (s, map freeze_fp Ts)
49591
91b228e26348 generate high-level "coinduct" and "strong_coinduct" properties
blanchet
parents: 49590
diff changeset
  1151
        | kk => nth Xs kk)
49204
0b735fb2602e generate iter/rec goals
blanchet
parents: 49203
diff changeset
  1152
      | freeze_fp T = T;
49121
9e0acaa470ab more work on FP sugar
blanchet
parents: 49119
diff changeset
  1153
53222
8b159677efb5 better error message
blanchet
parents: 53221
diff changeset
  1154
    val unfreeze_fp = Term.typ_subst_atomic (Xs ~~ fake_Ts);
8b159677efb5 better error message
blanchet
parents: 53221
diff changeset
  1155
52310
28063e412793 support induction principles with multiple occurrences of the same type in "fpTs" and (hopefully) with loss of recursion (e.g. primrec definition of is_nil, where the IH can be dropped)
blanchet
parents: 52309
diff changeset
  1156
    val ctrXs_Tsss = map (map (map freeze_fp)) fake_ctr_Tsss;
55966
972f0aa7091b balance tuples that represent curried functions
blanchet
parents: 55903
diff changeset
  1157
    val ctrXs_repTs = map mk_sumprodT_balanced ctrXs_Tsss;
49119
1f605c36869c more work on FP sugar
blanchet
parents: 49112
diff changeset
  1158
49298
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
  1159
    val fp_eqs =
55803
74d3fe9031d8 joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents: 55772
diff changeset
  1160
      map dest_TFree Xs ~~ map (Term.typ_subst_atomic (As ~~ unsorted_As)) ctrXs_repTs;
49121
9e0acaa470ab more work on FP sugar
blanchet
parents: 49119
diff changeset
  1161
53262
23927b18dce2 rationalize message generation + added a warning
blanchet
parents: 53260
diff changeset
  1162
    val rhsXs_As' = fold (fold (fold Term.add_tfreesT)) ctrXs_Tsss [];
23927b18dce2 rationalize message generation + added a warning
blanchet
parents: 53260
diff changeset
  1163
    val _ = (case subtract (op =) rhsXs_As' As' of [] => ()
53266
89f7f1cc9ae3 cleaner handling of bootstrapping "fake" context, with fewer (no?) obscure bugs
blanchet
parents: 53264
diff changeset
  1164
      | extras => List.app (fn extra => warning ("Unused type variable on right-hand side of " ^
89f7f1cc9ae3 cleaner handling of bootstrapping "fake" context, with fewer (no?) obscure bugs
blanchet
parents: 53264
diff changeset
  1165
          co_prefix fp ^ "datatype definition: " ^ qsoty (TFree extra))) extras);
53262
23927b18dce2 rationalize message generation + added a warning
blanchet
parents: 53260
diff changeset
  1166
55701
38f75365fc2a added explicit killing
blanchet
parents: 55700
diff changeset
  1167
    val killed_As =
38f75365fc2a added explicit killing
blanchet
parents: 55700
diff changeset
  1168
      map_filter (fn (A, set_bos) => if exists is_none set_bos then SOME A else NONE)
38f75365fc2a added explicit killing
blanchet
parents: 55700
diff changeset
  1169
        (unsorted_As ~~ transpose set_boss);
38f75365fc2a added explicit killing
blanchet
parents: 55700
diff changeset
  1170
55803
74d3fe9031d8 joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents: 55772
diff changeset
  1171
    val ((pre_bnfs, absT_infos), (fp_res as {bnfs = fp_bnfs as any_fp_bnf :: _, ctors = ctors0,
55868
37b99986d435 rationalized internals
blanchet
parents: 55867
diff changeset
  1172
             dtors = dtors0, xtor_co_recs = xtor_co_recs0, xtor_co_induct, dtor_ctors,
55803
74d3fe9031d8 joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents: 55772
diff changeset
  1173
             ctor_dtors, ctor_injects, dtor_injects, xtor_map_thms, xtor_set_thmss, xtor_rel_thms,
57700
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
  1174
             xtor_co_rec_thms, rel_xtor_co_induct_thm, dtor_set_induct_thms, ...},
53203
222ea6acbdd6 moved derivation of ctor_dtor_unfold to sugar (streamlines fp_result interface)
traytel
parents: 53143
diff changeset
  1175
           lthy)) =
55701
38f75365fc2a added explicit killing
blanchet
parents: 55700
diff changeset
  1176
      fp_bnf (construct_fp mixfixes map_bs rel_bs set_bss) fp_bs (map dest_TFree unsorted_As)
38f75365fc2a added explicit killing
blanchet
parents: 55700
diff changeset
  1177
        (map dest_TFree killed_As) fp_eqs no_defs_lthy0
53222
8b159677efb5 better error message
blanchet
parents: 53221
diff changeset
  1178
      handle BAD_DEAD (X, X_backdrop) =>
8b159677efb5 better error message
blanchet
parents: 53221
diff changeset
  1179
        (case X_backdrop of
8b159677efb5 better error message
blanchet
parents: 53221
diff changeset
  1180
          Type (bad_tc, _) =>
8b159677efb5 better error message
blanchet
parents: 53221
diff changeset
  1181
          let
8b159677efb5 better error message
blanchet
parents: 53221
diff changeset
  1182
            val fake_T = qsoty (unfreeze_fp X);
8b159677efb5 better error message
blanchet
parents: 53221
diff changeset
  1183
            val fake_T_backdrop = qsoty (unfreeze_fp X_backdrop);
8b159677efb5 better error message
blanchet
parents: 53221
diff changeset
  1184
            fun register_hint () =
8b159677efb5 better error message
blanchet
parents: 53221
diff changeset
  1185
              "\nUse the " ^ quote (fst (fst @{command_spec "bnf"})) ^ " command to register " ^
8b159677efb5 better error message
blanchet
parents: 53221
diff changeset
  1186
              quote bad_tc ^ " as a bounded natural functor to allow nested (co)recursion through \
8b159677efb5 better error message
blanchet
parents: 53221
diff changeset
  1187
              \it";
8b159677efb5 better error message
blanchet
parents: 53221
diff changeset
  1188
          in
8b159677efb5 better error message
blanchet
parents: 53221
diff changeset
  1189
            if is_some (bnf_of no_defs_lthy bad_tc) orelse
8b159677efb5 better error message
blanchet
parents: 53221
diff changeset
  1190
               is_some (fp_sugar_of no_defs_lthy bad_tc) then
53256
blanchet
parents: 53222
diff changeset
  1191
              error ("Inadmissible " ^ co_prefix fp ^ "recursive occurrence of type " ^ fake_T ^
blanchet
parents: 53222
diff changeset
  1192
                " in type expression " ^ fake_T_backdrop)
53222
8b159677efb5 better error message
blanchet
parents: 53221
diff changeset
  1193
            else if is_some (Datatype_Data.get_info (Proof_Context.theory_of no_defs_lthy)
8b159677efb5 better error message
blanchet
parents: 53221
diff changeset
  1194
                bad_tc) then
8b159677efb5 better error message
blanchet
parents: 53221
diff changeset
  1195
              error ("Unsupported " ^ co_prefix fp ^ "recursive occurrence of type " ^ fake_T ^
8b159677efb5 better error message
blanchet
parents: 53221
diff changeset
  1196
                " via the old-style datatype " ^ quote bad_tc ^ " in type expression " ^
8b159677efb5 better error message
blanchet
parents: 53221
diff changeset
  1197
                fake_T_backdrop ^ register_hint ())
8b159677efb5 better error message
blanchet
parents: 53221
diff changeset
  1198
            else
8b159677efb5 better error message
blanchet
parents: 53221
diff changeset
  1199
              error ("Unsupported " ^ co_prefix fp ^ "recursive occurrence of type " ^ fake_T ^
8b159677efb5 better error message
blanchet
parents: 53221
diff changeset
  1200
                " via type constructor " ^ quote bad_tc ^ " in type expression " ^ fake_T_backdrop ^
8b159677efb5 better error message
blanchet
parents: 53221
diff changeset
  1201
                register_hint ())
8b159677efb5 better error message
blanchet
parents: 53221
diff changeset
  1202
          end);
49585
5c4a12550491 generate high-level "maps", "sets", and "rels" properties
blanchet
parents: 49583
diff changeset
  1203
55803
74d3fe9031d8 joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents: 55772
diff changeset
  1204
    val abss = map #abs absT_infos;
74d3fe9031d8 joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents: 55772
diff changeset
  1205
    val reps = map #rep absT_infos;
74d3fe9031d8 joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents: 55772
diff changeset
  1206
    val absTs = map #absT absT_infos;
74d3fe9031d8 joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents: 55772
diff changeset
  1207
    val repTs = map #repT absT_infos;
74d3fe9031d8 joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents: 55772
diff changeset
  1208
    val abs_injects = map #abs_inject absT_infos;
74d3fe9031d8 joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents: 55772
diff changeset
  1209
    val abs_inverses = map #abs_inverse absT_infos;
74d3fe9031d8 joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents: 55772
diff changeset
  1210
    val type_definitions = map #type_definition absT_infos;
74d3fe9031d8 joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents: 55772
diff changeset
  1211
53143
ba80154a1118 configuration option to control timing output for (co)datatypes
traytel
parents: 53126
diff changeset
  1212
    val time = time lthy;
49585
5c4a12550491 generate high-level "maps", "sets", and "rels" properties
blanchet
parents: 49583
diff changeset
  1213
    val timer = time (Timer.startRealTimer ());
49121
9e0acaa470ab more work on FP sugar
blanchet
parents: 49119
diff changeset
  1214
57397
5004aca20821 tuned variable names
blanchet
parents: 57303
diff changeset
  1215
    val fp_nesting_bnfs = nesting_bnfs lthy ctrXs_Tsss Xs;
5004aca20821 tuned variable names
blanchet
parents: 57303
diff changeset
  1216
    val live_nesting_bnfs = nesting_bnfs lthy ctrXs_Tsss As;
49226
510c6d4a73ec fixed and enabled iterator/recursor theorems
blanchet
parents: 49224
diff changeset
  1217
49585
5c4a12550491 generate high-level "maps", "sets", and "rels" properties
blanchet
parents: 49583
diff changeset
  1218
    val pre_map_defs = map map_def_of_bnf pre_bnfs;
5c4a12550491 generate high-level "maps", "sets", and "rels" properties
blanchet
parents: 49583
diff changeset
  1219
    val pre_set_defss = map set_defs_of_bnf pre_bnfs;
5c4a12550491 generate high-level "maps", "sets", and "rels" properties
blanchet
parents: 49583
diff changeset
  1220
    val pre_rel_defs = map rel_def_of_bnf pre_bnfs;
57397
5004aca20821 tuned variable names
blanchet
parents: 57303
diff changeset
  1221
    val fp_nesting_set_maps = maps set_map_of_bnf fp_nesting_bnfs;
5004aca20821 tuned variable names
blanchet
parents: 57303
diff changeset
  1222
    val live_nesting_set_maps = maps set_map_of_bnf live_nesting_bnfs;
49585
5c4a12550491 generate high-level "maps", "sets", and "rels" properties
blanchet
parents: 49583
diff changeset
  1223
5c4a12550491 generate high-level "maps", "sets", and "rels" properties
blanchet
parents: 49583
diff changeset
  1224
    val live = live_of_bnf any_fp_bnf;
52961
bb8787b20437 added warning
blanchet
parents: 52960
diff changeset
  1225
    val _ =
bb8787b20437 added warning
blanchet
parents: 52960
diff changeset
  1226
      if live = 0 andalso exists (not o Binding.is_empty) (map_bs @ rel_bs) then
53266
89f7f1cc9ae3 cleaner handling of bootstrapping "fake" context, with fewer (no?) obscure bugs
blanchet
parents: 53264
diff changeset
  1227
        warning "Map function and relator names ignored"
52961
bb8787b20437 added warning
blanchet
parents: 52960
diff changeset
  1228
      else
bb8787b20437 added warning
blanchet
parents: 52960
diff changeset
  1229
        ();
49585
5c4a12550491 generate high-level "maps", "sets", and "rels" properties
blanchet
parents: 49583
diff changeset
  1230
5c4a12550491 generate high-level "maps", "sets", and "rels" properties
blanchet
parents: 49583
diff changeset
  1231
    val Bs =
5c4a12550491 generate high-level "maps", "sets", and "rels" properties
blanchet
parents: 49583
diff changeset
  1232
      map3 (fn alive => fn A as TFree (_, S) => fn B => if alive then resort_tfree S B else A)
53266
89f7f1cc9ae3 cleaner handling of bootstrapping "fake" context, with fewer (no?) obscure bugs
blanchet
parents: 53264
diff changeset
  1233
        (liveness_of_fp_bnf num_As any_fp_bnf) As Bs0;
49585
5c4a12550491 generate high-level "maps", "sets", and "rels" properties
blanchet
parents: 49583
diff changeset
  1234
5c4a12550491 generate high-level "maps", "sets", and "rels" properties
blanchet
parents: 49583
diff changeset
  1235
    val B_ify = Term.typ_subst_atomic (As ~~ Bs);
49167
68623861e0f2 print timing information
blanchet
parents: 49165
diff changeset
  1236
49501
acc9635a644a renamed "fld"/"unf" to "ctor"/"dtor"
blanchet
parents: 49498
diff changeset
  1237
    val ctors = map (mk_ctor As) ctors0;
acc9635a644a renamed "fld"/"unf" to "ctor"/"dtor"
blanchet
parents: 49498
diff changeset
  1238
    val dtors = map (mk_dtor As) dtors0;
49124
968e1b7de057 more work on FP sugar
blanchet
parents: 49123
diff changeset
  1239
49501
acc9635a644a renamed "fld"/"unf" to "ctor"/"dtor"
blanchet
parents: 49498
diff changeset
  1240
    val fpTs = map (domain_type o fastype_of) dtors;
56638
092a306bcc3d generate size instances for new-style datatypes
blanchet
parents: 56637
diff changeset
  1241
    val fpBTs = map B_ify fpTs;
49362
1271aca16aed make tactic more robust in the case where "asm_simp_tac" already finishes the job
blanchet
parents: 49361
diff changeset
  1242
51780
67e4ed510dfb register coinductive type's coinduct rule
blanchet
parents: 51777
diff changeset
  1243
    fun massage_simple_notes base =
67e4ed510dfb register coinductive type's coinduct rule
blanchet
parents: 51777
diff changeset
  1244
      filter_out (null o #2)
57700
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
  1245
      #> map (fn (thmN, thms, f_attrs) =>
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
  1246
        ((Binding.qualify true base (Binding.name thmN), []), map_index (fn (i, thm) => ([thm], f_attrs i)) thms));
51780
67e4ed510dfb register coinductive type's coinduct rule
blanchet
parents: 51777
diff changeset
  1247
67e4ed510dfb register coinductive type's coinduct rule
blanchet
parents: 51777
diff changeset
  1248
    val massage_multi_notes =
67e4ed510dfb register coinductive type's coinduct rule
blanchet
parents: 51777
diff changeset
  1249
      maps (fn (thmN, thmss, attrs) =>
53792
f0b273258d80 don't generate empty theorem collections
blanchet
parents: 53746
diff changeset
  1250
        map3 (fn fp_b_name => fn Type (T_name, _) => fn thms =>
55410
54b09e82b9e1 killed 'rep_compat' option
blanchet
parents: 55409
diff changeset
  1251
            ((Binding.qualify true fp_b_name (Binding.name thmN), attrs T_name), [(thms, [])]))
53792
f0b273258d80 don't generate empty theorem collections
blanchet
parents: 53746
diff changeset
  1252
          fp_b_names fpTs thmss)
f0b273258d80 don't generate empty theorem collections
blanchet
parents: 53746
diff changeset
  1253
      #> filter_out (null o fst o hd o snd);
51780
67e4ed510dfb register coinductive type's coinduct rule
blanchet
parents: 51777
diff changeset
  1254
52310
28063e412793 support induction principles with multiple occurrences of the same type in "fpTs" and (hopefully) with loss of recursion (e.g. primrec definition of is_nil, where the IH can be dropped)
blanchet
parents: 52309
diff changeset
  1255
    val ctr_Tsss = map (map (map (Term.typ_subst_atomic (Xs ~~ fpTs)))) ctrXs_Tsss;
49203
262ab1ac38b9 repaired constant types
blanchet
parents: 49202
diff changeset
  1256
    val ns = map length ctr_Tsss;
49212
ca59649170b0 more sugar on codatatypes
blanchet
parents: 49211
diff changeset
  1257
    val kss = map (fn n => 1 upto n) ns;
49203
262ab1ac38b9 repaired constant types
blanchet
parents: 49202
diff changeset
  1258
    val mss = map (map length) ctr_Tsss;
262ab1ac38b9 repaired constant types
blanchet
parents: 49202
diff changeset
  1259
55867
79b915f26533 rationalized internals
blanchet
parents: 55865
diff changeset
  1260
    val ((xtor_co_recs, recs_args_types, corecs_args_types), lthy') =
55868
37b99986d435 rationalized internals
blanchet
parents: 55867
diff changeset
  1261
      mk_co_recs_prelims fp ctr_Tsss fpTs Cs absTs repTs ns mss xtor_co_recs0 lthy;
49210
656fb50d33f0 define coiterators
blanchet
parents: 49209
diff changeset
  1262
55803
74d3fe9031d8 joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents: 55772
diff changeset
  1263
    fun define_ctrs_dtrs_for_type (((((((((((((((((((((((((((fp_bnf, fp_b), fpT), ctor), dtor),
55867
79b915f26533 rationalized internals
blanchet
parents: 55865
diff changeset
  1264
              xtor_co_rec), ctor_dtor), dtor_ctor), ctor_inject), pre_map_def), pre_set_defs),
55803
74d3fe9031d8 joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents: 55772
diff changeset
  1265
            pre_rel_def), fp_map_thm), fp_set_thms), fp_rel_thm), n), ks), ms), abs),
74d3fe9031d8 joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents: 55772
diff changeset
  1266
          abs_inject), abs_inverse), type_definition), ctr_bindings), ctr_mixfixes), ctr_Tss),
57200
aab87ffa60cc use 'where' clause for selector default value syntax
blanchet
parents: 57199
diff changeset
  1267
        disc_bindings), sel_bindingss), raw_sel_default_eqs) no_defs_lthy =
49176
6d29d2db5f88 construct high-level iterator RHS
blanchet
parents: 49169
diff changeset
  1268
      let
49498
acc583e14167 tuned variable names
blanchet
parents: 49484
diff changeset
  1269
        val fp_b_name = Binding.name_of fp_b;
acc583e14167 tuned variable names
blanchet
parents: 49484
diff changeset
  1270
55803
74d3fe9031d8 joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents: 55772
diff changeset
  1271
        val ctr_absT = domain_type (fastype_of ctor);
49119
1f605c36869c more work on FP sugar
blanchet
parents: 49112
diff changeset
  1272
52968
2b430bbb5a1a define case constant from other 'free constructor' axioms
blanchet
parents: 52964
diff changeset
  1273
        val ((((w, xss), yss), u'), names_lthy) =
49204
0b735fb2602e generate iter/rec goals
blanchet
parents: 49203
diff changeset
  1274
          no_defs_lthy
55803
74d3fe9031d8 joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents: 55772
diff changeset
  1275
          |> yield_singleton (mk_Frees "w") ctr_absT
49370
be6e749fd003 fixed variable exporting problem
blanchet
parents: 49368
diff changeset
  1276
          ||>> mk_Freess "x" ctr_Tss
49585
5c4a12550491 generate high-level "maps", "sets", and "rels" properties
blanchet
parents: 49583
diff changeset
  1277
          ||>> mk_Freess "y" (map (map B_ify) ctr_Tss)
49498
acc583e14167 tuned variable names
blanchet
parents: 49484
diff changeset
  1278
          ||>> yield_singleton Variable.variant_fixes fp_b_name;
49370
be6e749fd003 fixed variable exporting problem
blanchet
parents: 49368
diff changeset
  1279
49498
acc583e14167 tuned variable names
blanchet
parents: 49484
diff changeset
  1280
        val u = Free (u', fpT);
49121
9e0acaa470ab more work on FP sugar
blanchet
parents: 49119
diff changeset
  1281
49129
b5413cb7d860 define "case" constant
blanchet
parents: 49127
diff changeset
  1282
        val ctr_rhss =
55803
74d3fe9031d8 joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents: 55772
diff changeset
  1283
          map2 (fn k => fn xs => fold_rev Term.lambda xs (ctor $ mk_absumprod ctr_absT abs n k xs))
74d3fe9031d8 joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents: 55772
diff changeset
  1284
            ks xss;
49121
9e0acaa470ab more work on FP sugar
blanchet
parents: 49119
diff changeset
  1285
53569
b4db0ade27bd conceal definitions of high-level constructors and (co)iterators
traytel
parents: 53553
diff changeset
  1286
        val maybe_conceal_def_binding = Thm.def_binding
b4db0ade27bd conceal definitions of high-level constructors and (co)iterators
traytel
parents: 53553
diff changeset
  1287
          #> Config.get no_defs_lthy bnf_note_all = false ? Binding.conceal;
b4db0ade27bd conceal definitions of high-level constructors and (co)iterators
traytel
parents: 53553
diff changeset
  1288
52968
2b430bbb5a1a define case constant from other 'free constructor' axioms
blanchet
parents: 52964
diff changeset
  1289
        val ((raw_ctrs, raw_ctr_defs), (lthy', lthy)) = no_defs_lthy
49169
937a0fadddfb honor mixfix specifications
blanchet
parents: 49167
diff changeset
  1290
          |> apfst split_list o fold_map3 (fn b => fn mx => fn rhs =>
53569
b4db0ade27bd conceal definitions of high-level constructors and (co)iterators
traytel
parents: 53553
diff changeset
  1291
              Local_Theory.define ((b, mx), ((maybe_conceal_def_binding b, []), rhs)) #>> apsnd snd)
52968
2b430bbb5a1a define case constant from other 'free constructor' axioms
blanchet
parents: 52964
diff changeset
  1292
            ctr_bindings ctr_mixfixes ctr_rhss
49121
9e0acaa470ab more work on FP sugar
blanchet
parents: 49119
diff changeset
  1293
          ||> `Local_Theory.restore;
9e0acaa470ab more work on FP sugar
blanchet
parents: 49119
diff changeset
  1294
9e0acaa470ab more work on FP sugar
blanchet
parents: 49119
diff changeset
  1295
        val phi = Proof_Context.export_morphism lthy lthy';
9e0acaa470ab more work on FP sugar
blanchet
parents: 49119
diff changeset
  1296
9e0acaa470ab more work on FP sugar
blanchet
parents: 49119
diff changeset
  1297
        val ctr_defs = map (Morphism.thm phi) raw_ctr_defs;
49585
5c4a12550491 generate high-level "maps", "sets", and "rels" properties
blanchet
parents: 49583
diff changeset
  1298
        val ctr_defs' =
5c4a12550491 generate high-level "maps", "sets", and "rels" properties
blanchet
parents: 49583
diff changeset
  1299
          map2 (fn m => fn def => mk_unabs_def m (def RS meta_eq_to_obj_eq)) ms ctr_defs;
49130
3c26e17b2849 implemented "mk_case_tac" -- and got rid of "cheat_tac"
blanchet
parents: 49129
diff changeset
  1300
49203
262ab1ac38b9 repaired constant types
blanchet
parents: 49202
diff changeset
  1301
        val ctrs0 = map (Morphism.term phi) raw_ctrs;
262ab1ac38b9 repaired constant types
blanchet
parents: 49202
diff changeset
  1302
        val ctrs = map (mk_ctr As) ctrs0;
49121
9e0acaa470ab more work on FP sugar
blanchet
parents: 49119
diff changeset
  1303
51897
9a27c870ee21 refactoring
blanchet
parents: 51896
diff changeset
  1304
        fun wrap_ctrs lthy =
49123
263b0e330d8b more work on sugar + simplify Trueprop + eq idiom everywhere
blanchet
parents: 49121
diff changeset
  1305
          let
50170
8155e280f239 made SML/NJ happier
traytel
parents: 49693
diff changeset
  1306
            fun exhaust_tac {context = ctxt, prems = _} =
49135
de13b454fa31 fixed some type issues in sugar "exhaust_tac"
blanchet
parents: 49134
diff changeset
  1307
              let
49585
5c4a12550491 generate high-level "maps", "sets", and "rels" properties
blanchet
parents: 49583
diff changeset
  1308
                val ctor_iff_dtor_thm =
5c4a12550491 generate high-level "maps", "sets", and "rels" properties
blanchet
parents: 49583
diff changeset
  1309
                  let
5c4a12550491 generate high-level "maps", "sets", and "rels" properties
blanchet
parents: 49583
diff changeset
  1310
                    val goal =
5c4a12550491 generate high-level "maps", "sets", and "rels" properties
blanchet
parents: 49583
diff changeset
  1311
                      fold_rev Logic.all [w, u]
5c4a12550491 generate high-level "maps", "sets", and "rels" properties
blanchet
parents: 49583
diff changeset
  1312
                        (mk_Trueprop_eq (HOLogic.mk_eq (u, ctor $ w), HOLogic.mk_eq (dtor $ u, w)));
5c4a12550491 generate high-level "maps", "sets", and "rels" properties
blanchet
parents: 49583
diff changeset
  1313
                  in
51551
88d1d19fb74f tuned signature and module arrangement;
wenzelm
parents: 51380
diff changeset
  1314
                    Goal.prove_sorry lthy [] [] goal (fn {context = ctxt, ...} =>
55803
74d3fe9031d8 joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents: 55772
diff changeset
  1315
                      mk_ctor_iff_dtor_tac ctxt (map (SOME o certifyT lthy) [ctr_absT, fpT])
49585
5c4a12550491 generate high-level "maps", "sets", and "rels" properties
blanchet
parents: 49583
diff changeset
  1316
                        (certify lthy ctor) (certify lthy dtor) ctor_dtor dtor_ctor)
55409
b74248961819 made 'ctr_sugar' more friendly to the 'datatype_realizer'
blanchet
parents: 55397
diff changeset
  1317
                    |> Morphism.thm phi
49585
5c4a12550491 generate high-level "maps", "sets", and "rels" properties
blanchet
parents: 49583
diff changeset
  1318
                    |> Thm.close_derivation
5c4a12550491 generate high-level "maps", "sets", and "rels" properties
blanchet
parents: 49583
diff changeset
  1319
                  end;
5c4a12550491 generate high-level "maps", "sets", and "rels" properties
blanchet
parents: 49583
diff changeset
  1320
5c4a12550491 generate high-level "maps", "sets", and "rels" properties
blanchet
parents: 49583
diff changeset
  1321
                val sumEN_thm' =
55803
74d3fe9031d8 joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents: 55772
diff changeset
  1322
                  unfold_thms lthy @{thms unit_all_eq1} (mk_absumprodE type_definition ms)
49585
5c4a12550491 generate high-level "maps", "sets", and "rels" properties
blanchet
parents: 49583
diff changeset
  1323
                  |> Morphism.thm phi;
49135
de13b454fa31 fixed some type issues in sugar "exhaust_tac"
blanchet
parents: 49134
diff changeset
  1324
              in
49585
5c4a12550491 generate high-level "maps", "sets", and "rels" properties
blanchet
parents: 49583
diff changeset
  1325
                mk_exhaust_tac ctxt n ctr_defs ctor_iff_dtor_thm sumEN_thm'
49135
de13b454fa31 fixed some type issues in sugar "exhaust_tac"
blanchet
parents: 49134
diff changeset
  1326
              end;
de13b454fa31 fixed some type issues in sugar "exhaust_tac"
blanchet
parents: 49134
diff changeset
  1327
49585
5c4a12550491 generate high-level "maps", "sets", and "rels" properties
blanchet
parents: 49583
diff changeset
  1328
            val inject_tacss =
55803
74d3fe9031d8 joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents: 55772
diff changeset
  1329
              map2 (fn ctr_def => fn 0 => [] | _ => [fn {context = ctxt, ...} =>
74d3fe9031d8 joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents: 55772
diff changeset
  1330
                mk_inject_tac ctxt ctr_def ctor_inject abs_inject]) ctr_defs ms;
49585
5c4a12550491 generate high-level "maps", "sets", and "rels" properties
blanchet
parents: 49583
diff changeset
  1331
5c4a12550491 generate high-level "maps", "sets", and "rels" properties
blanchet
parents: 49583
diff changeset
  1332
            val half_distinct_tacss =
5c4a12550491 generate high-level "maps", "sets", and "rels" properties
blanchet
parents: 49583
diff changeset
  1333
              map (map (fn (def, def') => fn {context = ctxt, ...} =>
55803
74d3fe9031d8 joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents: 55772
diff changeset
  1334
                  mk_half_distinct_tac ctxt ctor_inject abs_inject [def, def']))
74d3fe9031d8 joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents: 55772
diff changeset
  1335
                (mk_half_pairss (`I ctr_defs));
49585
5c4a12550491 generate high-level "maps", "sets", and "rels" properties
blanchet
parents: 49583
diff changeset
  1336
52968
2b430bbb5a1a define case constant from other 'free constructor' axioms
blanchet
parents: 52964
diff changeset
  1337
            val tacss = [exhaust_tac] :: inject_tacss @ half_distinct_tacss;
49585
5c4a12550491 generate high-level "maps", "sets", and "rels" properties
blanchet
parents: 49583
diff changeset
  1338
57830
2d0f0d6fdf3e correctly resolve selector names in default value equations
blanchet
parents: 57824
diff changeset
  1339
            val sel_Tss = map (map (curry (op -->) fpT)) ctr_Tss;
2d0f0d6fdf3e correctly resolve selector names in default value equations
blanchet
parents: 57824
diff changeset
  1340
            val sel_bTs =
2d0f0d6fdf3e correctly resolve selector names in default value equations
blanchet
parents: 57824
diff changeset
  1341
              flat sel_bindingss ~~ flat sel_Tss
2d0f0d6fdf3e correctly resolve selector names in default value equations
blanchet
parents: 57824
diff changeset
  1342
              |> filter_out (Binding.is_empty o fst)
2d0f0d6fdf3e correctly resolve selector names in default value equations
blanchet
parents: 57824
diff changeset
  1343
              |> distinct (Binding.eq_name o pairself fst);
2d0f0d6fdf3e correctly resolve selector names in default value equations
blanchet
parents: 57824
diff changeset
  1344
            val sel_default_lthy = fake_local_theory_for_sel_defaults sel_bTs lthy;
2d0f0d6fdf3e correctly resolve selector names in default value equations
blanchet
parents: 57824
diff changeset
  1345
2d0f0d6fdf3e correctly resolve selector names in default value equations
blanchet
parents: 57824
diff changeset
  1346
            val sel_default_eqs = map (prepare_term sel_default_lthy) raw_sel_default_eqs;
55469
b19dd108f0c2 aligned the syntax for 'free_constructors' on the 'datatype_new' and 'codatatype' syntax
blanchet
parents: 55468
diff changeset
  1347
57200
aab87ffa60cc use 'where' clause for selector default value syntax
blanchet
parents: 57199
diff changeset
  1348
            fun ctr_spec_of disc_b ctr0 sel_bs = ((disc_b, ctr0), sel_bs);
aab87ffa60cc use 'where' clause for selector default value syntax
blanchet
parents: 57199
diff changeset
  1349
            val ctr_specs = map3 ctr_spec_of disc_bindings ctrs0 sel_bindingss;
49123
263b0e330d8b more work on sugar + simplify Trueprop + eq idiom everywhere
blanchet
parents: 49121
diff changeset
  1350
          in
57200
aab87ffa60cc use 'where' clause for selector default value syntax
blanchet
parents: 57199
diff changeset
  1351
            free_constructors tacss ((((discs_sels, no_code), standard_binding), ctr_specs),
aab87ffa60cc use 'where' clause for selector default value syntax
blanchet
parents: 57199
diff changeset
  1352
              sel_default_eqs) lthy
49123
263b0e330d8b more work on sugar + simplify Trueprop + eq idiom everywhere
blanchet
parents: 49121
diff changeset
  1353
          end;
49121
9e0acaa470ab more work on FP sugar
blanchet
parents: 49119
diff changeset
  1354
57152
de1ed2c1c3bf generate 'sel_set' theorem for (co)datatypes
desharna
parents: 57094
diff changeset
  1355
        fun derive_maps_sets_rels (ctr_sugar as {case_cong, discs, selss, ctrs, exhaust, disc_thmss,
57631
959caab43a3d use the noted theorem whenever possible, also in 'BNF_Def'
blanchet
parents: 57568
diff changeset
  1356
            sel_thmss, injects, distincts, ...} : ctr_sugar, lthy) =
51835
56523caf372f Added maps, sets, rels to "simps" thm collection
blanchet
parents: 51833
diff changeset
  1357
          if live = 0 then
51840
b304fb6c5ef5 renamed records
blanchet
parents: 51839
diff changeset
  1358
            ((([], [], [], []), ctr_sugar), lthy)
51835
56523caf372f Added maps, sets, rels to "simps" thm collection
blanchet
parents: 51833
diff changeset
  1359
          else
56523caf372f Added maps, sets, rels to "simps" thm collection
blanchet
parents: 51833
diff changeset
  1360
            let
56523caf372f Added maps, sets, rels to "simps" thm collection
blanchet
parents: 51833
diff changeset
  1361
              val rel_flip = rel_flip_of_bnf fp_bnf;
56523caf372f Added maps, sets, rels to "simps" thm collection
blanchet
parents: 51833
diff changeset
  1362
              val nones = replicate live NONE;
49585
5c4a12550491 generate high-level "maps", "sets", and "rels" properties
blanchet
parents: 49583
diff changeset
  1363
51835
56523caf372f Added maps, sets, rels to "simps" thm collection
blanchet
parents: 51833
diff changeset
  1364
              val ctor_cong =
52207
21026c312cc3 tuning -- avoided unreadable true/false all over the place for LFP/GFP
blanchet
parents: 52197
diff changeset
  1365
                if fp = Least_FP then
51835
56523caf372f Added maps, sets, rels to "simps" thm collection
blanchet
parents: 51833
diff changeset
  1366
                  Drule.dummy_thm
56523caf372f Added maps, sets, rels to "simps" thm collection
blanchet
parents: 51833
diff changeset
  1367
                else
56523caf372f Added maps, sets, rels to "simps" thm collection
blanchet
parents: 51833
diff changeset
  1368
                  let val ctor' = mk_ctor Bs ctor in
56523caf372f Added maps, sets, rels to "simps" thm collection
blanchet
parents: 51833
diff changeset
  1369
                    cterm_instantiate_pos [NONE, NONE, SOME (certify lthy ctor')] arg_cong
56523caf372f Added maps, sets, rels to "simps" thm collection
blanchet
parents: 51833
diff changeset
  1370
                  end;
49585
5c4a12550491 generate high-level "maps", "sets", and "rels" properties
blanchet
parents: 49583
diff changeset
  1371
55803
74d3fe9031d8 joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents: 55772
diff changeset
  1372
              fun mk_cIn ctor k xs =
74d3fe9031d8 joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents: 55772
diff changeset
  1373
                let val absT = domain_type (fastype_of ctor) in
74d3fe9031d8 joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents: 55772
diff changeset
  1374
                  mk_absumprod absT abs n k xs
74d3fe9031d8 joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents: 55772
diff changeset
  1375
                  |> fp = Greatest_FP ? curry (op $) ctor
74d3fe9031d8 joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents: 55772
diff changeset
  1376
                  |> certify lthy
74d3fe9031d8 joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents: 55772
diff changeset
  1377
                end;
49585
5c4a12550491 generate high-level "maps", "sets", and "rels" properties
blanchet
parents: 49583
diff changeset
  1378
55803
74d3fe9031d8 joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents: 55772
diff changeset
  1379
              val cxIns = map2 (mk_cIn ctor) ks xss;
56638
092a306bcc3d generate size instances for new-style datatypes
blanchet
parents: 56637
diff changeset
  1380
              val cyIns = map2 (mk_cIn (Term.map_types B_ify ctor)) ks yss;
49585
5c4a12550491 generate high-level "maps", "sets", and "rels" properties
blanchet
parents: 49583
diff changeset
  1381
51835
56523caf372f Added maps, sets, rels to "simps" thm collection
blanchet
parents: 51833
diff changeset
  1382
              fun mk_map_thm ctr_def' cxIn =
56523caf372f Added maps, sets, rels to "simps" thm collection
blanchet
parents: 51833
diff changeset
  1383
                fold_thms lthy [ctr_def']
55803
74d3fe9031d8 joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents: 55772
diff changeset
  1384
                  (unfold_thms lthy (o_apply :: pre_map_def ::
56978
0c1b4987e6b2 proper handling of 'ctor_dtor' for mutual corecursive cases where not all type variables are present in all low-level constructors (cf. 'coind_wit1' etc. in 'Misc_Codatatypes.thy')
blanchet
parents: 56956
diff changeset
  1385
                       (if fp = Least_FP then [] else [dtor_ctor]) @ sumprod_thms_map @
55803
74d3fe9031d8 joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents: 55772
diff changeset
  1386
                       abs_inverses)
51835
56523caf372f Added maps, sets, rels to "simps" thm collection
blanchet
parents: 51833
diff changeset
  1387
                     (cterm_instantiate_pos (nones @ [SOME cxIn])
56978
0c1b4987e6b2 proper handling of 'ctor_dtor' for mutual corecursive cases where not all type variables are present in all low-level constructors (cf. 'coind_wit1' etc. in 'Misc_Codatatypes.thy')
blanchet
parents: 56956
diff changeset
  1388
                        (if fp = Least_FP then fp_map_thm
0c1b4987e6b2 proper handling of 'ctor_dtor' for mutual corecursive cases where not all type variables are present in all low-level constructors (cf. 'coind_wit1' etc. in 'Misc_Codatatypes.thy')
blanchet
parents: 56956
diff changeset
  1389
                         else fp_map_thm RS ctor_cong RS (ctor_dtor RS sym RS trans))))
51835
56523caf372f Added maps, sets, rels to "simps" thm collection
blanchet
parents: 51833
diff changeset
  1390
                |> singleton (Proof_Context.export names_lthy no_defs_lthy);
49585
5c4a12550491 generate high-level "maps", "sets", and "rels" properties
blanchet
parents: 49583
diff changeset
  1391
57815
f97643a56615 generate nicer 'set' theorems for (co)datatypes
blanchet
parents: 57700
diff changeset
  1392
f97643a56615 generate nicer 'set' theorems for (co)datatypes
blanchet
parents: 57700
diff changeset
  1393
              fun mk_set0_thm fp_set_thm ctr_def' cxIn =
51835
56523caf372f Added maps, sets, rels to "simps" thm collection
blanchet
parents: 51833
diff changeset
  1394
                fold_thms lthy [ctr_def']
57397
5004aca20821 tuned variable names
blanchet
parents: 57303
diff changeset
  1395
                  (unfold_thms lthy (pre_set_defs @ fp_nesting_set_maps @ live_nesting_set_maps @
55966
972f0aa7091b balance tuples that represent curried functions
blanchet
parents: 55903
diff changeset
  1396
                       (if fp = Least_FP then [] else [dtor_ctor]) @ sumprod_thms_set @
57815
f97643a56615 generate nicer 'set' theorems for (co)datatypes
blanchet
parents: 57700
diff changeset
  1397
                       @{thms UN_Un sup_assoc[THEN sym]} @ abs_inverses)
51835
56523caf372f Added maps, sets, rels to "simps" thm collection
blanchet
parents: 51833
diff changeset
  1398
                     (cterm_instantiate_pos [SOME cxIn] fp_set_thm))
56523caf372f Added maps, sets, rels to "simps" thm collection
blanchet
parents: 51833
diff changeset
  1399
                |> singleton (Proof_Context.export names_lthy no_defs_lthy);
49585
5c4a12550491 generate high-level "maps", "sets", and "rels" properties
blanchet
parents: 49583
diff changeset
  1400
57815
f97643a56615 generate nicer 'set' theorems for (co)datatypes
blanchet
parents: 57700
diff changeset
  1401
              fun mk_set0_thms fp_set_thm = map2 (mk_set0_thm fp_set_thm) ctr_defs' cxIns;
49127
f7326a0d7f19 implemented "mk_half_distinct_tac"
blanchet
parents: 49126
diff changeset
  1402
51835
56523caf372f Added maps, sets, rels to "simps" thm collection
blanchet
parents: 51833
diff changeset
  1403
              val map_thms = map2 mk_map_thm ctr_defs' cxIns;
57815
f97643a56615 generate nicer 'set' theorems for (co)datatypes
blanchet
parents: 57700
diff changeset
  1404
              val set0_thmss = map mk_set0_thms fp_set_thms;
f97643a56615 generate nicer 'set' theorems for (co)datatypes
blanchet
parents: 57700
diff changeset
  1405
              val set0_thms = flat set0_thmss;
f97643a56615 generate nicer 'set' theorems for (co)datatypes
blanchet
parents: 57700
diff changeset
  1406
              val set_thms = set0_thms
f97643a56615 generate nicer 'set' theorems for (co)datatypes
blanchet
parents: 57700
diff changeset
  1407
                |> map (unfold_thms lthy @{thms insert_is_Un[THEN sym] Un_empty_left
f97643a56615 generate nicer 'set' theorems for (co)datatypes
blanchet
parents: 57700
diff changeset
  1408
                  Un_insert_left});
51835
56523caf372f Added maps, sets, rels to "simps" thm collection
blanchet
parents: 51833
diff changeset
  1409
57152
de1ed2c1c3bf generate 'sel_set' theorem for (co)datatypes
desharna
parents: 57094
diff changeset
  1410
              val sets = map (mk_set (snd (Term.dest_Type fpT))) (sets_of_bnf fp_bnf);
56991
8e9ca31e9b8e generate 'disc_map_iff[simp]' theorem for (co)datatypes
desharna
parents: 56978
diff changeset
  1411
57525
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1412
              val set_empty_thms =
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1413
                let
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1414
                  val ctr_argT_namess = map ((fn Ts => fold Term.add_tfree_namesT Ts []) o
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1415
                    binder_types o fastype_of) ctrs;
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1416
                  val setTs = map (HOLogic.dest_setT o range_type o fastype_of) sets;
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1417
                  val setT_names = map (fn T => the_single (Term.add_tfree_namesT T [])) setTs;
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1418
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1419
                  fun mk_set_empty_goal disc set T =
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1420
                    Logic.mk_implies (HOLogic.mk_Trueprop (disc $ u),
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1421
                      mk_Trueprop_eq (set $ u, HOLogic.mk_set T []));
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1422
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1423
                  val goals =
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1424
                    if null discs then
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1425
                      []
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1426
                    else
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1427
                      map_filter I (flat
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1428
                        (map2 (fn names => fn disc =>
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1429
                          map3 (fn name => fn setT => fn set =>
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1430
                            if member (op =) names name then NONE
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1431
                            else SOME (mk_set_empty_goal disc set setT))
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1432
                          setT_names setTs sets)
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1433
                        ctr_argT_namess discs));
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1434
                in
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1435
                  if null goals then
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1436
                    []
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1437
                  else
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1438
                    Goal.prove_sorry lthy [] [] (Logic.mk_conjunction_balanced goals)
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1439
                      (fn {context = ctxt, prems = _} =>
57815
f97643a56615 generate nicer 'set' theorems for (co)datatypes
blanchet
parents: 57700
diff changeset
  1440
                        mk_set_empty_tac ctxt (certify ctxt u) exhaust set0_thms (flat disc_thmss))
57525
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1441
                      |> Conjunction.elim_balanced (length goals)
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1442
                      |> Proof_Context.export names_lthy lthy
57565
ab7f39114507 refactor commonly used functions
desharna
parents: 57563
diff changeset
  1443
                      |> map Thm.close_derivation
57525
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1444
                end;
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1445
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1446
              val rel_infos = (ctr_defs' ~~ cxIns, ctr_defs' ~~ cyIns);
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1447
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1448
              fun mk_rel_thm postproc ctr_defs' cxIn cyIn =
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1449
                fold_thms lthy ctr_defs'
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1450
                  (unfold_thms lthy (pre_rel_def :: abs_inverse ::
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1451
                       (if fp = Least_FP then [] else [dtor_ctor]) @ sumprod_thms_rel @
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1452
                       @{thms vimage2p_def sum.inject sum.distinct(1)[THEN eq_False[THEN iffD2]]})
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1453
                     (cterm_instantiate_pos (nones @ [SOME cxIn, SOME cyIn]) fp_rel_thm))
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1454
                |> postproc
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1455
                |> singleton (Proof_Context.export names_lthy no_defs_lthy);
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1456
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1457
              fun mk_rel_inject_thm ((ctr_def', cxIn), (_, cyIn)) =
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1458
                mk_rel_thm (unfold_thms lthy @{thms eq_sym_Unity_conv}) [ctr_def'] cxIn cyIn;
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1459
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1460
              fun mk_rel_intro_thm thm =
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1461
                let
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1462
                  fun impl thm = rotate_prems (~1) (impl (rotate_prems 1 (conjI RS thm)))
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1463
                    handle THM _ => thm
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1464
                in
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1465
                  impl (thm RS iffD2)
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1466
                  handle THM _ => thm
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1467
                end;
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1468
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1469
              fun mk_half_rel_distinct_thm ((xctr_def', cxIn), (yctr_def', cyIn)) =
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1470
                mk_rel_thm (fn thm => thm RS @{thm eq_False[THEN iffD1]}) [xctr_def', yctr_def']
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1471
                  cxIn cyIn;
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1472
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1473
              fun mk_other_half_rel_distinct_thm thm =
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1474
                flip_rels lthy live thm
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1475
                RS (rel_flip RS sym RS @{thm arg_cong[of _ _ Not]} RS iffD2);
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1476
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1477
              val rel_inject_thms = map mk_rel_inject_thm (op ~~ rel_infos);
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1478
              val rel_intro_thms = map mk_rel_intro_thm rel_inject_thms;
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1479
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1480
              val half_rel_distinct_thmss =
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1481
                map (map mk_half_rel_distinct_thm) (mk_half_pairss rel_infos);
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1482
              val other_half_rel_distinct_thmss =
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1483
                map (map mk_other_half_rel_distinct_thm) half_rel_distinct_thmss;
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1484
              val (rel_distinct_thms, _) =
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1485
                join_halves n half_rel_distinct_thmss other_half_rel_distinct_thmss;
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1486
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1487
              val rel_eq_thms =
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1488
                map (fn th => th RS @{thm eq_False[THEN iffD2]}) rel_distinct_thms @
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1489
                map2 (fn th => fn 0 => th RS @{thm eq_True[THEN iffD2]} | _ => th)
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1490
                  rel_inject_thms ms;
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1491
57563
e3e7c86168b4 generate 'rel_sel' theorem for (co)datatypes
desharna
parents: 57562
diff changeset
  1492
              val (disc_map_iff_thms, sel_map_thms, sel_set_thms, rel_sel_thms,
e3e7c86168b4 generate 'rel_sel' theorem for (co)datatypes
desharna
parents: 57562
diff changeset
  1493
                (rel_cases_thm, rel_cases_attrs)) =
56991
8e9ca31e9b8e generate 'disc_map_iff[simp]' theorem for (co)datatypes
desharna
parents: 56978
diff changeset
  1494
                let
8e9ca31e9b8e generate 'disc_map_iff[simp]' theorem for (co)datatypes
desharna
parents: 56978
diff changeset
  1495
                  val (((Ds, As), Bs), names_lthy) = lthy
8e9ca31e9b8e generate 'disc_map_iff[simp]' theorem for (co)datatypes
desharna
parents: 56978
diff changeset
  1496
                    |> mk_TFrees (dead_of_bnf fp_bnf)
8e9ca31e9b8e generate 'disc_map_iff[simp]' theorem for (co)datatypes
desharna
parents: 56978
diff changeset
  1497
                    ||>> mk_TFrees (live_of_bnf fp_bnf)
8e9ca31e9b8e generate 'disc_map_iff[simp]' theorem for (co)datatypes
desharna
parents: 56978
diff changeset
  1498
                    ||>> mk_TFrees (live_of_bnf fp_bnf);
57046
b3613d7e108b generate 'sel_map[simp]' theorem for (co)datatypes and tuning 'disc_map_iff'
desharna
parents: 56991
diff changeset
  1499
                  val TA as Type (_, ADs) = mk_T_of_bnf Ds As fp_bnf;
57525
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1500
                  val TB as Type (_, BDs) = mk_T_of_bnf Ds Bs fp_bnf;
56991
8e9ca31e9b8e generate 'disc_map_iff[simp]' theorem for (co)datatypes
desharna
parents: 56978
diff changeset
  1501
                  val fTs = map2 (curry op -->) As Bs;
57563
e3e7c86168b4 generate 'rel_sel' theorem for (co)datatypes
desharna
parents: 57562
diff changeset
  1502
                  val rel = mk_rel_of_bnf Ds As Bs fp_bnf;
e3e7c86168b4 generate 'rel_sel' theorem for (co)datatypes
desharna
parents: 57562
diff changeset
  1503
                  val ((((fs, Rs), ta), tb), names_lthy) = names_lthy
56991
8e9ca31e9b8e generate 'disc_map_iff[simp]' theorem for (co)datatypes
desharna
parents: 56978
diff changeset
  1504
                    |> mk_Frees "f" fTs
57563
e3e7c86168b4 generate 'rel_sel' theorem for (co)datatypes
desharna
parents: 57562
diff changeset
  1505
                    ||>> mk_Frees "R" (map2 mk_pred2T As Bs)
e3e7c86168b4 generate 'rel_sel' theorem for (co)datatypes
desharna
parents: 57562
diff changeset
  1506
                    ||>> yield_singleton (mk_Frees "a") TA
e3e7c86168b4 generate 'rel_sel' theorem for (co)datatypes
desharna
parents: 57562
diff changeset
  1507
                    ||>> yield_singleton (mk_Frees "b") TB;
56991
8e9ca31e9b8e generate 'disc_map_iff[simp]' theorem for (co)datatypes
desharna
parents: 56978
diff changeset
  1508
                  val map_term = mk_map_of_bnf Ds As Bs fp_bnf;
57563
e3e7c86168b4 generate 'rel_sel' theorem for (co)datatypes
desharna
parents: 57562
diff changeset
  1509
                  val discAs = map (mk_disc_or_sel ADs) discs;
e3e7c86168b4 generate 'rel_sel' theorem for (co)datatypes
desharna
parents: 57562
diff changeset
  1510
                  val selAss = map (map (mk_disc_or_sel ADs)) selss;
e3e7c86168b4 generate 'rel_sel' theorem for (co)datatypes
desharna
parents: 57562
diff changeset
  1511
                  val discAs_selAss = flat (map2 (map o pair) discAs selAss);
e3e7c86168b4 generate 'rel_sel' theorem for (co)datatypes
desharna
parents: 57562
diff changeset
  1512
e3e7c86168b4 generate 'rel_sel' theorem for (co)datatypes
desharna
parents: 57562
diff changeset
  1513
                  val rel_sel_thms =
e3e7c86168b4 generate 'rel_sel' theorem for (co)datatypes
desharna
parents: 57562
diff changeset
  1514
                    let
e3e7c86168b4 generate 'rel_sel' theorem for (co)datatypes
desharna
parents: 57562
diff changeset
  1515
                      val discBs = map (mk_disc_or_sel BDs) discs;
e3e7c86168b4 generate 'rel_sel' theorem for (co)datatypes
desharna
parents: 57562
diff changeset
  1516
                      val selBss = map (map (mk_disc_or_sel BDs)) selss;
e3e7c86168b4 generate 'rel_sel' theorem for (co)datatypes
desharna
parents: 57562
diff changeset
  1517
                      val n = length discAs;
e3e7c86168b4 generate 'rel_sel' theorem for (co)datatypes
desharna
parents: 57562
diff changeset
  1518
e3e7c86168b4 generate 'rel_sel' theorem for (co)datatypes
desharna
parents: 57562
diff changeset
  1519
                      fun mk_rhs n k discA selAs discB selBs =
e3e7c86168b4 generate 'rel_sel' theorem for (co)datatypes
desharna
parents: 57562
diff changeset
  1520
                        (if k = n then [] else [HOLogic.mk_eq (discA $ ta, discB $ tb)]) @
e3e7c86168b4 generate 'rel_sel' theorem for (co)datatypes
desharna
parents: 57562
diff changeset
  1521
                        (case (selAs, selBs) of
e3e7c86168b4 generate 'rel_sel' theorem for (co)datatypes
desharna
parents: 57562
diff changeset
  1522
                           ([], []) => []
e3e7c86168b4 generate 'rel_sel' theorem for (co)datatypes
desharna
parents: 57562
diff changeset
  1523
                         | (_ :: _, _ :: _) => [Library.foldr HOLogic.mk_imp
e3e7c86168b4 generate 'rel_sel' theorem for (co)datatypes
desharna
parents: 57562
diff changeset
  1524
                           (if n = 1 then [] else [discA $ ta, discB $ tb],
e3e7c86168b4 generate 'rel_sel' theorem for (co)datatypes
desharna
parents: 57562
diff changeset
  1525
                            Library.foldr1 HOLogic.mk_conj (map2 (build_rel_app names_lthy Rs [])
e3e7c86168b4 generate 'rel_sel' theorem for (co)datatypes
desharna
parents: 57562
diff changeset
  1526
                              (map (rapp ta) selAs) (map (rapp tb) selBs)))]);
e3e7c86168b4 generate 'rel_sel' theorem for (co)datatypes
desharna
parents: 57562
diff changeset
  1527
e3e7c86168b4 generate 'rel_sel' theorem for (co)datatypes
desharna
parents: 57562
diff changeset
  1528
                      val goals = if n = 0 then []
e3e7c86168b4 generate 'rel_sel' theorem for (co)datatypes
desharna
parents: 57562
diff changeset
  1529
                        else [mk_Trueprop_eq
e3e7c86168b4 generate 'rel_sel' theorem for (co)datatypes
desharna
parents: 57562
diff changeset
  1530
                          (build_rel_app names_lthy Rs [] ta tb,
e3e7c86168b4 generate 'rel_sel' theorem for (co)datatypes
desharna
parents: 57562
diff changeset
  1531
                           Library.foldr1 HOLogic.mk_conj
e3e7c86168b4 generate 'rel_sel' theorem for (co)datatypes
desharna
parents: 57562
diff changeset
  1532
                             (flat (map5 (mk_rhs n) (1 upto n) discAs selAss discBs selBss)))];
e3e7c86168b4 generate 'rel_sel' theorem for (co)datatypes
desharna
parents: 57562
diff changeset
  1533
                    in
e3e7c86168b4 generate 'rel_sel' theorem for (co)datatypes
desharna
parents: 57562
diff changeset
  1534
                      if null goals then
e3e7c86168b4 generate 'rel_sel' theorem for (co)datatypes
desharna
parents: 57562
diff changeset
  1535
                        []
e3e7c86168b4 generate 'rel_sel' theorem for (co)datatypes
desharna
parents: 57562
diff changeset
  1536
                      else
e3e7c86168b4 generate 'rel_sel' theorem for (co)datatypes
desharna
parents: 57562
diff changeset
  1537
                        Goal.prove_sorry lthy [] [] (Logic.mk_conjunction_balanced goals)
e3e7c86168b4 generate 'rel_sel' theorem for (co)datatypes
desharna
parents: 57562
diff changeset
  1538
                          (fn {context = ctxt, prems = _} =>
e3e7c86168b4 generate 'rel_sel' theorem for (co)datatypes
desharna
parents: 57562
diff changeset
  1539
                            mk_rel_sel_tac ctxt (certify ctxt ta) (certify ctxt tb) exhaust
e3e7c86168b4 generate 'rel_sel' theorem for (co)datatypes
desharna
parents: 57562
diff changeset
  1540
                              (flat disc_thmss) (flat sel_thmss) rel_inject_thms distincts
e3e7c86168b4 generate 'rel_sel' theorem for (co)datatypes
desharna
parents: 57562
diff changeset
  1541
                              rel_distinct_thms)
e3e7c86168b4 generate 'rel_sel' theorem for (co)datatypes
desharna
parents: 57562
diff changeset
  1542
                          |> Conjunction.elim_balanced (length goals)
e3e7c86168b4 generate 'rel_sel' theorem for (co)datatypes
desharna
parents: 57562
diff changeset
  1543
                          |> Proof_Context.export names_lthy lthy
e3e7c86168b4 generate 'rel_sel' theorem for (co)datatypes
desharna
parents: 57562
diff changeset
  1544
                    end;
57094
589ec121ce1a don't generate discriminators and selectors for 'datatype_new' unless the user asked for it
blanchet
parents: 57091
diff changeset
  1545
57525
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1546
                  val (rel_cases_thm, rel_cases_attrs) =
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1547
                    let
57563
e3e7c86168b4 generate 'rel_sel' theorem for (co)datatypes
desharna
parents: 57562
diff changeset
  1548
                      val (thesis, names_lthy) = apfst HOLogic.mk_Trueprop
e3e7c86168b4 generate 'rel_sel' theorem for (co)datatypes
desharna
parents: 57562
diff changeset
  1549
                        (yield_singleton (mk_Frees "thesis") HOLogic.boolT names_lthy);
57525
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1550
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1551
                      val rel_Rs_a_b = list_comb (rel, Rs) $ ta $ tb;
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1552
                      val ctrAs = map (mk_ctr ADs) ctrs;
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1553
                      val ctrBs = map (mk_ctr BDs) ctrs;
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1554
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1555
                      fun mk_assms ctrA ctrB ctxt =
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1556
                        let
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1557
                          val argA_Ts = binder_types (fastype_of ctrA);
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1558
                          val argB_Ts = binder_types (fastype_of ctrB);
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1559
                          val ((argAs, argBs), names_ctxt) =  ctxt
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1560
                            |> mk_Frees "x" argA_Ts
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1561
                            ||>> mk_Frees "y" argB_Ts;
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1562
                          val ctrA_args = list_comb (ctrA, argAs);
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1563
                          val ctrB_args = list_comb (ctrB, argBs);
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1564
                        in
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1565
                          (fold_rev Logic.all (argAs @ argBs) (Logic.list_implies
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1566
                             (mk_Trueprop_eq (ta, ctrA_args) ::
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1567
                                mk_Trueprop_eq (tb, ctrB_args) ::
57565
ab7f39114507 refactor commonly used functions
desharna
parents: 57563
diff changeset
  1568
                                  map2 (HOLogic.mk_Trueprop oo build_rel_app lthy Rs [])
ab7f39114507 refactor commonly used functions
desharna
parents: 57563
diff changeset
  1569
                                    argAs argBs,
57525
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1570
                              thesis)),
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1571
                           names_ctxt)
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1572
                        end;
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1573
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1574
                      val (assms, names_lthy) = fold_map2 mk_assms ctrAs ctrBs names_lthy;
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1575
                      val goal = Logic.list_implies (HOLogic.mk_Trueprop rel_Rs_a_b :: assms,
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1576
                        thesis);
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1577
                      val thm = Goal.prove_sorry lthy [] [] goal
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1578
                          (fn {context = ctxt, prems = _} =>
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1579
                            mk_rel_cases_tac ctxt (certify ctxt ta) (certify ctxt tb) exhaust
57824
615223745d4e made tactic more robust w.r.t. dead variables; tuned;
desharna
parents: 57668
diff changeset
  1580
                              injects rel_inject_thms distincts rel_distinct_thms
615223745d4e made tactic more robust w.r.t. dead variables; tuned;
desharna
parents: 57668
diff changeset
  1581
                              (map rel_eq_of_bnf live_nesting_bnfs))
57525
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1582
                        |> singleton (Proof_Context.export names_lthy lthy)
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1583
                        |> Thm.close_derivation;
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1584
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1585
                      val ctr_names = quasi_unambiguous_case_names ((map name_of_ctr) ctrAs);
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1586
                      val case_names_attr = Attrib.internal (K (Rule_Cases.case_names ctr_names));
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1587
                      val consumes_attr = Attrib.internal (K (Rule_Cases.consumes 1));
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1588
                      val cases_pred_attr = Attrib.internal o K o Induct.cases_pred;
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1589
                    in
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1590
                      (thm, [consumes_attr, case_names_attr, cases_pred_attr ""])
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1591
                    end;
f9dd8a33f820 generate 'rel_cases' theorem for (co)datatypes
desharna
parents: 57493
diff changeset
  1592
57046
b3613d7e108b generate 'sel_map[simp]' theorem for (co)datatypes and tuning 'disc_map_iff'
desharna
parents: 56991
diff changeset
  1593
                  val disc_map_iff_thms =
56991
8e9ca31e9b8e generate 'disc_map_iff[simp]' theorem for (co)datatypes
desharna
parents: 56978
diff changeset
  1594
                    let
57046
b3613d7e108b generate 'sel_map[simp]' theorem for (co)datatypes and tuning 'disc_map_iff'
desharna
parents: 56991
diff changeset
  1595
                      val discsB = map (mk_disc_or_sel BDs) discs;
57563
e3e7c86168b4 generate 'rel_sel' theorem for (co)datatypes
desharna
parents: 57562
diff changeset
  1596
                      val discsA_t = map (fn disc1 => Term.betapply (disc1, ta)) discAs;
57094
589ec121ce1a don't generate discriminators and selectors for 'datatype_new' unless the user asked for it
blanchet
parents: 57091
diff changeset
  1597
57046
b3613d7e108b generate 'sel_map[simp]' theorem for (co)datatypes and tuning 'disc_map_iff'
desharna
parents: 56991
diff changeset
  1598
                      fun mk_goal (discA_t, discB) =
57205
blanchet
parents: 57200
diff changeset
  1599
                        if head_of discA_t aconv HOLogic.Not orelse is_refl_bool discA_t then
57094
589ec121ce1a don't generate discriminators and selectors for 'datatype_new' unless the user asked for it
blanchet
parents: 57091
diff changeset
  1600
                          NONE
589ec121ce1a don't generate discriminators and selectors for 'datatype_new' unless the user asked for it
blanchet
parents: 57091
diff changeset
  1601
                        else
589ec121ce1a don't generate discriminators and selectors for 'datatype_new' unless the user asked for it
blanchet
parents: 57091
diff changeset
  1602
                          SOME (mk_Trueprop_eq
589ec121ce1a don't generate discriminators and selectors for 'datatype_new' unless the user asked for it
blanchet
parents: 57091
diff changeset
  1603
                            (betapply (discB, (Term.list_comb (map_term, fs) $ ta)), discA_t));
589ec121ce1a don't generate discriminators and selectors for 'datatype_new' unless the user asked for it
blanchet
parents: 57091
diff changeset
  1604
57046
b3613d7e108b generate 'sel_map[simp]' theorem for (co)datatypes and tuning 'disc_map_iff'
desharna
parents: 56991
diff changeset
  1605
                      val goals = map_filter mk_goal (discsA_t ~~ discsB);
56991
8e9ca31e9b8e generate 'disc_map_iff[simp]' theorem for (co)datatypes
desharna
parents: 56978
diff changeset
  1606
                    in
57199
blanchet
parents: 57152
diff changeset
  1607
                      if null goals then
blanchet
parents: 57152
diff changeset
  1608
                        []
56991
8e9ca31e9b8e generate 'disc_map_iff[simp]' theorem for (co)datatypes
desharna
parents: 56978
diff changeset
  1609
                      else
57046
b3613d7e108b generate 'sel_map[simp]' theorem for (co)datatypes and tuning 'disc_map_iff'
desharna
parents: 56991
diff changeset
  1610
                        Goal.prove_sorry lthy [] [] (Logic.mk_conjunction_balanced goals)
b3613d7e108b generate 'sel_map[simp]' theorem for (co)datatypes and tuning 'disc_map_iff'
desharna
parents: 56991
diff changeset
  1611
                          (fn {context = ctxt, prems = _} =>
b3613d7e108b generate 'sel_map[simp]' theorem for (co)datatypes and tuning 'disc_map_iff'
desharna
parents: 56991
diff changeset
  1612
                            mk_disc_map_iff_tac ctxt (certify ctxt ta) exhaust (flat disc_thmss)
b3613d7e108b generate 'sel_map[simp]' theorem for (co)datatypes and tuning 'disc_map_iff'
desharna
parents: 56991
diff changeset
  1613
                              map_thms)
b3613d7e108b generate 'sel_map[simp]' theorem for (co)datatypes and tuning 'disc_map_iff'
desharna
parents: 56991
diff changeset
  1614
                          |> Conjunction.elim_balanced (length goals)
b3613d7e108b generate 'sel_map[simp]' theorem for (co)datatypes and tuning 'disc_map_iff'
desharna
parents: 56991
diff changeset
  1615
                          |> Proof_Context.export names_lthy lthy
56991
8e9ca31e9b8e generate 'disc_map_iff[simp]' theorem for (co)datatypes
desharna
parents: 56978
diff changeset
  1616
                    end;
57094
589ec121ce1a don't generate discriminators and selectors for 'datatype_new' unless the user asked for it
blanchet
parents: 57091
diff changeset
  1617
57046
b3613d7e108b generate 'sel_map[simp]' theorem for (co)datatypes and tuning 'disc_map_iff'
desharna
parents: 56991
diff changeset
  1618
                  val sel_map_thms =
b3613d7e108b generate 'sel_map[simp]' theorem for (co)datatypes and tuning 'disc_map_iff'
desharna
parents: 56991
diff changeset
  1619
                    let
57152
de1ed2c1c3bf generate 'sel_set' theorem for (co)datatypes
desharna
parents: 57094
diff changeset
  1620
                      fun mk_goal (discA, selA) =
57046
b3613d7e108b generate 'sel_map[simp]' theorem for (co)datatypes and tuning 'disc_map_iff'
desharna
parents: 56991
diff changeset
  1621
                        let
57199
blanchet
parents: 57152
diff changeset
  1622
                          val prem = Term.betapply (discA, ta);
57046
b3613d7e108b generate 'sel_map[simp]' theorem for (co)datatypes and tuning 'disc_map_iff'
desharna
parents: 56991
diff changeset
  1623
                          val selB = mk_disc_or_sel BDs selA;
b3613d7e108b generate 'sel_map[simp]' theorem for (co)datatypes and tuning 'disc_map_iff'
desharna
parents: 56991
diff changeset
  1624
                          val lhs = selB $ (Term.list_comb (map_term, fs) $ ta);
b3613d7e108b generate 'sel_map[simp]' theorem for (co)datatypes and tuning 'disc_map_iff'
desharna
parents: 56991
diff changeset
  1625
                          val lhsT = fastype_of lhs;
b3613d7e108b generate 'sel_map[simp]' theorem for (co)datatypes and tuning 'disc_map_iff'
desharna
parents: 56991
diff changeset
  1626
                          val map_rhsT = map_atyps (perhaps (AList.lookup (op =) (Bs ~~ As))) lhsT;
57303
498a62e65f5f tune the implementation of 'rel_coinduct'
desharna
parents: 57302
diff changeset
  1627
                          val map_rhs = build_map lthy []
57046
b3613d7e108b generate 'sel_map[simp]' theorem for (co)datatypes and tuning 'disc_map_iff'
desharna
parents: 56991
diff changeset
  1628
                            (the o (AList.lookup (op =) ((As ~~ Bs) ~~ fs))) (map_rhsT, lhsT);
b3613d7e108b generate 'sel_map[simp]' theorem for (co)datatypes and tuning 'disc_map_iff'
desharna
parents: 56991
diff changeset
  1629
                          val rhs = (case map_rhs of
b3613d7e108b generate 'sel_map[simp]' theorem for (co)datatypes and tuning 'disc_map_iff'
desharna
parents: 56991
diff changeset
  1630
                            Const (@{const_name id}, _) => selA $ ta
b3613d7e108b generate 'sel_map[simp]' theorem for (co)datatypes and tuning 'disc_map_iff'
desharna
parents: 56991
diff changeset
  1631
                            | _ => map_rhs $ (selA $ ta));
57199
blanchet
parents: 57152
diff changeset
  1632
                          val concl = mk_Trueprop_eq (lhs, rhs);
57046
b3613d7e108b generate 'sel_map[simp]' theorem for (co)datatypes and tuning 'disc_map_iff'
desharna
parents: 56991
diff changeset
  1633
                        in
57205
blanchet
parents: 57200
diff changeset
  1634
                          if is_refl_bool prem then concl
57199
blanchet
parents: 57152
diff changeset
  1635
                          else Logic.mk_implies (HOLogic.mk_Trueprop prem, concl)
57046
b3613d7e108b generate 'sel_map[simp]' theorem for (co)datatypes and tuning 'disc_map_iff'
desharna
parents: 56991
diff changeset
  1636
                        end;
57563
e3e7c86168b4 generate 'rel_sel' theorem for (co)datatypes
desharna
parents: 57562
diff changeset
  1637
                      val goals = map mk_goal discAs_selAss;
57046
b3613d7e108b generate 'sel_map[simp]' theorem for (co)datatypes and tuning 'disc_map_iff'
desharna
parents: 56991
diff changeset
  1638
                    in
57199
blanchet
parents: 57152
diff changeset
  1639
                      if null goals then
blanchet
parents: 57152
diff changeset
  1640
                        []
57046
b3613d7e108b generate 'sel_map[simp]' theorem for (co)datatypes and tuning 'disc_map_iff'
desharna
parents: 56991
diff changeset
  1641
                      else
b3613d7e108b generate 'sel_map[simp]' theorem for (co)datatypes and tuning 'disc_map_iff'
desharna
parents: 56991
diff changeset
  1642
                        Goal.prove_sorry lthy [] [] (Logic.mk_conjunction_balanced goals)
b3613d7e108b generate 'sel_map[simp]' theorem for (co)datatypes and tuning 'disc_map_iff'
desharna
parents: 56991
diff changeset
  1643
                          (fn {context = ctxt, prems = _} =>
b3613d7e108b generate 'sel_map[simp]' theorem for (co)datatypes and tuning 'disc_map_iff'
desharna
parents: 56991
diff changeset
  1644
                            mk_sel_map_tac ctxt (certify ctxt ta) exhaust (flat disc_thmss)
b3613d7e108b generate 'sel_map[simp]' theorem for (co)datatypes and tuning 'disc_map_iff'
desharna
parents: 56991
diff changeset
  1645
                              map_thms (flat sel_thmss))
b3613d7e108b generate 'sel_map[simp]' theorem for (co)datatypes and tuning 'disc_map_iff'
desharna
parents: 56991
diff changeset
  1646
                          |> Conjunction.elim_balanced (length goals)
b3613d7e108b generate 'sel_map[simp]' theorem for (co)datatypes and tuning 'disc_map_iff'
desharna
parents: 56991
diff changeset
  1647
                          |> Proof_Context.export names_lthy lthy
b3613d7e108b generate 'sel_map[simp]' theorem for (co)datatypes and tuning 'disc_map_iff'
desharna
parents: 56991
diff changeset
  1648
                    end;
57199
blanchet
parents: 57152
diff changeset
  1649
57152
de1ed2c1c3bf generate 'sel_set' theorem for (co)datatypes
desharna
parents: 57094
diff changeset
  1650
                  val sel_set_thms =
de1ed2c1c3bf generate 'sel_set' theorem for (co)datatypes
desharna
parents: 57094
diff changeset
  1651
                    let
de1ed2c1c3bf generate 'sel_set' theorem for (co)datatypes
desharna
parents: 57094
diff changeset
  1652
                      val setsA = map (mk_set ADs) (sets_of_bnf fp_bnf);
57199
blanchet
parents: 57152
diff changeset
  1653
57152
de1ed2c1c3bf generate 'sel_set' theorem for (co)datatypes
desharna
parents: 57094
diff changeset
  1654
                      fun mk_goal discA selA setA ctxt =
de1ed2c1c3bf generate 'sel_set' theorem for (co)datatypes
desharna
parents: 57094
diff changeset
  1655
                        let
57199
blanchet
parents: 57152
diff changeset
  1656
                          val prem = Term.betapply (discA, ta);
57152
de1ed2c1c3bf generate 'sel_set' theorem for (co)datatypes
desharna
parents: 57094
diff changeset
  1657
                          val sel_rangeT = range_type (fastype_of selA);
de1ed2c1c3bf generate 'sel_set' theorem for (co)datatypes
desharna
parents: 57094
diff changeset
  1658
                          val A = HOLogic.dest_setT (range_type (fastype_of setA));
57199
blanchet
parents: 57152
diff changeset
  1659
57152
de1ed2c1c3bf generate 'sel_set' theorem for (co)datatypes
desharna
parents: 57094
diff changeset
  1660
                          fun travese_nested_types t ctxt =
de1ed2c1c3bf generate 'sel_set' theorem for (co)datatypes
desharna
parents: 57094
diff changeset
  1661
                            (case fastype_of t of
de1ed2c1c3bf generate 'sel_set' theorem for (co)datatypes
desharna
parents: 57094
diff changeset
  1662
                              Type (type_name, xs) =>
57568
2c65870c706f fix bug caused by bad context
desharna
parents: 57567
diff changeset
  1663
                              (case bnf_of ctxt type_name of
57152
de1ed2c1c3bf generate 'sel_set' theorem for (co)datatypes
desharna
parents: 57094
diff changeset
  1664
                                NONE => ([], ctxt)
de1ed2c1c3bf generate 'sel_set' theorem for (co)datatypes
desharna
parents: 57094
diff changeset
  1665
                              | SOME bnf =>
de1ed2c1c3bf generate 'sel_set' theorem for (co)datatypes
desharna
parents: 57094
diff changeset
  1666
                                let
de1ed2c1c3bf generate 'sel_set' theorem for (co)datatypes
desharna
parents: 57094
diff changeset
  1667
                                  fun seq_assm a set ctxt =
de1ed2c1c3bf generate 'sel_set' theorem for (co)datatypes
desharna
parents: 57094
diff changeset
  1668
                                    let
de1ed2c1c3bf generate 'sel_set' theorem for (co)datatypes
desharna
parents: 57094
diff changeset
  1669
                                      val X = HOLogic.dest_setT (range_type (fastype_of set));
de1ed2c1c3bf generate 'sel_set' theorem for (co)datatypes
desharna
parents: 57094
diff changeset
  1670
                                      val (x, ctxt') = yield_singleton (mk_Frees "x") X ctxt;
57567
d554b0097ad4 add mk_Trueprop_mem utility function
desharna
parents: 57565
diff changeset
  1671
                                      val assm = mk_Trueprop_mem (x, set $ a);
57152
de1ed2c1c3bf generate 'sel_set' theorem for (co)datatypes
desharna
parents: 57094
diff changeset
  1672
                                    in
de1ed2c1c3bf generate 'sel_set' theorem for (co)datatypes
desharna
parents: 57094
diff changeset
  1673
                                      travese_nested_types x ctxt'
de1ed2c1c3bf generate 'sel_set' theorem for (co)datatypes
desharna
parents: 57094
diff changeset
  1674
                                      |>> map (Logic.mk_implies o pair assm)
de1ed2c1c3bf generate 'sel_set' theorem for (co)datatypes
desharna
parents: 57094
diff changeset
  1675
                                    end;
de1ed2c1c3bf generate 'sel_set' theorem for (co)datatypes
desharna
parents: 57094
diff changeset
  1676
                                in
de1ed2c1c3bf generate 'sel_set' theorem for (co)datatypes
desharna
parents: 57094
diff changeset
  1677
                                  fold_map (seq_assm t o mk_set xs) (sets_of_bnf bnf) ctxt
de1ed2c1c3bf generate 'sel_set' theorem for (co)datatypes
desharna
parents: 57094
diff changeset
  1678
                                  |>> flat
de1ed2c1c3bf generate 'sel_set' theorem for (co)datatypes
desharna
parents: 57094
diff changeset
  1679
                                end)
de1ed2c1c3bf generate 'sel_set' theorem for (co)datatypes
desharna
parents: 57094
diff changeset
  1680
                            | T =>
de1ed2c1c3bf generate 'sel_set' theorem for (co)datatypes
desharna
parents: 57094
diff changeset
  1681
                              if T = A then
57567
d554b0097ad4 add mk_Trueprop_mem utility function
desharna
parents: 57565
diff changeset
  1682
                                ([mk_Trueprop_mem (t, setA $ ta)], ctxt)
57152
de1ed2c1c3bf generate 'sel_set' theorem for (co)datatypes
desharna
parents: 57094
diff changeset
  1683
                              else
de1ed2c1c3bf generate 'sel_set' theorem for (co)datatypes
desharna
parents: 57094
diff changeset
  1684
                                ([], ctxt));
57199
blanchet
parents: 57152
diff changeset
  1685
blanchet
parents: 57152
diff changeset
  1686
                          val (concls, ctxt') =
57152
de1ed2c1c3bf generate 'sel_set' theorem for (co)datatypes
desharna
parents: 57094
diff changeset
  1687
                            if sel_rangeT = A then
57567
d554b0097ad4 add mk_Trueprop_mem utility function
desharna
parents: 57565
diff changeset
  1688
                              ([mk_Trueprop_mem (selA $ ta, setA $ ta)], ctxt)
57152
de1ed2c1c3bf generate 'sel_set' theorem for (co)datatypes
desharna
parents: 57094
diff changeset
  1689
                            else
57568
2c65870c706f fix bug caused by bad context
desharna
parents: 57567
diff changeset
  1690
                              travese_nested_types (selA $ ta) ctxt;
57152
de1ed2c1c3bf generate 'sel_set' theorem for (co)datatypes
desharna
parents: 57094
diff changeset
  1691
                        in
de1ed2c1c3bf generate 'sel_set' theorem for (co)datatypes
desharna
parents: 57094
diff changeset
  1692
                          if exists_subtype_in [A] sel_rangeT then
57205
blanchet
parents: 57200
diff changeset
  1693
                            if is_refl_bool prem then
57199
blanchet
parents: 57152
diff changeset
  1694
                              (concls, ctxt')
57152
de1ed2c1c3bf generate 'sel_set' theorem for (co)datatypes
desharna
parents: 57094
diff changeset
  1695
                            else
57199
blanchet
parents: 57152
diff changeset
  1696
                              (map (Logic.mk_implies o pair (HOLogic.mk_Trueprop prem)) concls,
blanchet
parents: 57152
diff changeset
  1697
                               ctxt')
blanchet
parents: 57152
diff changeset
  1698
                          else
blanchet
parents: 57152
diff changeset
  1699
                            ([], ctxt)
57152
de1ed2c1c3bf generate 'sel_set' theorem for (co)datatypes
desharna
parents: 57094
diff changeset
  1700
                        end;
de1ed2c1c3bf generate 'sel_set' theorem for (co)datatypes
desharna
parents: 57094
diff changeset
  1701
                      val (goals, names_lthy) = apfst (flat o flat) (fold_map (fn (disc, sel) =>
57563
e3e7c86168b4 generate 'rel_sel' theorem for (co)datatypes
desharna
parents: 57562
diff changeset
  1702
                        fold_map (mk_goal disc sel) setsA) discAs_selAss names_lthy);
57152
de1ed2c1c3bf generate 'sel_set' theorem for (co)datatypes
desharna
parents: 57094
diff changeset
  1703
                    in
57199
blanchet
parents: 57152
diff changeset
  1704
                      if null goals then
blanchet
parents: 57152
diff changeset
  1705
                        []
57152
de1ed2c1c3bf generate 'sel_set' theorem for (co)datatypes
desharna
parents: 57094
diff changeset
  1706
                      else
de1ed2c1c3bf generate 'sel_set' theorem for (co)datatypes
desharna
parents: 57094
diff changeset
  1707
                        Goal.prove_sorry lthy [] [] (Logic.mk_conjunction_balanced goals)
de1ed2c1c3bf generate 'sel_set' theorem for (co)datatypes
desharna
parents: 57094
diff changeset
  1708
                          (fn {context = ctxt, prems = _} =>
de1ed2c1c3bf generate 'sel_set' theorem for (co)datatypes
desharna
parents: 57094
diff changeset
  1709
                            mk_sel_set_tac ctxt (certify ctxt ta) exhaust (flat disc_thmss)
57815
f97643a56615 generate nicer 'set' theorems for (co)datatypes
blanchet
parents: 57700
diff changeset
  1710
                              (flat sel_thmss) set0_thms)
57152
de1ed2c1c3bf generate 'sel_set' theorem for (co)datatypes
desharna
parents: 57094
diff changeset
  1711
                          |> Conjunction.elim_balanced (length goals)
de1ed2c1c3bf generate 'sel_set' theorem for (co)datatypes
desharna
parents: 57094
diff changeset
  1712
                          |> Proof_Context.export names_lthy lthy
de1ed2c1c3bf generate 'sel_set' theorem for (co)datatypes
desharna
parents: 57094
diff changeset
  1713
                    end;
56991
8e9ca31e9b8e generate 'disc_map_iff[simp]' theorem for (co)datatypes
desharna
parents: 56978
diff changeset
  1714
                in
57563
e3e7c86168b4 generate 'rel_sel' theorem for (co)datatypes
desharna
parents: 57562
diff changeset
  1715
                  (disc_map_iff_thms, sel_map_thms, sel_set_thms, rel_sel_thms,
e3e7c86168b4 generate 'rel_sel' theorem for (co)datatypes
desharna
parents: 57562
diff changeset
  1716
                    (rel_cases_thm, rel_cases_attrs))
57094
589ec121ce1a don't generate discriminators and selectors for 'datatype_new' unless the user asked for it
blanchet
parents: 57091
diff changeset
  1717
                end;
56956
7425fa3763ff generate 'set_empty' theorem for BNFs
desharna
parents: 56767
diff changeset
  1718
54145
297d1c603999 make sure that registered code equations are actually equations
blanchet
parents: 54107
diff changeset
  1719
              val anonymous_notes =
55397
c2506f61fd26 generate 'fundec_cong' attribute for new-style (co)datatypes
blanchet
parents: 55394
diff changeset
  1720
                [([case_cong], fundefcong_attrs),
55463
942c2153b5b4 register 'Spec_Rules' for new-style (co)datatypes
blanchet
parents: 55444
diff changeset
  1721
                 (rel_eq_thms, code_nitpicksimp_attrs)]
54145
297d1c603999 make sure that registered code equations are actually equations
blanchet
parents: 54107
diff changeset
  1722
                |> map (fn (thms, attrs) => ((Binding.empty, attrs), [(thms, [])]));
297d1c603999 make sure that registered code equations are actually equations
blanchet
parents: 54107
diff changeset
  1723
51835
56523caf372f Added maps, sets, rels to "simps" thm collection
blanchet
parents: 51833
diff changeset
  1724
              val notes =
57700
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
  1725
                [(disc_map_iffN, disc_map_iff_thms, K simp_attrs),
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
  1726
                 (mapN, map_thms, K (code_nitpicksimp_attrs @ simp_attrs)),
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
  1727
                 (rel_casesN, [rel_cases_thm], K rel_cases_attrs),
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
  1728
                 (rel_distinctN, rel_distinct_thms, K simp_attrs),
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
  1729
                 (rel_injectN, rel_inject_thms, K simp_attrs),
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
  1730
                 (rel_introsN, rel_intro_thms, K []),
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
  1731
                 (rel_selN, rel_sel_thms, K []),
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
  1732
                 (setN, set_thms, K (code_nitpicksimp_attrs @ simp_attrs)),
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
  1733
                 (sel_mapN, sel_map_thms, K []),
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
  1734
                 (sel_setN, sel_set_thms, K []),
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
  1735
                 (set_emptyN, set_empty_thms, K [])]
51835
56523caf372f Added maps, sets, rels to "simps" thm collection
blanchet
parents: 51833
diff changeset
  1736
                |> massage_simple_notes fp_b_name;
57631
959caab43a3d use the noted theorem whenever possible, also in 'BNF_Def'
blanchet
parents: 57568
diff changeset
  1737
959caab43a3d use the noted theorem whenever possible, also in 'BNF_Def'
blanchet
parents: 57568
diff changeset
  1738
              val (noted, lthy') =
959caab43a3d use the noted theorem whenever possible, also in 'BNF_Def'
blanchet
parents: 57568
diff changeset
  1739
                lthy
959caab43a3d use the noted theorem whenever possible, also in 'BNF_Def'
blanchet
parents: 57568
diff changeset
  1740
                |> Spec_Rules.add Spec_Rules.Equational (`(single o lhs_head_of o hd) map_thms)
959caab43a3d use the noted theorem whenever possible, also in 'BNF_Def'
blanchet
parents: 57568
diff changeset
  1741
                |> fp = Least_FP
959caab43a3d use the noted theorem whenever possible, also in 'BNF_Def'
blanchet
parents: 57568
diff changeset
  1742
                  ? Spec_Rules.add Spec_Rules.Equational (`(single o lhs_head_of o hd) rel_eq_thms)
57815
f97643a56615 generate nicer 'set' theorems for (co)datatypes
blanchet
parents: 57700
diff changeset
  1743
                |> Spec_Rules.add Spec_Rules.Equational (`(single o lhs_head_of o hd) set0_thms)
57631
959caab43a3d use the noted theorem whenever possible, also in 'BNF_Def'
blanchet
parents: 57568
diff changeset
  1744
                |> Local_Theory.notes (anonymous_notes @ notes);
959caab43a3d use the noted theorem whenever possible, also in 'BNF_Def'
blanchet
parents: 57568
diff changeset
  1745
959caab43a3d use the noted theorem whenever possible, also in 'BNF_Def'
blanchet
parents: 57568
diff changeset
  1746
              val subst = Morphism.thm (substitute_noted_thm noted);
51835
56523caf372f Added maps, sets, rels to "simps" thm collection
blanchet
parents: 51833
diff changeset
  1747
            in
57631
959caab43a3d use the noted theorem whenever possible, also in 'BNF_Def'
blanchet
parents: 57568
diff changeset
  1748
              (((map subst map_thms, map subst rel_inject_thms, map subst rel_distinct_thms,
57815
f97643a56615 generate nicer 'set' theorems for (co)datatypes
blanchet
parents: 57700
diff changeset
  1749
                 map (map subst) set0_thmss), ctr_sugar), lthy')
51835
56523caf372f Added maps, sets, rels to "simps" thm collection
blanchet
parents: 51833
diff changeset
  1750
            end;
49585
5c4a12550491 generate high-level "maps", "sets", and "rels" properties
blanchet
parents: 49583
diff changeset
  1751
55410
54b09e82b9e1 killed 'rep_compat' option
blanchet
parents: 55409
diff changeset
  1752
        fun mk_binding pre = Binding.qualify false fp_b_name (Binding.prefix_name (pre ^ "_") fp_b);
49287
ebe2a5cec4bf allow defaults for one datatype to involve the constructor of another one in the mutually recursive case
blanchet
parents: 49286
diff changeset
  1753
55867
79b915f26533 rationalized internals
blanchet
parents: 55865
diff changeset
  1754
        fun massage_res (((maps_sets_rels, ctr_sugar), co_rec_res), lthy) =
79b915f26533 rationalized internals
blanchet
parents: 55865
diff changeset
  1755
          (((maps_sets_rels, (ctrs, xss, ctr_defs, ctr_sugar)), co_rec_res), lthy);
49119
1f605c36869c more work on FP sugar
blanchet
parents: 49112
diff changeset
  1756
      in
51897
9a27c870ee21 refactoring
blanchet
parents: 51896
diff changeset
  1757
        (wrap_ctrs
51835
56523caf372f Added maps, sets, rels to "simps" thm collection
blanchet
parents: 51833
diff changeset
  1758
         #> derive_maps_sets_rels
52313
62f794b9e9cc renamed ML variables
blanchet
parents: 52312
diff changeset
  1759
         ##>>
56641
029997d3b5d8 reverted rb458558cbcc2 -- better to keep 'case' and 'rec' distinct, otherwise we lose the connection between 'ctor_rec' (the low-level recursor) and 'rec'
blanchet
parents: 56640
diff changeset
  1760
           (if fp = Least_FP then define_rec (the recs_args_types) mk_binding fpTs Cs reps
55867
79b915f26533 rationalized internals
blanchet
parents: 55865
diff changeset
  1761
           else define_corec (the corecs_args_types) mk_binding fpTs Cs abss) xtor_co_rec
51835
56523caf372f Added maps, sets, rels to "simps" thm collection
blanchet
parents: 51833
diff changeset
  1762
         #> massage_res, lthy')
49119
1f605c36869c more work on FP sugar
blanchet
parents: 49112
diff changeset
  1763
      end;
49167
68623861e0f2 print timing information
blanchet
parents: 49165
diff changeset
  1764
51835
56523caf372f Added maps, sets, rels to "simps" thm collection
blanchet
parents: 51833
diff changeset
  1765
    fun wrap_types_etc (wrap_types_etcs, lthy) =
56523caf372f Added maps, sets, rels to "simps" thm collection
blanchet
parents: 51833
diff changeset
  1766
      fold_map I wrap_types_etcs lthy
52342
blanchet
parents: 52341
diff changeset
  1767
      |>> apsnd split_list o apfst (apsnd split_list4 o apfst split_list4 o split_list)
blanchet
parents: 52341
diff changeset
  1768
        o split_list;
49226
510c6d4a73ec fixed and enabled iterator/recursor theorems
blanchet
parents: 49224
diff changeset
  1769
55856
bddaada24074 got rid of automatically generated fold constant and theorems (to reduce overhead)
blanchet
parents: 55803
diff changeset
  1770
    fun mk_simp_thms ({injects, distincts, case_thms, ...} : ctr_sugar) co_recs mapsx rel_injects
bddaada24074 got rid of automatically generated fold constant and theorems (to reduce overhead)
blanchet
parents: 55803
diff changeset
  1771
        rel_distincts setss =
bddaada24074 got rid of automatically generated fold constant and theorems (to reduce overhead)
blanchet
parents: 55803
diff changeset
  1772
      injects @ distincts @ case_thms @ co_recs @ mapsx @ rel_injects @ rel_distincts @ flat setss;
49479
504f0a38f608 added "simp"s to coiter/corec theorems + export under "simps" name
blanchet
parents: 49478
diff changeset
  1773
55867
79b915f26533 rationalized internals
blanchet
parents: 55865
diff changeset
  1774
    fun derive_note_induct_recs_thms_for_types
56648
2ffa440b3074 manual merge + added 'rel_distincts' field to record for symmetry
blanchet
parents: 56641
diff changeset
  1775
        ((((mapss, rel_injectss, rel_distinctss, setss), (ctrss, _, ctr_defss, ctr_sugars)),
55864
516ab2906e7e rationalized internals
blanchet
parents: 55863
diff changeset
  1776
          (recs, rec_defs)), lthy) =
49202
f493cd25737f some work towards iterator and recursor properties
blanchet
parents: 49201
diff changeset
  1777
      let
55869
54ddb003e128 rationalized internals
blanchet
parents: 55868
diff changeset
  1778
        val ((induct_thms, induct_thm, induct_attrs), (rec_thmss, rec_attrs)) =
55868
37b99986d435 rationalized internals
blanchet
parents: 55867
diff changeset
  1779
          derive_induct_recs_thms_for_types pre_bnfs recs_args_types xtor_co_induct xtor_co_rec_thms
57397
5004aca20821 tuned variable names
blanchet
parents: 57303
diff changeset
  1780
            live_nesting_bnfs fp_nesting_bnfs fpTs Cs Xs ctrXs_Tsss abs_inverses type_definitions
55868
37b99986d435 rationalized internals
blanchet
parents: 55867
diff changeset
  1781
            abs_inverses ctrss ctr_defss recs rec_defs lthy;
49201
blanchet
parents: 49200
diff changeset
  1782
51830
blanchet
parents: 51829
diff changeset
  1783
        val induct_type_attr = Attrib.internal o K o Induct.induct_type;
57471
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
  1784
        val induct_pred_attr = Attrib.internal o K o Induct.induct_pred;
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
  1785
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
  1786
        val ((rel_induct_thmss, common_rel_induct_thms),
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
  1787
             (rel_induct_attrs, common_rel_induct_attrs)) =
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
  1788
          if live = 0 then
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
  1789
            ((replicate nn [], []), ([], []))
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
  1790
          else
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
  1791
            let
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
  1792
              val ((rel_induct_thms, common_rel_induct_thm), rel_induct_attrs) =
57535
9b99b773acd4 made SML/NJ happier
blanchet
parents: 57525
diff changeset
  1793
                derive_rel_induct_thms_for_types lthy fpTs As Bs ctrss ctr_Tsss
9b99b773acd4 made SML/NJ happier
blanchet
parents: 57525
diff changeset
  1794
                  (map #exhaust ctr_sugars) rel_xtor_co_induct_thm ctr_defss ctor_injects
9b99b773acd4 made SML/NJ happier
blanchet
parents: 57525
diff changeset
  1795
                  pre_rel_defs abs_inverses (map rel_eq_of_bnf live_nesting_bnfs);
57471
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
  1796
            in
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
  1797
              ((map single rel_induct_thms, single common_rel_induct_thm),
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
  1798
               (rel_induct_attrs, rel_induct_attrs))
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
  1799
            end;
51810
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
  1800
51835
56523caf372f Added maps, sets, rels to "simps" thm collection
blanchet
parents: 51833
diff changeset
  1801
        val simp_thmss =
56648
2ffa440b3074 manual merge + added 'rel_distincts' field to record for symmetry
blanchet
parents: 56641
diff changeset
  1802
          map6 mk_simp_thms ctr_sugars rec_thmss mapss rel_injectss rel_distinctss setss;
49438
5bc80d96241e group "simps" together
blanchet
parents: 49437
diff changeset
  1803
49337
538687a77075 set up things for (co)induction sugar
blanchet
parents: 49336
diff changeset
  1804
        val common_notes =
57471
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
  1805
          (if nn > 1 then
57700
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
  1806
             [(inductN, [induct_thm], K induct_attrs),
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
  1807
              (rel_inductN, common_rel_induct_thms, K common_rel_induct_attrs)]
57633
4ff8c090d580 repaired named derivations
blanchet
parents: 57631
diff changeset
  1808
           else
4ff8c090d580 repaired named derivations
blanchet
parents: 57631
diff changeset
  1809
             [])
51780
67e4ed510dfb register coinductive type's coinduct rule
blanchet
parents: 51777
diff changeset
  1810
          |> massage_simple_notes fp_common_name;
49337
538687a77075 set up things for (co)induction sugar
blanchet
parents: 49336
diff changeset
  1811
49226
510c6d4a73ec fixed and enabled iterator/recursor theorems
blanchet
parents: 49224
diff changeset
  1812
        val notes =
55856
bddaada24074 got rid of automatically generated fold constant and theorems (to reduce overhead)
blanchet
parents: 55803
diff changeset
  1813
          [(inductN, map single induct_thms, fn T_name => induct_attrs @ [induct_type_attr T_name]),
55869
54ddb003e128 rationalized internals
blanchet
parents: 55868
diff changeset
  1814
           (recN, rec_thmss, K rec_attrs),
57471
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
  1815
           (rel_inductN, rel_induct_thmss, K (rel_induct_attrs @ [induct_pred_attr ""])),
49585
5c4a12550491 generate high-level "maps", "sets", and "rels" properties
blanchet
parents: 49583
diff changeset
  1816
           (simpsN, simp_thmss, K [])]
51780
67e4ed510dfb register coinductive type's coinduct rule
blanchet
parents: 51777
diff changeset
  1817
          |> massage_multi_notes;
49202
f493cd25737f some work towards iterator and recursor properties
blanchet
parents: 49201
diff changeset
  1818
      in
51824
27d073b0876c register all (co)datatypes in local data
blanchet
parents: 51823
diff changeset
  1819
        lthy
56641
029997d3b5d8 reverted rb458558cbcc2 -- better to keep 'case' and 'rec' distinct, otherwise we lose the connection between 'ctor_rec' (the low-level recursor) and 'rec'
blanchet
parents: 56640
diff changeset
  1820
        |> Spec_Rules.add Spec_Rules.Equational (recs, flat rec_thmss)
57631
959caab43a3d use the noted theorem whenever possible, also in 'BNF_Def'
blanchet
parents: 57568
diff changeset
  1821
        |> Local_Theory.notes (common_notes @ notes)
57633
4ff8c090d580 repaired named derivations
blanchet
parents: 57631
diff changeset
  1822
        (* for "datatype_realizer.ML": *)
4ff8c090d580 repaired named derivations
blanchet
parents: 57631
diff changeset
  1823
        |>> name_noted_thms
4ff8c090d580 repaired named derivations
blanchet
parents: 57631
diff changeset
  1824
          (fst (dest_Type (hd fpTs)) ^ (implode (map (prefix "_") (tl fp_b_names)))) inductN
57631
959caab43a3d use the noted theorem whenever possible, also in 'BNF_Def'
blanchet
parents: 57568
diff changeset
  1825
        |-> register_as_fp_sugars fpTs fpBTs Xs Least_FP pre_bnfs absT_infos fp_nesting_bnfs
57397
5004aca20821 tuned variable names
blanchet
parents: 57303
diff changeset
  1826
          live_nesting_bnfs fp_res ctrXs_Tsss ctr_defss ctr_sugars recs rec_defs mapss [induct_thm]
56648
2ffa440b3074 manual merge + added 'rel_distincts' field to record for symmetry
blanchet
parents: 56641
diff changeset
  1827
          (map single induct_thms) rec_thmss (replicate nn []) (replicate nn []) rel_injectss
2ffa440b3074 manual merge + added 'rel_distincts' field to record for symmetry
blanchet
parents: 56641
diff changeset
  1828
          rel_distinctss
49202
f493cd25737f some work towards iterator and recursor properties
blanchet
parents: 49201
diff changeset
  1829
      end;
f493cd25737f some work towards iterator and recursor properties
blanchet
parents: 49201
diff changeset
  1830
55867
79b915f26533 rationalized internals
blanchet
parents: 55865
diff changeset
  1831
    fun derive_note_coinduct_corecs_thms_for_types
56648
2ffa440b3074 manual merge + added 'rel_distincts' field to record for symmetry
blanchet
parents: 56641
diff changeset
  1832
        ((((mapss, rel_injectss, rel_distinctss, setss), (_, _, ctr_defss, ctr_sugars)),
55867
79b915f26533 rationalized internals
blanchet
parents: 55865
diff changeset
  1833
          (corecs, corec_defs)), lthy) =
49212
ca59649170b0 more sugar on codatatypes
blanchet
parents: 49211
diff changeset
  1834
      let
52345
blanchet
parents: 52344
diff changeset
  1835
        val (([(coinduct_thms, coinduct_thm), (strong_coinduct_thms, strong_coinduct_thm)],
57260
8747af0d1012 fixed postprocessing of 'coinduct' formula to obtain right property format (without needless hypotheses)
blanchet
parents: 57206
diff changeset
  1836
              (coinduct_attrs, common_coinduct_attrs)),
57489
8f0ba9f2d10f generate 'corec_code' theorem for codatatypes
desharna
parents: 57471
diff changeset
  1837
             corec_thmss, disc_corec_thmss,
55871
a28817253b31 removed (co)iterators from documentation
blanchet
parents: 55869
diff changeset
  1838
             (disc_corec_iff_thmss, disc_corec_iff_attrs), (sel_corec_thmsss, sel_corec_attrs)) =
55867
79b915f26533 rationalized internals
blanchet
parents: 55865
diff changeset
  1839
          derive_coinduct_corecs_thms_for_types pre_bnfs (the corecs_args_types) xtor_co_induct
57397
5004aca20821 tuned variable names
blanchet
parents: 57303
diff changeset
  1840
            dtor_injects dtor_ctors xtor_co_rec_thms live_nesting_bnfs fpTs Cs Xs ctrXs_Tsss kss mss
5004aca20821 tuned variable names
blanchet
parents: 57303
diff changeset
  1841
            ns abs_inverses abs_inverses I ctr_defss ctr_sugars corecs corec_defs
55803
74d3fe9031d8 joint work with blanchet: intermediate typedef for the input to fp-operations
traytel
parents: 55772
diff changeset
  1842
            (Proof_Context.export lthy' no_defs_lthy) lthy;
49212
ca59649170b0 more sugar on codatatypes
blanchet
parents: 49211
diff changeset
  1843
57489
8f0ba9f2d10f generate 'corec_code' theorem for codatatypes
desharna
parents: 57471
diff changeset
  1844
        fun distinct_prems ctxt th =
8f0ba9f2d10f generate 'corec_code' theorem for codatatypes
desharna
parents: 57471
diff changeset
  1845
          Goal.prove ctxt [] []
8f0ba9f2d10f generate 'corec_code' theorem for codatatypes
desharna
parents: 57471
diff changeset
  1846
            (th |> Thm.prop_of |> Logic.strip_horn |>> distinct (op aconv) |> Logic.list_implies)
8f0ba9f2d10f generate 'corec_code' theorem for codatatypes
desharna
parents: 57471
diff changeset
  1847
            (fn _ => HEADGOAL (cut_tac th THEN' atac) THEN ALLGOALS eq_assume_tac);
8f0ba9f2d10f generate 'corec_code' theorem for codatatypes
desharna
parents: 57471
diff changeset
  1848
8f0ba9f2d10f generate 'corec_code' theorem for codatatypes
desharna
parents: 57471
diff changeset
  1849
        fun eq_ifIN _ [thm] = thm
8f0ba9f2d10f generate 'corec_code' theorem for codatatypes
desharna
parents: 57471
diff changeset
  1850
          | eq_ifIN ctxt (thm :: thms) =
8f0ba9f2d10f generate 'corec_code' theorem for codatatypes
desharna
parents: 57471
diff changeset
  1851
              distinct_prems ctxt (@{thm eq_ifI} OF
8f0ba9f2d10f generate 'corec_code' theorem for codatatypes
desharna
parents: 57471
diff changeset
  1852
                (map (unfold_thms ctxt @{thms atomize_imp[of _ "t = u" for t u]})
8f0ba9f2d10f generate 'corec_code' theorem for codatatypes
desharna
parents: 57471
diff changeset
  1853
                  [thm, eq_ifIN ctxt thms]));
8f0ba9f2d10f generate 'corec_code' theorem for codatatypes
desharna
parents: 57471
diff changeset
  1854
8f0ba9f2d10f generate 'corec_code' theorem for codatatypes
desharna
parents: 57471
diff changeset
  1855
        val corec_code_thms = map (eq_ifIN lthy) corec_thmss
53475
185ad6cf6576 enriched data structure with necessary theorems
blanchet
parents: 53329
diff changeset
  1856
        val sel_corec_thmss = map flat sel_corec_thmsss;
185ad6cf6576 enriched data structure with necessary theorems
blanchet
parents: 53329
diff changeset
  1857
51830
blanchet
parents: 51829
diff changeset
  1858
        val coinduct_type_attr = Attrib.internal o K o Induct.coinduct_type;
57302
58f02fbaa764 generate 'rel_coinduct' theorem for codatatypes
desharna
parents: 57301
diff changeset
  1859
        val coinduct_pred_attr = Attrib.internal o K o Induct.coinduct_pred;
49479
504f0a38f608 added "simp"s to coiter/corec theorems + export under "simps" name
blanchet
parents: 49478
diff changeset
  1860
55867
79b915f26533 rationalized internals
blanchet
parents: 55865
diff changeset
  1861
        val flat_corec_thms = append oo append;
49479
504f0a38f608 added "simp"s to coiter/corec theorems + export under "simps" name
blanchet
parents: 49478
diff changeset
  1862
57471
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
  1863
        val ((rel_coinduct_thmss, common_rel_coinduct_thms),
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
  1864
             (rel_coinduct_attrs, common_rel_coinduct_attrs)) =
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
  1865
          if live = 0 then
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
  1866
            ((replicate nn [], []), ([], []))
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
  1867
          else
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
  1868
            let
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
  1869
              val ((rel_coinduct_thms, common_rel_coinduct_thm),
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
  1870
                   (rel_coinduct_attrs, common_rel_coinduct_attrs)) =
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
  1871
                derive_rel_coinduct_thm_for_types lthy fpTs ns As Bs mss ctr_sugars abs_inverses
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
  1872
                  abs_injects ctor_injects dtor_ctors pre_rel_defs ctr_defss rel_xtor_co_induct_thm
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
  1873
                  (map rel_eq_of_bnf live_nesting_bnfs)
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
  1874
            in
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
  1875
              ((map single rel_coinduct_thms, single common_rel_coinduct_thm),
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
  1876
               (rel_coinduct_attrs, common_rel_coinduct_attrs))
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
  1877
            end;
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
  1878
57700
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
  1879
        val (set_induct_thms, set_induct_attrss) =
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
  1880
          derive_set_induct_thms_for_types lthy nn fpTs (map #ctrs ctr_sugars)
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
  1881
            (map (map (mk_set As)) (map sets_of_bnf fp_bnfs)) dtor_set_induct_thms
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
  1882
            (map #exhaust ctr_sugars) (flat pre_set_defss) (flat ctr_defss)
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
  1883
            dtor_ctors abs_inverses
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
  1884
          |> split_list;
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
  1885
49479
504f0a38f608 added "simp"s to coiter/corec theorems + export under "simps" name
blanchet
parents: 49478
diff changeset
  1886
        val simp_thmss =
55856
bddaada24074 got rid of automatically generated fold constant and theorems (to reduce overhead)
blanchet
parents: 55803
diff changeset
  1887
          map6 mk_simp_thms ctr_sugars
55867
79b915f26533 rationalized internals
blanchet
parents: 55865
diff changeset
  1888
            (map3 flat_corec_thms disc_corec_thmss disc_corec_iff_thmss sel_corec_thmss)
56648
2ffa440b3074 manual merge + added 'rel_distincts' field to record for symmetry
blanchet
parents: 56641
diff changeset
  1889
            mapss rel_injectss rel_distinctss setss;
49479
504f0a38f608 added "simp"s to coiter/corec theorems + export under "simps" name
blanchet
parents: 49478
diff changeset
  1890
49342
8ea4bad49ed5 rough and ready induction
blanchet
parents: 49338
diff changeset
  1891
        val common_notes =
57700
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
  1892
          (set_inductN, set_induct_thms, nth set_induct_attrss) ::
57302
58f02fbaa764 generate 'rel_coinduct' theorem for codatatypes
desharna
parents: 57301
diff changeset
  1893
          (if nn > 1 then
57700
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
  1894
            [(coinductN, [coinduct_thm], K common_coinduct_attrs),
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
  1895
             (rel_coinductN, common_rel_coinduct_thms, K common_rel_coinduct_attrs),
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
  1896
             (strong_coinductN, [strong_coinduct_thm], K common_coinduct_attrs)]
a2c4adb839a9 generate 'set_induct' theorem for codatatypes
desharna
parents: 57668
diff changeset
  1897
           else [])
51780
67e4ed510dfb register coinductive type's coinduct rule
blanchet
parents: 51777
diff changeset
  1898
          |> massage_simple_notes fp_common_name;
49342
8ea4bad49ed5 rough and ready induction
blanchet
parents: 49338
diff changeset
  1899
49212
ca59649170b0 more sugar on codatatypes
blanchet
parents: 49211
diff changeset
  1900
        val notes =
51780
67e4ed510dfb register coinductive type's coinduct rule
blanchet
parents: 51777
diff changeset
  1901
          [(coinductN, map single coinduct_thms,
51810
7b75fab5ebf5 factored out derivation of coinduction, unfold, corec
blanchet
parents: 51808
diff changeset
  1902
            fn T_name => coinduct_attrs @ [coinduct_type_attr T_name]),
57489
8f0ba9f2d10f generate 'corec_code' theorem for codatatypes
desharna
parents: 57471
diff changeset
  1903
           (corecN, corec_thmss, K []),
8f0ba9f2d10f generate 'corec_code' theorem for codatatypes
desharna
parents: 57471
diff changeset
  1904
           (corec_codeN, map single corec_code_thms, K code_nitpicksimp_attrs),
8f0ba9f2d10f generate 'corec_code' theorem for codatatypes
desharna
parents: 57471
diff changeset
  1905
           (disc_corecN, disc_corec_thmss, K []),
55867
79b915f26533 rationalized internals
blanchet
parents: 55865
diff changeset
  1906
           (disc_corec_iffN, disc_corec_iff_thmss, K disc_corec_iff_attrs),
57471
11cd462e31ec generate 'rel_induct' theorem for datatypes
desharna
parents: 57399
diff changeset
  1907
           (rel_coinductN, rel_coinduct_thmss, K (rel_coinduct_attrs @ [coinduct_pred_attr ""])),
55867
79b915f26533 rationalized internals
blanchet
parents: 55865
diff changeset
  1908
           (sel_corecN, sel_corec_thmss, K sel_corec_attrs),
51780
67e4ed510dfb register coinductive type's coinduct rule
blanchet
parents: 51777
diff changeset
  1909
           (simpsN, simp_thmss, K []),
55856
bddaada24074 got rid of automatically generated fold constant and theorems (to reduce overhead)
blanchet
parents: 55803
diff changeset
  1910
           (strong_coinductN, map single strong_coinduct_thms, K coinduct_attrs)]
51780
67e4ed510dfb register coinductive type's coinduct rule
blanchet
parents: 51777
diff changeset
  1911
          |> massage_multi_notes;
49212
ca59649170b0 more sugar on codatatypes
blanchet
parents: 49211
diff changeset
  1912
      in
51824
27d073b0876c register all (co)datatypes in local data
blanchet
parents: 51823
diff changeset
  1913
        lthy
55867
79b915f26533 rationalized internals
blanchet
parents: 55865
diff changeset
  1914
        |> fold (curry (Spec_Rules.add Spec_Rules.Equational) corecs)
55864
516ab2906e7e rationalized internals
blanchet
parents: 55863
diff changeset
  1915
          [flat sel_corec_thmss, flat corec_thmss]
57631
959caab43a3d use the noted theorem whenever possible, also in 'BNF_Def'
blanchet
parents: 57568
diff changeset
  1916
        |> Local_Theory.notes (common_notes @ notes)
959caab43a3d use the noted theorem whenever possible, also in 'BNF_Def'
blanchet
parents: 57568
diff changeset
  1917
        |-> register_as_fp_sugars fpTs fpBTs Xs Greatest_FP pre_bnfs absT_infos fp_nesting_bnfs
57397
5004aca20821 tuned variable names
blanchet
parents: 57303
diff changeset
  1918
          live_nesting_bnfs fp_res ctrXs_Tsss ctr_defss ctr_sugars corecs corec_defs mapss
56648
2ffa440b3074 manual merge + added 'rel_distincts' field to record for symmetry
blanchet
parents: 56641
diff changeset
  1919
          [coinduct_thm, strong_coinduct_thm] (transpose [coinduct_thms, strong_coinduct_thms])
2ffa440b3074 manual merge + added 'rel_distincts' field to record for symmetry
blanchet
parents: 56641
diff changeset
  1920
          corec_thmss disc_corec_thmss sel_corec_thmsss rel_injectss rel_distinctss
49212
ca59649170b0 more sugar on codatatypes
blanchet
parents: 49211
diff changeset
  1921
      end;
ca59649170b0 more sugar on codatatypes
blanchet
parents: 49211
diff changeset
  1922
52367
blanchet
parents: 52357
diff changeset
  1923
    val lthy'' = lthy'
52968
2b430bbb5a1a define case constant from other 'free constructor' axioms
blanchet
parents: 52964
diff changeset
  1924
      |> fold_map define_ctrs_dtrs_for_type (fp_bnfs ~~ fp_bs ~~ fpTs ~~ ctors ~~ dtors ~~
55867
79b915f26533 rationalized internals
blanchet
parents: 55865
diff changeset
  1925
        xtor_co_recs ~~ ctor_dtors ~~ dtor_ctors ~~ ctor_injects ~~ pre_map_defs ~~ pre_set_defss ~~
79b915f26533 rationalized internals
blanchet
parents: 55865
diff changeset
  1926
        pre_rel_defs ~~ xtor_map_thms ~~ xtor_set_thmss ~~ xtor_rel_thms ~~ ns ~~ kss ~~ mss ~~
79b915f26533 rationalized internals
blanchet
parents: 55865
diff changeset
  1927
        abss ~~ abs_injects ~~ abs_inverses ~~ type_definitions ~~ ctr_bindingss ~~ ctr_mixfixess ~~
57200
aab87ffa60cc use 'where' clause for selector default value syntax
blanchet
parents: 57199
diff changeset
  1928
        ctr_Tsss ~~ disc_bindingss ~~ sel_bindingsss ~~ raw_sel_default_eqss)
51835
56523caf372f Added maps, sets, rels to "simps" thm collection
blanchet
parents: 51833
diff changeset
  1929
      |> wrap_types_etc
55966
972f0aa7091b balance tuples that represent curried functions
blanchet
parents: 55903
diff changeset
  1930
      |> case_fp fp derive_note_induct_recs_thms_for_types
55867
79b915f26533 rationalized internals
blanchet
parents: 55865
diff changeset
  1931
           derive_note_coinduct_corecs_thms_for_types;
49167
68623861e0f2 print timing information
blanchet
parents: 49165
diff changeset
  1932
68623861e0f2 print timing information
blanchet
parents: 49165
diff changeset
  1933
    val timer = time (timer ("Constructors, discriminators, selectors, etc., for the new " ^
52899
blanchet
parents: 52898
diff changeset
  1934
      co_prefix fp ^ "datatype"));
49112
4de4635d8f93 started work on sugared "(co)data" commands
blanchet
parents:
diff changeset
  1935
  in
52367
blanchet
parents: 52357
diff changeset
  1936
    timer; lthy''
49112
4de4635d8f93 started work on sugared "(co)data" commands
blanchet
parents:
diff changeset
  1937
  end;
4de4635d8f93 started work on sugared "(co)data" commands
blanchet
parents:
diff changeset
  1938
53974
612505263257 make SML/NJ more happy;
wenzelm
parents: 53907
diff changeset
  1939
fun co_datatypes x = define_co_datatypes (K I) (K I) (K I) x;
49297
47fbf2e3e89c provide a programmatic interface for FP sugar
blanchet
parents: 49287
diff changeset
  1940
53974
612505263257 make SML/NJ more happy;
wenzelm
parents: 53907
diff changeset
  1941
fun co_datatype_cmd x =
612505263257 make SML/NJ more happy;
wenzelm
parents: 53907
diff changeset
  1942
  define_co_datatypes Typedecl.read_constraint Syntax.parse_typ Syntax.parse_term x;
49119
1f605c36869c more work on FP sugar
blanchet
parents: 49112
diff changeset
  1943
55469
b19dd108f0c2 aligned the syntax for 'free_constructors' on the 'datatype_new' and 'codatatype' syntax
blanchet
parents: 55468
diff changeset
  1944
val parse_ctr_arg =
57205
blanchet
parents: 57200
diff changeset
  1945
  @{keyword "("} |-- parse_binding_colon -- Parse.typ --| @{keyword ")"}
blanchet
parents: 57200
diff changeset
  1946
  || Parse.typ >> pair Binding.empty;
55469
b19dd108f0c2 aligned the syntax for 'free_constructors' on the 'datatype_new' and 'codatatype' syntax
blanchet
parents: 55468
diff changeset
  1947
b19dd108f0c2 aligned the syntax for 'free_constructors' on the 'datatype_new' and 'codatatype' syntax
blanchet
parents: 55468
diff changeset
  1948
val parse_ctr_specs =
57091
1fa9c19ba2c9 got rid of '=:' squiggly
blanchet
parents: 57046
diff changeset
  1949
  Parse.enum1 "|" (parse_ctr_spec Parse.binding parse_ctr_arg -- Parse.opt_mixfix);
51767
bbcdd8519253 honor user-specified name for relator + generalize syntax
blanchet
parents: 51766
diff changeset
  1950
bbcdd8519253 honor user-specified name for relator + generalize syntax
blanchet
parents: 51766
diff changeset
  1951
val parse_spec =
57206
d9be905d6283 changed syntax of map: and rel: arguments to BNF-based datatypes
blanchet
parents: 57205
diff changeset
  1952
  parse_type_args_named_constrained -- Parse.binding -- Parse.opt_mixfix --
d9be905d6283 changed syntax of map: and rel: arguments to BNF-based datatypes
blanchet
parents: 57205
diff changeset
  1953
  (@{keyword "="} |-- parse_ctr_specs) -- parse_map_rel_bindings -- parse_sel_default_eqs;
51767
bbcdd8519253 honor user-specified name for relator + generalize syntax
blanchet
parents: 51766
diff changeset
  1954
55469
b19dd108f0c2 aligned the syntax for 'free_constructors' on the 'datatype_new' and 'codatatype' syntax
blanchet
parents: 55468
diff changeset
  1955
val parse_co_datatype = parse_ctr_options -- Parse.and_list1 parse_spec;
49278
718e4ad1517e added no_dests option
blanchet
parents: 49277
diff changeset
  1956
52207
21026c312cc3 tuning -- avoided unreadable true/false all over the place for LFP/GFP
blanchet
parents: 52197
diff changeset
  1957
fun parse_co_datatype_cmd fp construct_fp = parse_co_datatype >> co_datatype_cmd fp construct_fp;
49112
4de4635d8f93 started work on sugared "(co)data" commands
blanchet
parents:
diff changeset
  1958
56522
f54003750e7d don't forget to init Interpretation and transfer theorems in the interpretation hook
kuncar
parents: 56521
diff changeset
  1959
val _ = Context.>> (Context.map_theory FP_Sugar_Interpretation.init);
f54003750e7d don't forget to init Interpretation and transfer theorems in the interpretation hook
kuncar
parents: 56521
diff changeset
  1960
49112
4de4635d8f93 started work on sugared "(co)data" commands
blanchet
parents:
diff changeset
  1961
end;