src/HOL/Tools/Ctr_Sugar/ctr_sugar.ML
author wenzelm
Tue, 31 Mar 2015 00:11:54 +0200
changeset 59859 f9d1442c70f3
parent 59647 c6f413b660cf
child 59936 b8ffc3dc9e24
permissions -rw-r--r--
tuned signature;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
54701
4ed7454aebde tuning -- moved ML files to subdirectory
blanchet
parents: 54691
diff changeset
     1
(*  Title:      HOL/Tools/Ctr_Sugar/ctr_sugar.ML
49017
66fc7fc2d49b started work on datatype sugar
blanchet
parents:
diff changeset
     2
    Author:     Jasmin Blanchette, TU Muenchen
59266
776964a0589f generate 'case_distrib' for Ctr_Sugars
desharna
parents: 59058
diff changeset
     3
    Author:     Martin Desharnais, TU Muenchen
54397
f4b4fa25ce56 tuned headers
blanchet
parents: 54396
diff changeset
     4
    Copyright   2012, 2013
49017
66fc7fc2d49b started work on datatype sugar
blanchet
parents:
diff changeset
     5
51797
182454c06a80 tuned ML and thy file names
blanchet
parents: 51790
diff changeset
     6
Wrapping existing freely generated type's constructors.
49017
66fc7fc2d49b started work on datatype sugar
blanchet
parents:
diff changeset
     7
*)
66fc7fc2d49b started work on datatype sugar
blanchet
parents:
diff changeset
     8
54006
9fe1bd54d437 renamed theory file
blanchet
parents: 53925
diff changeset
     9
signature CTR_SUGAR =
49017
66fc7fc2d49b started work on datatype sugar
blanchet
parents:
diff changeset
    10
sig
58675
69571f0a93df add 'kind' to 'cr_sugar'
desharna
parents: 58665
diff changeset
    11
  datatype ctr_sugar_kind = Datatype | Codatatype | Record | Unknown
69571f0a93df add 'kind' to 'cr_sugar'
desharna
parents: 58665
diff changeset
    12
51840
b304fb6c5ef5 renamed records
blanchet
parents: 51839
diff changeset
    13
  type ctr_sugar =
58675
69571f0a93df add 'kind' to 'cr_sugar'
desharna
parents: 58665
diff changeset
    14
    {kind: ctr_sugar_kind,
69571f0a93df add 'kind' to 'cr_sugar'
desharna
parents: 58665
diff changeset
    15
     T: typ,
58187
d2ddd401d74d fixed infinite loops in 'register' functions + more uniform API
blanchet
parents: 58186
diff changeset
    16
     ctrs: term list,
52375
bae65fd74633 store more theorems in data structure
blanchet
parents: 52322
diff changeset
    17
     casex: term,
51839
5c552de1d8d1 added constructors to data structure
blanchet
parents: 51823
diff changeset
    18
     discs: term list,
51819
9df935196be9 use record instead of big tuple
blanchet
parents: 51809
diff changeset
    19
     selss: term list list,
9df935196be9 use record instead of big tuple
blanchet
parents: 51809
diff changeset
    20
     exhaust: thm,
52375
bae65fd74633 store more theorems in data structure
blanchet
parents: 52322
diff changeset
    21
     nchotomy: thm,
51819
9df935196be9 use record instead of big tuple
blanchet
parents: 51809
diff changeset
    22
     injects: thm list,
9df935196be9 use record instead of big tuple
blanchet
parents: 51809
diff changeset
    23
     distincts: thm list,
9df935196be9 use record instead of big tuple
blanchet
parents: 51809
diff changeset
    24
     case_thms: thm list,
52375
bae65fd74633 store more theorems in data structure
blanchet
parents: 52322
diff changeset
    25
     case_cong: thm,
57983
6edc3529bb4e reordered some (co)datatype property names for more consistency
blanchet
parents: 57882
diff changeset
    26
     case_cong_weak: thm,
59266
776964a0589f generate 'case_distrib' for Ctr_Sugars
desharna
parents: 59058
diff changeset
    27
     case_distribs: thm list,
52375
bae65fd74633 store more theorems in data structure
blanchet
parents: 52322
diff changeset
    28
     split: thm,
bae65fd74633 store more theorems in data structure
blanchet
parents: 52322
diff changeset
    29
     split_asm: thm,
56858
0c3d0bc98abe simplify selectors in code views
blanchet
parents: 56767
diff changeset
    30
     disc_defs: thm list,
51819
9df935196be9 use record instead of big tuple
blanchet
parents: 51809
diff changeset
    31
     disc_thmss: thm list list,
9df935196be9 use record instead of big tuple
blanchet
parents: 51809
diff changeset
    32
     discIs: thm list,
59271
c448752e8b9d generate 'disc_eq_case' for Ctr_Sugars
desharna
parents: 59267
diff changeset
    33
     disc_eq_cases: thm list,
56858
0c3d0bc98abe simplify selectors in code views
blanchet
parents: 56767
diff changeset
    34
     sel_defs: thm list,
53475
185ad6cf6576 enriched data structure with necessary theorems
blanchet
parents: 53268
diff changeset
    35
     sel_thmss: thm list list,
57983
6edc3529bb4e reordered some (co)datatype property names for more consistency
blanchet
parents: 57882
diff changeset
    36
     distinct_discsss: thm list list list,
6edc3529bb4e reordered some (co)datatype property names for more consistency
blanchet
parents: 57882
diff changeset
    37
     exhaust_discs: thm list,
6edc3529bb4e reordered some (co)datatype property names for more consistency
blanchet
parents: 57882
diff changeset
    38
     exhaust_sels: thm list,
53475
185ad6cf6576 enriched data structure with necessary theorems
blanchet
parents: 53268
diff changeset
    39
     collapses: thm list,
185ad6cf6576 enriched data structure with necessary theorems
blanchet
parents: 53268
diff changeset
    40
     expands: thm list,
57983
6edc3529bb4e reordered some (co)datatype property names for more consistency
blanchet
parents: 57882
diff changeset
    41
     split_sels: thm list,
6edc3529bb4e reordered some (co)datatype property names for more consistency
blanchet
parents: 57882
diff changeset
    42
     split_sel_asms: thm list,
54491
27966e17d075 case_if -> case_eq_if + docs
blanchet
parents: 54435
diff changeset
    43
     case_eq_ifs: thm list};
51809
d4c1abbb4095 code tuning
blanchet
parents: 51798
diff changeset
    44
51840
b304fb6c5ef5 renamed records
blanchet
parents: 51839
diff changeset
    45
  val morph_ctr_sugar: morphism -> ctr_sugar -> ctr_sugar
58115
bfde04fc5190 made transfer functions slightly more general
blanchet
parents: 57985
diff changeset
    46
  val transfer_ctr_sugar: theory -> ctr_sugar -> ctr_sugar
53867
8ad44ecc0d15 keep a database of free constructor type information
blanchet
parents: 53864
diff changeset
    47
  val ctr_sugar_of: Proof.context -> string -> ctr_sugar option
58116
1a9ac371e5a0 added theory-based getters for convenience
blanchet
parents: 58115
diff changeset
    48
  val ctr_sugar_of_global: theory -> string -> ctr_sugar option
53906
17fc7811feb7 added data query function
blanchet
parents: 53888
diff changeset
    49
  val ctr_sugars_of: Proof.context -> ctr_sugar list
58116
1a9ac371e5a0 added theory-based getters for convenience
blanchet
parents: 58115
diff changeset
    50
  val ctr_sugars_of_global: theory -> ctr_sugar list
54403
40382f65bc80 added convenience function
blanchet
parents: 54400
diff changeset
    51
  val ctr_sugar_of_case: Proof.context -> string -> ctr_sugar option
58116
1a9ac371e5a0 added theory-based getters for convenience
blanchet
parents: 58115
diff changeset
    52
  val ctr_sugar_of_case_global: theory -> string -> ctr_sugar option
58659
6c9821c32dd5 Local_Interpretation is superseded by Plugin with formal Plugin_Name management, avoiding undeclared strings;
wenzelm
parents: 58634
diff changeset
    53
  val ctr_sugar_interpretation: string ->
58177
166131276380 introduced local interpretation mechanism for BNFs, to solve issues with datatypes in locales
blanchet
parents: 58176
diff changeset
    54
    (ctr_sugar -> local_theory -> local_theory) -> theory -> theory
58188
cc71d2be4f0a introduced mechanism to filter interpretations
blanchet
parents: 58187
diff changeset
    55
  val interpret_ctr_sugar: (string -> bool) -> ctr_sugar -> local_theory -> local_theory
58187
d2ddd401d74d fixed infinite loops in 'register' functions + more uniform API
blanchet
parents: 58186
diff changeset
    56
  val register_ctr_sugar_raw: ctr_sugar -> local_theory -> local_theory
58188
cc71d2be4f0a introduced mechanism to filter interpretations
blanchet
parents: 58187
diff changeset
    57
  val register_ctr_sugar: (string -> bool) -> ctr_sugar -> local_theory -> local_theory
cc71d2be4f0a introduced mechanism to filter interpretations
blanchet
parents: 58187
diff changeset
    58
  val default_register_ctr_sugar_global: (string -> bool) -> ctr_sugar -> theory -> theory
51823
38996458bc5c create data structure for storing (co)datatype information
blanchet
parents: 51819
diff changeset
    59
49585
5c4a12550491 generate high-level "maps", "sets", and "rels" properties
blanchet
parents: 49536
diff changeset
    60
  val mk_half_pairss: 'a list * 'a list -> ('a * 'a) list list
5c4a12550491 generate high-level "maps", "sets", and "rels" properties
blanchet
parents: 49536
diff changeset
    61
  val join_halves: int -> 'a list list -> 'a list list -> 'a list * 'a list list list
5c4a12550491 generate high-level "maps", "sets", and "rels" properties
blanchet
parents: 49536
diff changeset
    62
49203
262ab1ac38b9 repaired constant types
blanchet
parents: 49201
diff changeset
    63
  val mk_ctr: typ list -> term -> term
53864
a48d4bd3faaa use case rather than sequence of ifs in expansion
blanchet
parents: 53857
diff changeset
    64
  val mk_case: typ list -> typ -> term -> term
49484
0194a18f80cf finished "disc_coiter_iff" etc. generation
blanchet
parents: 49478
diff changeset
    65
  val mk_disc_or_sel: typ list -> term -> term
49622
a93f976c3307 use a nicer scheme to indexify names
blanchet
parents: 49619
diff changeset
    66
  val name_of_ctr: term -> string
51777
48a0ae342ea0 generate proper attributes for coinduction rules
blanchet
parents: 51771
diff changeset
    67
  val name_of_disc: term -> string
53888
7031775668e8 improved massaging of case expressions
blanchet
parents: 53870
diff changeset
    68
  val dest_ctr: Proof.context -> string -> term -> term * term list
54970
891141de5672 only destruct cases equipped with the right stuff (in particular, 'sel_split')
blanchet
parents: 54900
diff changeset
    69
  val dest_case: Proof.context -> string -> typ list -> term ->
891141de5672 only destruct cases equipped with the right stuff (in particular, 'sel_split')
blanchet
parents: 54900
diff changeset
    70
    (ctr_sugar * term list * term list) option
49585
5c4a12550491 generate high-level "maps", "sets", and "rels" properties
blanchet
parents: 49536
diff changeset
    71
57200
aab87ffa60cc use 'where' clause for selector default value syntax
blanchet
parents: 57094
diff changeset
    72
  type ('c, 'a) ctr_spec = (binding * 'c) * 'a list
55469
b19dd108f0c2 aligned the syntax for 'free_constructors' on the 'datatype_new' and 'codatatype' syntax
blanchet
parents: 55468
diff changeset
    73
57200
aab87ffa60cc use 'where' clause for selector default value syntax
blanchet
parents: 57094
diff changeset
    74
  val disc_of_ctr_spec: ('c, 'a) ctr_spec -> binding
aab87ffa60cc use 'where' clause for selector default value syntax
blanchet
parents: 57094
diff changeset
    75
  val ctr_of_ctr_spec: ('c, 'a) ctr_spec -> 'c
aab87ffa60cc use 'where' clause for selector default value syntax
blanchet
parents: 57094
diff changeset
    76
  val args_of_ctr_spec: ('c, 'a) ctr_spec -> 'a list
55469
b19dd108f0c2 aligned the syntax for 'free_constructors' on the 'datatype_new' and 'codatatype' syntax
blanchet
parents: 55468
diff changeset
    77
59283
5ca195783da8 generate [code] only with 'code' plugin enabled
blanchet
parents: 59281
diff changeset
    78
  val code_plugin: string
5ca195783da8 generate [code] only with 'code' plugin enabled
blanchet
parents: 59281
diff changeset
    79
58191
b3c71d630777 pretend code generation is a ctr_sugar plugin
blanchet
parents: 58189
diff changeset
    80
  type ctr_options = (string -> bool) * bool
58659
6c9821c32dd5 Local_Interpretation is superseded by Plugin with formal Plugin_Name management, avoiding undeclared strings;
wenzelm
parents: 58634
diff changeset
    81
  type ctr_options_cmd = (Proof.context -> string -> bool) * bool
58189
9d714be4f028 added 'plugins' option to control which hooks are enabled
blanchet
parents: 58188
diff changeset
    82
57830
2d0f0d6fdf3e correctly resolve selector names in default value equations
blanchet
parents: 57633
diff changeset
    83
  val fake_local_theory_for_sel_defaults: (binding * typ) list -> Proof.context -> Proof.context
58675
69571f0a93df add 'kind' to 'cr_sugar'
desharna
parents: 58665
diff changeset
    84
  val free_constructors: ctr_sugar_kind ->
69571f0a93df add 'kind' to 'cr_sugar'
desharna
parents: 58665
diff changeset
    85
    ({prems: thm list, context: Proof.context} -> tactic) list list ->
58189
9d714be4f028 added 'plugins' option to control which hooks are enabled
blanchet
parents: 58188
diff changeset
    86
    ((ctr_options * binding) * (term, binding) ctr_spec list) * term list -> local_theory ->
51840
b304fb6c5ef5 renamed records
blanchet
parents: 51839
diff changeset
    87
    ctr_sugar * local_theory
58189
9d714be4f028 added 'plugins' option to control which hooks are enabled
blanchet
parents: 58188
diff changeset
    88
  val default_ctr_options: ctr_options
58659
6c9821c32dd5 Local_Interpretation is superseded by Plugin with formal Plugin_Name management, avoiding undeclared strings;
wenzelm
parents: 58634
diff changeset
    89
  val default_ctr_options_cmd: ctr_options_cmd
49286
dde4967c9233 added "defaults" option
blanchet
parents: 49285
diff changeset
    90
  val parse_bound_term: (binding * string) parser
58659
6c9821c32dd5 Local_Interpretation is superseded by Plugin with formal Plugin_Name management, avoiding undeclared strings;
wenzelm
parents: 58634
diff changeset
    91
  val parse_ctr_options: ctr_options_cmd parser
57200
aab87ffa60cc use 'where' clause for selector default value syntax
blanchet
parents: 57094
diff changeset
    92
  val parse_ctr_spec: 'c parser -> 'a parser -> ('c, 'a) ctr_spec parser
aab87ffa60cc use 'where' clause for selector default value syntax
blanchet
parents: 57094
diff changeset
    93
  val parse_sel_default_eqs: string list parser
49017
66fc7fc2d49b started work on datatype sugar
blanchet
parents:
diff changeset
    94
end;
66fc7fc2d49b started work on datatype sugar
blanchet
parents:
diff changeset
    95
54006
9fe1bd54d437 renamed theory file
blanchet
parents: 53925
diff changeset
    96
structure Ctr_Sugar : CTR_SUGAR =
49017
66fc7fc2d49b started work on datatype sugar
blanchet
parents:
diff changeset
    97
struct
66fc7fc2d49b started work on datatype sugar
blanchet
parents:
diff changeset
    98
54008
b15cfc2864de refactoring -- splitting between constructor sugar dependencies and true BNF dependencies
blanchet
parents: 54007
diff changeset
    99
open Ctr_Sugar_Util
54006
9fe1bd54d437 renamed theory file
blanchet
parents: 53925
diff changeset
   100
open Ctr_Sugar_Tactics
54615
62fb5af93fe2 generalized datatype code generation code so that it works with old-style and new-style (co)datatypes (as long as they are not local)
blanchet
parents: 54493
diff changeset
   101
open Ctr_Sugar_Code
49017
66fc7fc2d49b started work on datatype sugar
blanchet
parents:
diff changeset
   102
58675
69571f0a93df add 'kind' to 'cr_sugar'
desharna
parents: 58665
diff changeset
   103
datatype ctr_sugar_kind = Datatype | Codatatype | Record | Unknown;
69571f0a93df add 'kind' to 'cr_sugar'
desharna
parents: 58665
diff changeset
   104
51840
b304fb6c5ef5 renamed records
blanchet
parents: 51839
diff changeset
   105
type ctr_sugar =
58675
69571f0a93df add 'kind' to 'cr_sugar'
desharna
parents: 58665
diff changeset
   106
  {kind: ctr_sugar_kind,
69571f0a93df add 'kind' to 'cr_sugar'
desharna
parents: 58665
diff changeset
   107
   T: typ,
58187
d2ddd401d74d fixed infinite loops in 'register' functions + more uniform API
blanchet
parents: 58186
diff changeset
   108
   ctrs: term list,
52375
bae65fd74633 store more theorems in data structure
blanchet
parents: 52322
diff changeset
   109
   casex: term,
51839
5c552de1d8d1 added constructors to data structure
blanchet
parents: 51823
diff changeset
   110
   discs: term list,
51819
9df935196be9 use record instead of big tuple
blanchet
parents: 51809
diff changeset
   111
   selss: term list list,
9df935196be9 use record instead of big tuple
blanchet
parents: 51809
diff changeset
   112
   exhaust: thm,
52375
bae65fd74633 store more theorems in data structure
blanchet
parents: 52322
diff changeset
   113
   nchotomy: thm,
51819
9df935196be9 use record instead of big tuple
blanchet
parents: 51809
diff changeset
   114
   injects: thm list,
9df935196be9 use record instead of big tuple
blanchet
parents: 51809
diff changeset
   115
   distincts: thm list,
9df935196be9 use record instead of big tuple
blanchet
parents: 51809
diff changeset
   116
   case_thms: thm list,
52375
bae65fd74633 store more theorems in data structure
blanchet
parents: 52322
diff changeset
   117
   case_cong: thm,
57983
6edc3529bb4e reordered some (co)datatype property names for more consistency
blanchet
parents: 57882
diff changeset
   118
   case_cong_weak: thm,
59266
776964a0589f generate 'case_distrib' for Ctr_Sugars
desharna
parents: 59058
diff changeset
   119
   case_distribs: thm list,
52375
bae65fd74633 store more theorems in data structure
blanchet
parents: 52322
diff changeset
   120
   split: thm,
bae65fd74633 store more theorems in data structure
blanchet
parents: 52322
diff changeset
   121
   split_asm: thm,
56858
0c3d0bc98abe simplify selectors in code views
blanchet
parents: 56767
diff changeset
   122
   disc_defs: thm list,
51819
9df935196be9 use record instead of big tuple
blanchet
parents: 51809
diff changeset
   123
   disc_thmss: thm list list,
9df935196be9 use record instead of big tuple
blanchet
parents: 51809
diff changeset
   124
   discIs: thm list,
59271
c448752e8b9d generate 'disc_eq_case' for Ctr_Sugars
desharna
parents: 59267
diff changeset
   125
   disc_eq_cases: thm list,
56858
0c3d0bc98abe simplify selectors in code views
blanchet
parents: 56767
diff changeset
   126
   sel_defs: thm list,
53475
185ad6cf6576 enriched data structure with necessary theorems
blanchet
parents: 53268
diff changeset
   127
   sel_thmss: thm list list,
57983
6edc3529bb4e reordered some (co)datatype property names for more consistency
blanchet
parents: 57882
diff changeset
   128
   distinct_discsss: thm list list list,
6edc3529bb4e reordered some (co)datatype property names for more consistency
blanchet
parents: 57882
diff changeset
   129
   exhaust_discs: thm list,
6edc3529bb4e reordered some (co)datatype property names for more consistency
blanchet
parents: 57882
diff changeset
   130
   exhaust_sels: thm list,
53475
185ad6cf6576 enriched data structure with necessary theorems
blanchet
parents: 53268
diff changeset
   131
   collapses: thm list,
185ad6cf6576 enriched data structure with necessary theorems
blanchet
parents: 53268
diff changeset
   132
   expands: thm list,
57983
6edc3529bb4e reordered some (co)datatype property names for more consistency
blanchet
parents: 57882
diff changeset
   133
   split_sels: thm list,
6edc3529bb4e reordered some (co)datatype property names for more consistency
blanchet
parents: 57882
diff changeset
   134
   split_sel_asms: thm list,
54491
27966e17d075 case_if -> case_eq_if + docs
blanchet
parents: 54435
diff changeset
   135
   case_eq_ifs: thm list};
51809
d4c1abbb4095 code tuning
blanchet
parents: 51798
diff changeset
   136
58685
6a75a4c24339 made SML/NJ happier
blanchet
parents: 58675
diff changeset
   137
fun morph_ctr_sugar phi ({kind, T, ctrs, casex, discs, selss, exhaust, nchotomy, injects, distincts,
59266
776964a0589f generate 'case_distrib' for Ctr_Sugars
desharna
parents: 59058
diff changeset
   138
    case_thms, case_cong, case_cong_weak, case_distribs, split, split_asm, disc_defs, disc_thmss,
59271
c448752e8b9d generate 'disc_eq_case' for Ctr_Sugars
desharna
parents: 59267
diff changeset
   139
    discIs, disc_eq_cases, sel_defs, sel_thmss, distinct_discsss, exhaust_discs, exhaust_sels,
c448752e8b9d generate 'disc_eq_case' for Ctr_Sugars
desharna
parents: 59267
diff changeset
   140
    collapses, expands, split_sels, split_sel_asms, case_eq_ifs} : ctr_sugar) =
58675
69571f0a93df add 'kind' to 'cr_sugar'
desharna
parents: 58665
diff changeset
   141
  {kind = kind,
69571f0a93df add 'kind' to 'cr_sugar'
desharna
parents: 58665
diff changeset
   142
   T = Morphism.typ phi T,
58187
d2ddd401d74d fixed infinite loops in 'register' functions + more uniform API
blanchet
parents: 58186
diff changeset
   143
   ctrs = map (Morphism.term phi) ctrs,
52375
bae65fd74633 store more theorems in data structure
blanchet
parents: 52322
diff changeset
   144
   casex = Morphism.term phi casex,
51839
5c552de1d8d1 added constructors to data structure
blanchet
parents: 51823
diff changeset
   145
   discs = map (Morphism.term phi) discs,
51823
38996458bc5c create data structure for storing (co)datatype information
blanchet
parents: 51819
diff changeset
   146
   selss = map (map (Morphism.term phi)) selss,
38996458bc5c create data structure for storing (co)datatype information
blanchet
parents: 51819
diff changeset
   147
   exhaust = Morphism.thm phi exhaust,
52375
bae65fd74633 store more theorems in data structure
blanchet
parents: 52322
diff changeset
   148
   nchotomy = Morphism.thm phi nchotomy,
51823
38996458bc5c create data structure for storing (co)datatype information
blanchet
parents: 51819
diff changeset
   149
   injects = map (Morphism.thm phi) injects,
38996458bc5c create data structure for storing (co)datatype information
blanchet
parents: 51819
diff changeset
   150
   distincts = map (Morphism.thm phi) distincts,
38996458bc5c create data structure for storing (co)datatype information
blanchet
parents: 51819
diff changeset
   151
   case_thms = map (Morphism.thm phi) case_thms,
52375
bae65fd74633 store more theorems in data structure
blanchet
parents: 52322
diff changeset
   152
   case_cong = Morphism.thm phi case_cong,
57983
6edc3529bb4e reordered some (co)datatype property names for more consistency
blanchet
parents: 57882
diff changeset
   153
   case_cong_weak = Morphism.thm phi case_cong_weak,
59266
776964a0589f generate 'case_distrib' for Ctr_Sugars
desharna
parents: 59058
diff changeset
   154
   case_distribs = map (Morphism.thm phi) case_distribs,
52375
bae65fd74633 store more theorems in data structure
blanchet
parents: 52322
diff changeset
   155
   split = Morphism.thm phi split,
bae65fd74633 store more theorems in data structure
blanchet
parents: 52322
diff changeset
   156
   split_asm = Morphism.thm phi split_asm,
56858
0c3d0bc98abe simplify selectors in code views
blanchet
parents: 56767
diff changeset
   157
   disc_defs = map (Morphism.thm phi) disc_defs,
51823
38996458bc5c create data structure for storing (co)datatype information
blanchet
parents: 51819
diff changeset
   158
   disc_thmss = map (map (Morphism.thm phi)) disc_thmss,
38996458bc5c create data structure for storing (co)datatype information
blanchet
parents: 51819
diff changeset
   159
   discIs = map (Morphism.thm phi) discIs,
59271
c448752e8b9d generate 'disc_eq_case' for Ctr_Sugars
desharna
parents: 59267
diff changeset
   160
   disc_eq_cases = map (Morphism.thm phi) disc_eq_cases,
56858
0c3d0bc98abe simplify selectors in code views
blanchet
parents: 56767
diff changeset
   161
   sel_defs = map (Morphism.thm phi) sel_defs,
53475
185ad6cf6576 enriched data structure with necessary theorems
blanchet
parents: 53268
diff changeset
   162
   sel_thmss = map (map (Morphism.thm phi)) sel_thmss,
57983
6edc3529bb4e reordered some (co)datatype property names for more consistency
blanchet
parents: 57882
diff changeset
   163
   distinct_discsss = map (map (map (Morphism.thm phi))) distinct_discsss,
6edc3529bb4e reordered some (co)datatype property names for more consistency
blanchet
parents: 57882
diff changeset
   164
   exhaust_discs = map (Morphism.thm phi) exhaust_discs,
6edc3529bb4e reordered some (co)datatype property names for more consistency
blanchet
parents: 57882
diff changeset
   165
   exhaust_sels = map (Morphism.thm phi) exhaust_sels,
53475
185ad6cf6576 enriched data structure with necessary theorems
blanchet
parents: 53268
diff changeset
   166
   collapses = map (Morphism.thm phi) collapses,
185ad6cf6576 enriched data structure with necessary theorems
blanchet
parents: 53268
diff changeset
   167
   expands = map (Morphism.thm phi) expands,
57983
6edc3529bb4e reordered some (co)datatype property names for more consistency
blanchet
parents: 57882
diff changeset
   168
   split_sels = map (Morphism.thm phi) split_sels,
6edc3529bb4e reordered some (co)datatype property names for more consistency
blanchet
parents: 57882
diff changeset
   169
   split_sel_asms = map (Morphism.thm phi) split_sel_asms,
54491
27966e17d075 case_if -> case_eq_if + docs
blanchet
parents: 54435
diff changeset
   170
   case_eq_ifs = map (Morphism.thm phi) case_eq_ifs};
51823
38996458bc5c create data structure for storing (co)datatype information
blanchet
parents: 51819
diff changeset
   171
58115
bfde04fc5190 made transfer functions slightly more general
blanchet
parents: 57985
diff changeset
   172
val transfer_ctr_sugar = morph_ctr_sugar o Morphism.transfer_morphism;
53867
8ad44ecc0d15 keep a database of free constructor type information
blanchet
parents: 53864
diff changeset
   173
8ad44ecc0d15 keep a database of free constructor type information
blanchet
parents: 53864
diff changeset
   174
structure Data = Generic_Data
8ad44ecc0d15 keep a database of free constructor type information
blanchet
parents: 53864
diff changeset
   175
(
8ad44ecc0d15 keep a database of free constructor type information
blanchet
parents: 53864
diff changeset
   176
  type T = ctr_sugar Symtab.table;
8ad44ecc0d15 keep a database of free constructor type information
blanchet
parents: 53864
diff changeset
   177
  val empty = Symtab.empty;
8ad44ecc0d15 keep a database of free constructor type information
blanchet
parents: 53864
diff changeset
   178
  val extend = I;
55394
d5ebe055b599 more liberal merging of BNFs and constructor sugar
blanchet
parents: 55356
diff changeset
   179
  fun merge data : T = Symtab.merge (K true) data;
53867
8ad44ecc0d15 keep a database of free constructor type information
blanchet
parents: 53864
diff changeset
   180
);
8ad44ecc0d15 keep a database of free constructor type information
blanchet
parents: 53864
diff changeset
   181
58116
1a9ac371e5a0 added theory-based getters for convenience
blanchet
parents: 58115
diff changeset
   182
fun ctr_sugar_of_generic context =
1a9ac371e5a0 added theory-based getters for convenience
blanchet
parents: 58115
diff changeset
   183
  Option.map (transfer_ctr_sugar (Context.theory_of context)) o Symtab.lookup (Data.get context);
1a9ac371e5a0 added theory-based getters for convenience
blanchet
parents: 58115
diff changeset
   184
1a9ac371e5a0 added theory-based getters for convenience
blanchet
parents: 58115
diff changeset
   185
fun ctr_sugars_of_generic context =
1a9ac371e5a0 added theory-based getters for convenience
blanchet
parents: 58115
diff changeset
   186
  Symtab.fold (cons o transfer_ctr_sugar (Context.theory_of context) o snd) (Data.get context) [];
53906
17fc7811feb7 added data query function
blanchet
parents: 53888
diff changeset
   187
58116
1a9ac371e5a0 added theory-based getters for convenience
blanchet
parents: 58115
diff changeset
   188
fun ctr_sugar_of_case_generic context s =
1a9ac371e5a0 added theory-based getters for convenience
blanchet
parents: 58115
diff changeset
   189
  find_first (fn {casex = Const (s', _), ...} => s' = s | _ => false)
1a9ac371e5a0 added theory-based getters for convenience
blanchet
parents: 58115
diff changeset
   190
    (ctr_sugars_of_generic context);
53867
8ad44ecc0d15 keep a database of free constructor type information
blanchet
parents: 53864
diff changeset
   191
58116
1a9ac371e5a0 added theory-based getters for convenience
blanchet
parents: 58115
diff changeset
   192
val ctr_sugar_of = ctr_sugar_of_generic o Context.Proof;
1a9ac371e5a0 added theory-based getters for convenience
blanchet
parents: 58115
diff changeset
   193
val ctr_sugar_of_global = ctr_sugar_of_generic o Context.Theory;
1a9ac371e5a0 added theory-based getters for convenience
blanchet
parents: 58115
diff changeset
   194
1a9ac371e5a0 added theory-based getters for convenience
blanchet
parents: 58115
diff changeset
   195
val ctr_sugars_of = ctr_sugars_of_generic o Context.Proof;
1a9ac371e5a0 added theory-based getters for convenience
blanchet
parents: 58115
diff changeset
   196
val ctr_sugars_of_global = ctr_sugars_of_generic o Context.Theory;
1a9ac371e5a0 added theory-based getters for convenience
blanchet
parents: 58115
diff changeset
   197
1a9ac371e5a0 added theory-based getters for convenience
blanchet
parents: 58115
diff changeset
   198
val ctr_sugar_of_case = ctr_sugar_of_case_generic o Context.Proof;
1a9ac371e5a0 added theory-based getters for convenience
blanchet
parents: 58115
diff changeset
   199
val ctr_sugar_of_case_global = ctr_sugar_of_case_generic o Context.Theory;
54403
40382f65bc80 added convenience function
blanchet
parents: 54400
diff changeset
   200
58659
6c9821c32dd5 Local_Interpretation is superseded by Plugin with formal Plugin_Name management, avoiding undeclared strings;
wenzelm
parents: 58634
diff changeset
   201
structure Ctr_Sugar_Plugin = Plugin(type T = ctr_sugar);
56345
228e30cb111d added 'ctr_sugar' interpretation hook
blanchet
parents: 55535
diff changeset
   202
58659
6c9821c32dd5 Local_Interpretation is superseded by Plugin with formal Plugin_Name management, avoiding undeclared strings;
wenzelm
parents: 58634
diff changeset
   203
fun ctr_sugar_interpretation name f =
6c9821c32dd5 Local_Interpretation is superseded by Plugin with formal Plugin_Name management, avoiding undeclared strings;
wenzelm
parents: 58634
diff changeset
   204
  Ctr_Sugar_Plugin.interpretation name
6c9821c32dd5 Local_Interpretation is superseded by Plugin with formal Plugin_Name management, avoiding undeclared strings;
wenzelm
parents: 58634
diff changeset
   205
    (fn ctr_sugar => fn lthy =>
6c9821c32dd5 Local_Interpretation is superseded by Plugin with formal Plugin_Name management, avoiding undeclared strings;
wenzelm
parents: 58634
diff changeset
   206
      f (transfer_ctr_sugar (Proof_Context.theory_of lthy) ctr_sugar) lthy);
56376
5a93b8f928a2 added same idiomatic handling of namings for Ctr_Sugar/BNF-related interpretation hooks as for typedef and (old-style) datatypes
blanchet
parents: 56345
diff changeset
   207
58659
6c9821c32dd5 Local_Interpretation is superseded by Plugin with formal Plugin_Name management, avoiding undeclared strings;
wenzelm
parents: 58634
diff changeset
   208
val interpret_ctr_sugar = Ctr_Sugar_Plugin.data;
58187
d2ddd401d74d fixed infinite loops in 'register' functions + more uniform API
blanchet
parents: 58186
diff changeset
   209
d2ddd401d74d fixed infinite loops in 'register' functions + more uniform API
blanchet
parents: 58186
diff changeset
   210
fun register_ctr_sugar_raw (ctr_sugar as {T = Type (s, _), ...}) =
54285
578371ba74cc reverted 3e1d230f1c00 -- pervasiveness is useful, cf. Coinductive_Nat in the AFP
blanchet
parents: 54265
diff changeset
   211
  Local_Theory.declaration {syntax = false, pervasive = true}
58187
d2ddd401d74d fixed infinite loops in 'register' functions + more uniform API
blanchet
parents: 58186
diff changeset
   212
    (fn phi => Data.map (Symtab.update (s, morph_ctr_sugar phi ctr_sugar)));
53867
8ad44ecc0d15 keep a database of free constructor type information
blanchet
parents: 53864
diff changeset
   213
58189
9d714be4f028 added 'plugins' option to control which hooks are enabled
blanchet
parents: 58188
diff changeset
   214
fun register_ctr_sugar plugins ctr_sugar =
9d714be4f028 added 'plugins' option to control which hooks are enabled
blanchet
parents: 58188
diff changeset
   215
  register_ctr_sugar_raw ctr_sugar #> interpret_ctr_sugar plugins ctr_sugar;
58187
d2ddd401d74d fixed infinite loops in 'register' functions + more uniform API
blanchet
parents: 58186
diff changeset
   216
58189
9d714be4f028 added 'plugins' option to control which hooks are enabled
blanchet
parents: 58188
diff changeset
   217
fun default_register_ctr_sugar_global plugins (ctr_sugar as {T = Type (s, _), ...}) thy =
56345
228e30cb111d added 'ctr_sugar' interpretation hook
blanchet
parents: 55535
diff changeset
   218
  let val tab = Data.get (Context.Theory thy) in
58187
d2ddd401d74d fixed infinite loops in 'register' functions + more uniform API
blanchet
parents: 58186
diff changeset
   219
    if Symtab.defined tab s then
56345
228e30cb111d added 'ctr_sugar' interpretation hook
blanchet
parents: 55535
diff changeset
   220
      thy
228e30cb111d added 'ctr_sugar' interpretation hook
blanchet
parents: 55535
diff changeset
   221
    else
228e30cb111d added 'ctr_sugar' interpretation hook
blanchet
parents: 55535
diff changeset
   222
      thy
58187
d2ddd401d74d fixed infinite loops in 'register' functions + more uniform API
blanchet
parents: 58186
diff changeset
   223
      |> Context.theory_map (Data.put (Symtab.update_new (s, ctr_sugar) tab))
58665
50b229a5a097 tuned signature;
wenzelm
parents: 58660
diff changeset
   224
      |> Named_Target.theory_map (Ctr_Sugar_Plugin.data plugins ctr_sugar)
56345
228e30cb111d added 'ctr_sugar' interpretation hook
blanchet
parents: 55535
diff changeset
   225
  end;
54400
418a183fbe21 register old-style datatypes as 'Ctr_Sugar'
blanchet
parents: 54399
diff changeset
   226
49223
blanchet
parents: 49210
diff changeset
   227
val isN = "is_";
blanchet
parents: 49210
diff changeset
   228
val unN = "un_";
57629
e88b5f59cade use the noted theorem whenever possible, because it has a named derivation (leading to cleaner proof terms)
blanchet
parents: 57260
diff changeset
   229
val notN = "not_";
e88b5f59cade use the noted theorem whenever possible, because it has a named derivation (leading to cleaner proof terms)
blanchet
parents: 57260
diff changeset
   230
49223
blanchet
parents: 49210
diff changeset
   231
fun mk_unN 1 1 suf = unN ^ suf
blanchet
parents: 49210
diff changeset
   232
  | mk_unN _ l suf = unN ^ suf ^ string_of_int l;
49046
3c5eba97d93a allow default names for selectors via wildcard (_) + fix wrong index (k)
blanchet
parents: 49045
diff changeset
   233
49594
55e798614c45 tweaked theorem names (in particular, dropped s's)
blanchet
parents: 49591
diff changeset
   234
val caseN = "case";
49054
ee0a1d449f89 generate default names for selectors
blanchet
parents: 49053
diff changeset
   235
val case_congN = "case_cong";
54491
27966e17d075 case_if -> case_eq_if + docs
blanchet
parents: 54435
diff changeset
   236
val case_eq_ifN = "case_eq_if";
49118
b815fa776b91 renamed theorem
blanchet
parents: 49117
diff changeset
   237
val collapseN = "collapse";
53694
7b453b619b5f use singular to avoid confusion
blanchet
parents: 53475
diff changeset
   238
val discN = "disc";
59272
blanchet
parents: 59271
diff changeset
   239
val disc_eq_caseN = "disc_eq_case";
53700
e6a44d775be3 note "discI"
blanchet
parents: 53694
diff changeset
   240
val discIN = "discI";
49054
ee0a1d449f89 generate default names for selectors
blanchet
parents: 49053
diff changeset
   241
val distinctN = "distinct";
57983
6edc3529bb4e reordered some (co)datatype property names for more consistency
blanchet
parents: 57882
diff changeset
   242
val distinct_discN = "distinct_disc";
49075
ed769978dc8d rearrange dependencies
blanchet
parents: 49074
diff changeset
   243
val exhaustN = "exhaust";
57983
6edc3529bb4e reordered some (co)datatype property names for more consistency
blanchet
parents: 57882
diff changeset
   244
val exhaust_discN = "exhaust_disc";
49486
64cc57c0d0fe generate "expand" property
blanchet
parents: 49484
diff changeset
   245
val expandN = "expand";
49075
ed769978dc8d rearrange dependencies
blanchet
parents: 49074
diff changeset
   246
val injectN = "inject";
ed769978dc8d rearrange dependencies
blanchet
parents: 49074
diff changeset
   247
val nchotomyN = "nchotomy";
53694
7b453b619b5f use singular to avoid confusion
blanchet
parents: 53475
diff changeset
   248
val selN = "sel";
57983
6edc3529bb4e reordered some (co)datatype property names for more consistency
blanchet
parents: 57882
diff changeset
   249
val exhaust_selN = "exhaust_sel";
49054
ee0a1d449f89 generate default names for selectors
blanchet
parents: 49053
diff changeset
   250
val splitN = "split";
57983
6edc3529bb4e reordered some (co)datatype property names for more consistency
blanchet
parents: 57882
diff changeset
   251
val split_asmN = "split_asm";
6edc3529bb4e reordered some (co)datatype property names for more consistency
blanchet
parents: 57882
diff changeset
   252
val split_selN = "split_sel";
6edc3529bb4e reordered some (co)datatype property names for more consistency
blanchet
parents: 57882
diff changeset
   253
val split_sel_asmN = "split_sel_asm";
49633
5b5450bc544c compatibility option to use "rep_datatype"
blanchet
parents: 49622
diff changeset
   254
val splitsN = "splits";
57984
cbe9a16f8e11 added collection theorem for consistency and convenience
blanchet
parents: 57983
diff changeset
   255
val split_selsN = "split_sels";
57983
6edc3529bb4e reordered some (co)datatype property names for more consistency
blanchet
parents: 57882
diff changeset
   256
val case_cong_weak_thmsN = "case_cong_weak";
59266
776964a0589f generate 'case_distrib' for Ctr_Sugars
desharna
parents: 59058
diff changeset
   257
val case_distribN = "case_distrib";
49019
fc4decdba5ce more work on BNF sugar
blanchet
parents: 49017
diff changeset
   258
53700
e6a44d775be3 note "discI"
blanchet
parents: 53694
diff changeset
   259
val cong_attrs = @{attributes [cong]};
53836
a1632a5f5fb3 added [dest] to "disc_exclude"
blanchet
parents: 53810
diff changeset
   260
val dest_attrs = @{attributes [dest]};
53700
e6a44d775be3 note "discI"
blanchet
parents: 53694
diff changeset
   261
val safe_elim_attrs = @{attributes [elim!]};
e6a44d775be3 note "discI"
blanchet
parents: 53694
diff changeset
   262
val iff_attrs = @{attributes [iff]};
54145
297d1c603999 make sure that registered code equations are actually equations
blanchet
parents: 54008
diff changeset
   263
val inductsimp_attrs = @{attributes [induct_simp]};
297d1c603999 make sure that registered code equations are actually equations
blanchet
parents: 54008
diff changeset
   264
val nitpicksimp_attrs = @{attributes [nitpick_simp]};
49300
c707df2e2083 added attributes to theorems
blanchet
parents: 49298
diff changeset
   265
val simp_attrs = @{attributes [simp]};
49046
3c5eba97d93a allow default names for selectors via wildcard (_) + fix wrong index (k)
blanchet
parents: 49045
diff changeset
   266
55480
59cc4a8bc28a allow different functions to recurse on the same type, like in the old package
blanchet
parents: 55471
diff changeset
   267
fun unflat_lookup eq xs ys = map (fn xs' => permute_like_unique eq xs xs' ys);
49258
84f13469d7f0 allow same selector name for several constructors
blanchet
parents: 49257
diff changeset
   268
49585
5c4a12550491 generate high-level "maps", "sets", and "rels" properties
blanchet
parents: 49536
diff changeset
   269
fun mk_half_pairss' _ ([], []) = []
49591
91b228e26348 generate high-level "coinduct" and "strong_coinduct" properties
blanchet
parents: 49586
diff changeset
   270
  | mk_half_pairss' indent (x :: xs, _ :: ys) =
49585
5c4a12550491 generate high-level "maps", "sets", and "rels" properties
blanchet
parents: 49536
diff changeset
   271
    indent @ fold_rev (cons o single o pair x) ys (mk_half_pairss' ([] :: indent) (xs, ys));
49486
64cc57c0d0fe generate "expand" property
blanchet
parents: 49484
diff changeset
   272
49585
5c4a12550491 generate high-level "maps", "sets", and "rels" properties
blanchet
parents: 49536
diff changeset
   273
fun mk_half_pairss p = mk_half_pairss' [[]] p;
49027
fc3b9b49c92d added discriminator theorems
blanchet
parents: 49025
diff changeset
   274
49486
64cc57c0d0fe generate "expand" property
blanchet
parents: 49484
diff changeset
   275
fun join_halves n half_xss other_half_xss =
55342
blanchet
parents: 54970
diff changeset
   276
  (splice (flat half_xss) (flat other_half_xss),
blanchet
parents: 54970
diff changeset
   277
   map2 (map2 append) (Library.chop_groups n half_xss)
blanchet
parents: 54970
diff changeset
   278
     (transpose (Library.chop_groups n other_half_xss)));
49027
fc3b9b49c92d added discriminator theorems
blanchet
parents: 49025
diff changeset
   279
49280
52413dc96326 allow default values for selectors in low-level "wrap_data" command
blanchet
parents: 49278
diff changeset
   280
fun mk_undefined T = Const (@{const_name undefined}, T);
49055
631512830082 pad the selectors' list with default names
blanchet
parents: 49054
diff changeset
   281
49500
blanchet
parents: 49498
diff changeset
   282
fun mk_ctr Ts t =
blanchet
parents: 49498
diff changeset
   283
  let val Type (_, Ts0) = body_type (fastype_of t) in
54435
4a655e62ad34 fixed type variable confusion in 'datatype_new_compat'
blanchet
parents: 54422
diff changeset
   284
    subst_nonatomic_types (Ts0 ~~ Ts) t
49203
262ab1ac38b9 repaired constant types
blanchet
parents: 49201
diff changeset
   285
  end;
262ab1ac38b9 repaired constant types
blanchet
parents: 49201
diff changeset
   286
49536
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49510
diff changeset
   287
fun mk_case Ts T t =
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49510
diff changeset
   288
  let val (Type (_, Ts0), body) = strip_type (fastype_of t) |>> List.last in
54435
4a655e62ad34 fixed type variable confusion in 'datatype_new_compat'
blanchet
parents: 54422
diff changeset
   289
    subst_nonatomic_types ((body, T) :: (Ts0 ~~ Ts)) t
49536
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49510
diff changeset
   290
  end;
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49510
diff changeset
   291
53864
a48d4bd3faaa use case rather than sequence of ifs in expansion
blanchet
parents: 53857
diff changeset
   292
fun mk_disc_or_sel Ts t =
54435
4a655e62ad34 fixed type variable confusion in 'datatype_new_compat'
blanchet
parents: 54422
diff changeset
   293
  subst_nonatomic_types (snd (Term.dest_Type (domain_type (fastype_of t))) ~~ Ts) t;
53864
a48d4bd3faaa use case rather than sequence of ifs in expansion
blanchet
parents: 53857
diff changeset
   294
58284
f9b6af3017fd nicer case names in the N2M case, similar to those generated by the old package (e.g. 'Cons_tree' instead of just 'Cons')
blanchet
parents: 58256
diff changeset
   295
val name_of_ctr = name_of_const "constructor" body_type;
51777
48a0ae342ea0 generate proper attributes for coinduction rules
blanchet
parents: 51771
diff changeset
   296
48a0ae342ea0 generate proper attributes for coinduction rules
blanchet
parents: 51771
diff changeset
   297
fun name_of_disc t =
48a0ae342ea0 generate proper attributes for coinduction rules
blanchet
parents: 51771
diff changeset
   298
  (case head_of t of
48a0ae342ea0 generate proper attributes for coinduction rules
blanchet
parents: 51771
diff changeset
   299
    Abs (_, _, @{const Not} $ (t' $ Bound 0)) =>
48a0ae342ea0 generate proper attributes for coinduction rules
blanchet
parents: 51771
diff changeset
   300
    Long_Name.map_base_name (prefix notN) (name_of_disc t')
48a0ae342ea0 generate proper attributes for coinduction rules
blanchet
parents: 51771
diff changeset
   301
  | Abs (_, _, Const (@{const_name HOL.eq}, _) $ Bound 0 $ t') =>
57260
8747af0d1012 fixed postprocessing of 'coinduct' formula to obtain right property format (without needless hypotheses)
blanchet
parents: 57200
diff changeset
   302
    Long_Name.map_base_name (prefix isN) (name_of_disc t')
51777
48a0ae342ea0 generate proper attributes for coinduction rules
blanchet
parents: 51771
diff changeset
   303
  | Abs (_, _, @{const Not} $ (Const (@{const_name HOL.eq}, _) $ Bound 0 $ t')) =>
57260
8747af0d1012 fixed postprocessing of 'coinduct' formula to obtain right property format (without needless hypotheses)
blanchet
parents: 57200
diff changeset
   304
    Long_Name.map_base_name (prefix (notN ^ isN)) (name_of_disc t')
58289
eb93bc67d361 avoid exception
blanchet
parents: 58284
diff changeset
   305
  | t' => name_of_const "discriminator" (perhaps (try domain_type)) t');
49622
a93f976c3307 use a nicer scheme to indexify names
blanchet
parents: 49619
diff changeset
   306
a93f976c3307 use a nicer scheme to indexify names
blanchet
parents: 49619
diff changeset
   307
val base_name_of_ctr = Long_Name.base_name o name_of_ctr;
49046
3c5eba97d93a allow default names for selectors via wildcard (_) + fix wrong index (k)
blanchet
parents: 49045
diff changeset
   308
53888
7031775668e8 improved massaging of case expressions
blanchet
parents: 53870
diff changeset
   309
fun dest_ctr ctxt s t =
55342
blanchet
parents: 54970
diff changeset
   310
  let val (f, args) = Term.strip_comb t in
53888
7031775668e8 improved massaging of case expressions
blanchet
parents: 53870
diff changeset
   311
    (case ctr_sugar_of ctxt s of
7031775668e8 improved massaging of case expressions
blanchet
parents: 53870
diff changeset
   312
      SOME {ctrs, ...} =>
7031775668e8 improved massaging of case expressions
blanchet
parents: 53870
diff changeset
   313
      (case find_first (can (fo_match ctxt f)) ctrs of
7031775668e8 improved massaging of case expressions
blanchet
parents: 53870
diff changeset
   314
        SOME f' => (f', args)
7031775668e8 improved massaging of case expressions
blanchet
parents: 53870
diff changeset
   315
      | NONE => raise Fail "dest_ctr")
7031775668e8 improved massaging of case expressions
blanchet
parents: 53870
diff changeset
   316
    | NONE => raise Fail "dest_ctr")
7031775668e8 improved massaging of case expressions
blanchet
parents: 53870
diff changeset
   317
  end;
7031775668e8 improved massaging of case expressions
blanchet
parents: 53870
diff changeset
   318
53870
5d45882b4f36 properly fold over branches
blanchet
parents: 53867
diff changeset
   319
fun dest_case ctxt s Ts t =
5d45882b4f36 properly fold over branches
blanchet
parents: 53867
diff changeset
   320
  (case Term.strip_comb t of
5d45882b4f36 properly fold over branches
blanchet
parents: 53867
diff changeset
   321
    (Const (c, _), args as _ :: _) =>
5d45882b4f36 properly fold over branches
blanchet
parents: 53867
diff changeset
   322
    (case ctr_sugar_of ctxt s of
54970
891141de5672 only destruct cases equipped with the right stuff (in particular, 'sel_split')
blanchet
parents: 54900
diff changeset
   323
      SOME (ctr_sugar as {casex = Const (case_name, _), discs = discs0, selss = selss0, ...}) =>
53870
5d45882b4f36 properly fold over branches
blanchet
parents: 53867
diff changeset
   324
      if case_name = c then
53924
b19d300db73b avoid calls to nth with ~1
blanchet
parents: 53919
diff changeset
   325
        let val n = length discs0 in
b19d300db73b avoid calls to nth with ~1
blanchet
parents: 53919
diff changeset
   326
          if n < length args then
b19d300db73b avoid calls to nth with ~1
blanchet
parents: 53919
diff changeset
   327
            let
b19d300db73b avoid calls to nth with ~1
blanchet
parents: 53919
diff changeset
   328
              val (branches, obj :: leftovers) = chop n args;
b19d300db73b avoid calls to nth with ~1
blanchet
parents: 53919
diff changeset
   329
              val discs = map (mk_disc_or_sel Ts) discs0;
b19d300db73b avoid calls to nth with ~1
blanchet
parents: 53919
diff changeset
   330
              val selss = map (map (mk_disc_or_sel Ts)) selss0;
b19d300db73b avoid calls to nth with ~1
blanchet
parents: 53919
diff changeset
   331
              val conds = map (rapp obj) discs;
b19d300db73b avoid calls to nth with ~1
blanchet
parents: 53919
diff changeset
   332
              val branch_argss = map (fn sels => map (rapp obj) sels @ leftovers) selss;
b19d300db73b avoid calls to nth with ~1
blanchet
parents: 53919
diff changeset
   333
              val branches' = map2 (curry Term.betapplys) branches branch_argss;
b19d300db73b avoid calls to nth with ~1
blanchet
parents: 53919
diff changeset
   334
            in
54970
891141de5672 only destruct cases equipped with the right stuff (in particular, 'sel_split')
blanchet
parents: 54900
diff changeset
   335
              SOME (ctr_sugar, conds, branches')
53924
b19d300db73b avoid calls to nth with ~1
blanchet
parents: 53919
diff changeset
   336
            end
b19d300db73b avoid calls to nth with ~1
blanchet
parents: 53919
diff changeset
   337
          else
b19d300db73b avoid calls to nth with ~1
blanchet
parents: 53919
diff changeset
   338
            NONE
53870
5d45882b4f36 properly fold over branches
blanchet
parents: 53867
diff changeset
   339
        end
5d45882b4f36 properly fold over branches
blanchet
parents: 53867
diff changeset
   340
      else
5d45882b4f36 properly fold over branches
blanchet
parents: 53867
diff changeset
   341
        NONE
5d45882b4f36 properly fold over branches
blanchet
parents: 53867
diff changeset
   342
    | _ => NONE)
5d45882b4f36 properly fold over branches
blanchet
parents: 53867
diff changeset
   343
  | _ => NONE);
5d45882b4f36 properly fold over branches
blanchet
parents: 53867
diff changeset
   344
57200
aab87ffa60cc use 'where' clause for selector default value syntax
blanchet
parents: 57094
diff changeset
   345
fun const_or_free_name (Const (s, _)) = Long_Name.base_name s
aab87ffa60cc use 'where' clause for selector default value syntax
blanchet
parents: 57094
diff changeset
   346
  | const_or_free_name (Free (s, _)) = s
aab87ffa60cc use 'where' clause for selector default value syntax
blanchet
parents: 57094
diff changeset
   347
  | const_or_free_name t = raise TERM ("const_or_free_name", [t])
49437
c139da00fb4a register induct attributes
blanchet
parents: 49434
diff changeset
   348
57200
aab87ffa60cc use 'where' clause for selector default value syntax
blanchet
parents: 57094
diff changeset
   349
fun extract_sel_default ctxt t =
aab87ffa60cc use 'where' clause for selector default value syntax
blanchet
parents: 57094
diff changeset
   350
  let
aab87ffa60cc use 'where' clause for selector default value syntax
blanchet
parents: 57094
diff changeset
   351
    fun malformed () =
aab87ffa60cc use 'where' clause for selector default value syntax
blanchet
parents: 57094
diff changeset
   352
      error ("Malformed selector default value equation: " ^ Syntax.string_of_term ctxt t);
55469
b19dd108f0c2 aligned the syntax for 'free_constructors' on the 'datatype_new' and 'codatatype' syntax
blanchet
parents: 55468
diff changeset
   353
57200
aab87ffa60cc use 'where' clause for selector default value syntax
blanchet
parents: 57094
diff changeset
   354
    val ((sel, (ctr, vars)), rhs) =
aab87ffa60cc use 'where' clause for selector default value syntax
blanchet
parents: 57094
diff changeset
   355
      fst (Term.replace_dummy_patterns (Syntax.check_term ctxt t) 0)
aab87ffa60cc use 'where' clause for selector default value syntax
blanchet
parents: 57094
diff changeset
   356
      |> HOLogic.dest_eq
aab87ffa60cc use 'where' clause for selector default value syntax
blanchet
parents: 57094
diff changeset
   357
      |>> (Term.dest_comb
aab87ffa60cc use 'where' clause for selector default value syntax
blanchet
parents: 57094
diff changeset
   358
        #>> const_or_free_name
aab87ffa60cc use 'where' clause for selector default value syntax
blanchet
parents: 57094
diff changeset
   359
        ##> (Term.strip_comb #>> (Term.dest_Const #> fst)))
aab87ffa60cc use 'where' clause for selector default value syntax
blanchet
parents: 57094
diff changeset
   360
      handle TERM _ => malformed ();
aab87ffa60cc use 'where' clause for selector default value syntax
blanchet
parents: 57094
diff changeset
   361
  in
aab87ffa60cc use 'where' clause for selector default value syntax
blanchet
parents: 57094
diff changeset
   362
    if forall (is_Free orf is_Var) vars andalso not (has_duplicates (op aconv) vars) then
aab87ffa60cc use 'where' clause for selector default value syntax
blanchet
parents: 57094
diff changeset
   363
      ((ctr, sel), fold_rev Term.lambda vars rhs)
aab87ffa60cc use 'where' clause for selector default value syntax
blanchet
parents: 57094
diff changeset
   364
    else
aab87ffa60cc use 'where' clause for selector default value syntax
blanchet
parents: 57094
diff changeset
   365
      malformed ()
aab87ffa60cc use 'where' clause for selector default value syntax
blanchet
parents: 57094
diff changeset
   366
  end;
55469
b19dd108f0c2 aligned the syntax for 'free_constructors' on the 'datatype_new' and 'codatatype' syntax
blanchet
parents: 55468
diff changeset
   367
57830
2d0f0d6fdf3e correctly resolve selector names in default value equations
blanchet
parents: 57633
diff changeset
   368
(* Ideally, we would enrich the context with constants rather than free variables. *)
2d0f0d6fdf3e correctly resolve selector names in default value equations
blanchet
parents: 57633
diff changeset
   369
fun fake_local_theory_for_sel_defaults sel_bTs =
2d0f0d6fdf3e correctly resolve selector names in default value equations
blanchet
parents: 57633
diff changeset
   370
  Proof_Context.allow_dummies
2d0f0d6fdf3e correctly resolve selector names in default value equations
blanchet
parents: 57633
diff changeset
   371
  #> Proof_Context.add_fixes (map (fn (b, T) => (b, SOME T, NoSyn)) sel_bTs)
2d0f0d6fdf3e correctly resolve selector names in default value equations
blanchet
parents: 57633
diff changeset
   372
  #> snd;
2d0f0d6fdf3e correctly resolve selector names in default value equations
blanchet
parents: 57633
diff changeset
   373
57200
aab87ffa60cc use 'where' clause for selector default value syntax
blanchet
parents: 57094
diff changeset
   374
type ('c, 'a) ctr_spec = (binding * 'c) * 'a list;
aab87ffa60cc use 'where' clause for selector default value syntax
blanchet
parents: 57094
diff changeset
   375
aab87ffa60cc use 'where' clause for selector default value syntax
blanchet
parents: 57094
diff changeset
   376
fun disc_of_ctr_spec ((disc, _), _) = disc;
aab87ffa60cc use 'where' clause for selector default value syntax
blanchet
parents: 57094
diff changeset
   377
fun ctr_of_ctr_spec ((_, ctr), _) = ctr;
aab87ffa60cc use 'where' clause for selector default value syntax
blanchet
parents: 57094
diff changeset
   378
fun args_of_ctr_spec (_, args) = args;
aab87ffa60cc use 'where' clause for selector default value syntax
blanchet
parents: 57094
diff changeset
   379
58659
6c9821c32dd5 Local_Interpretation is superseded by Plugin with formal Plugin_Name management, avoiding undeclared strings;
wenzelm
parents: 58634
diff changeset
   380
val code_plugin = Plugin_Name.declare_setup @{binding code};
6c9821c32dd5 Local_Interpretation is superseded by Plugin with formal Plugin_Name management, avoiding undeclared strings;
wenzelm
parents: 58634
diff changeset
   381
58675
69571f0a93df add 'kind' to 'cr_sugar'
desharna
parents: 58665
diff changeset
   382
fun prepare_free_constructors kind prep_plugins prep_term
59281
1b4dc8a9f7d9 added plugins syntax to prim(co)rec
blanchet
parents: 59272
diff changeset
   383
    ((((raw_plugins, discs_sels), raw_case_binding), ctr_specs), sel_default_eqs) no_defs_lthy =
49017
66fc7fc2d49b started work on datatype sugar
blanchet
parents:
diff changeset
   384
  let
58659
6c9821c32dd5 Local_Interpretation is superseded by Plugin with formal Plugin_Name management, avoiding undeclared strings;
wenzelm
parents: 58634
diff changeset
   385
    val plugins = prep_plugins no_defs_lthy raw_plugins;
6c9821c32dd5 Local_Interpretation is superseded by Plugin with formal Plugin_Name management, avoiding undeclared strings;
wenzelm
parents: 58634
diff changeset
   386
49019
fc4decdba5ce more work on BNF sugar
blanchet
parents: 49017
diff changeset
   387
    (* TODO: sanity checks on arguments *)
49025
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   388
55469
b19dd108f0c2 aligned the syntax for 'free_constructors' on the 'datatype_new' and 'codatatype' syntax
blanchet
parents: 55468
diff changeset
   389
    val raw_ctrs = map ctr_of_ctr_spec ctr_specs;
b19dd108f0c2 aligned the syntax for 'free_constructors' on the 'datatype_new' and 'codatatype' syntax
blanchet
parents: 55468
diff changeset
   390
    val raw_disc_bindings = map disc_of_ctr_spec ctr_specs;
b19dd108f0c2 aligned the syntax for 'free_constructors' on the 'datatype_new' and 'codatatype' syntax
blanchet
parents: 55468
diff changeset
   391
    val raw_sel_bindingss = map args_of_ctr_spec ctr_specs;
b19dd108f0c2 aligned the syntax for 'free_constructors' on the 'datatype_new' and 'codatatype' syntax
blanchet
parents: 55468
diff changeset
   392
49280
52413dc96326 allow default values for selectors in low-level "wrap_data" command
blanchet
parents: 49278
diff changeset
   393
    val n = length raw_ctrs;
49054
ee0a1d449f89 generate default names for selectors
blanchet
parents: 49053
diff changeset
   394
    val ks = 1 upto n;
ee0a1d449f89 generate default names for selectors
blanchet
parents: 49053
diff changeset
   395
59281
1b4dc8a9f7d9 added plugins syntax to prim(co)rec
blanchet
parents: 59272
diff changeset
   396
    val _ = n > 0 orelse error "No constructors specified";
49121
9e0acaa470ab more work on FP sugar
blanchet
parents: 49120
diff changeset
   397
49280
52413dc96326 allow default values for selectors in low-level "wrap_data" command
blanchet
parents: 49278
diff changeset
   398
    val ctrs0 = map (prep_term no_defs_lthy) raw_ctrs;
52413dc96326 allow default values for selectors in low-level "wrap_data" command
blanchet
parents: 49278
diff changeset
   399
53908
blanchet
parents: 53906
diff changeset
   400
    val Type (fcT_name, As0) = body_type (fastype_of (hd ctrs0));
blanchet
parents: 53906
diff changeset
   401
    val fc_b_name = Long_Name.base_name fcT_name;
blanchet
parents: 53906
diff changeset
   402
    val fc_b = Binding.name fc_b_name;
49055
631512830082 pad the selectors' list with default names
blanchet
parents: 49054
diff changeset
   403
55410
54b09e82b9e1 killed 'rep_compat' option
blanchet
parents: 55409
diff changeset
   404
    fun qualify mandatory = Binding.qualify mandatory fc_b_name;
49633
5b5450bc544c compatibility option to use "rep_datatype"
blanchet
parents: 49622
diff changeset
   405
59266
776964a0589f generate 'case_distrib' for Ctr_Sugars
desharna
parents: 59058
diff changeset
   406
    val (unsorted_As, [B, C]) =
49055
631512830082 pad the selectors' list with default names
blanchet
parents: 49054
diff changeset
   407
      no_defs_lthy
53268
de1dc709f9d4 handle type class annotations on (co)datatype parameters gracefully
blanchet
parents: 53210
diff changeset
   408
      |> variant_tfrees (map (fst o dest_TFree_or_TVar) As0)
59266
776964a0589f generate 'case_distrib' for Ctr_Sugars
desharna
parents: 59058
diff changeset
   409
      ||> fst o mk_TFrees 2;
49055
631512830082 pad the selectors' list with default names
blanchet
parents: 49054
diff changeset
   410
58234
265aea1e9985 honour sorts in N2M
blanchet
parents: 58227
diff changeset
   411
    val As = map2 (resort_tfree_or_tvar o snd o dest_TFree_or_TVar) As0 unsorted_As;
53268
de1dc709f9d4 handle type class annotations on (co)datatype parameters gracefully
blanchet
parents: 53210
diff changeset
   412
53908
blanchet
parents: 53906
diff changeset
   413
    val fcT = Type (fcT_name, As);
49055
631512830082 pad the selectors' list with default names
blanchet
parents: 49054
diff changeset
   414
    val ctrs = map (mk_ctr As) ctrs0;
631512830082 pad the selectors' list with default names
blanchet
parents: 49054
diff changeset
   415
    val ctr_Tss = map (binder_types o fastype_of) ctrs;
631512830082 pad the selectors' list with default names
blanchet
parents: 49054
diff changeset
   416
631512830082 pad the selectors' list with default names
blanchet
parents: 49054
diff changeset
   417
    val ms = map length ctr_Tss;
631512830082 pad the selectors' list with default names
blanchet
parents: 49054
diff changeset
   418
57091
1fa9c19ba2c9 got rid of '=:' squiggly
blanchet
parents: 57090
diff changeset
   419
    fun can_definitely_rely_on_disc k =
1fa9c19ba2c9 got rid of '=:' squiggly
blanchet
parents: 57090
diff changeset
   420
      not (Binding.is_empty (nth raw_disc_bindings (k - 1))) orelse nth ms (k - 1) = 0;
51790
22517d04d20b more intuitive syntax for equality-style discriminators of nullary constructors
blanchet
parents: 51787
diff changeset
   421
    fun can_rely_on_disc k =
22517d04d20b more intuitive syntax for equality-style discriminators of nullary constructors
blanchet
parents: 51787
diff changeset
   422
      can_definitely_rely_on_disc k orelse (k = 1 andalso not (can_definitely_rely_on_disc 2));
53925
blanchet
parents: 53924
diff changeset
   423
    fun should_omit_disc_binding k = n = 1 orelse (n = 2 andalso can_rely_on_disc (3 - k));
51790
22517d04d20b more intuitive syntax for equality-style discriminators of nullary constructors
blanchet
parents: 51787
diff changeset
   424
57090
0224caba67ca use '%x. x = C' as default discriminator for nullary constructor C, instead of relying on odd '=:' syntax
blanchet
parents: 57038
diff changeset
   425
    val equal_binding = @{binding "="};
0224caba67ca use '%x. x = C' as default discriminator for nullary constructor C, instead of relying on odd '=:' syntax
blanchet
parents: 57038
diff changeset
   426
51790
22517d04d20b more intuitive syntax for equality-style discriminators of nullary constructors
blanchet
parents: 51787
diff changeset
   427
    fun is_disc_binding_valid b =
22517d04d20b more intuitive syntax for equality-style discriminators of nullary constructors
blanchet
parents: 51787
diff changeset
   428
      not (Binding.is_empty b orelse Binding.eq_name (b, equal_binding));
51787
1267c28c7bdd changed discriminator default: avoid mixing ctor and dtor views
blanchet
parents: 51781
diff changeset
   429
52322
74315fe137ba too much qualification is like too little
blanchet
parents: 52280
diff changeset
   430
    val standard_disc_binding = Binding.name o prefix isN o base_name_of_ctr;
49120
7f8e69fc6ac9 smarter "*" syntax -- fallback on "_" if "*" is impossible
blanchet
parents: 49119
diff changeset
   431
49336
blanchet
parents: 49311
diff changeset
   432
    val disc_bindings =
55470
46e6e1d91056 removed needless robustness (no longer needed thanks to new syntax)
blanchet
parents: 55469
diff changeset
   433
      raw_disc_bindings
58634
9f10d82e8188 added parameterized ML antiquotations @{map N}, @{fold N}, @{fold_map N}, @{split_list N};
wenzelm
parents: 58335
diff changeset
   434
      |> @{map 4} (fn k => fn m => fn ctr => fn disc =>
51790
22517d04d20b more intuitive syntax for equality-style discriminators of nullary constructors
blanchet
parents: 51787
diff changeset
   435
        qualify false
51787
1267c28c7bdd changed discriminator default: avoid mixing ctor and dtor views
blanchet
parents: 51781
diff changeset
   436
          (if Binding.is_empty disc then
57091
1fa9c19ba2c9 got rid of '=:' squiggly
blanchet
parents: 57090
diff changeset
   437
             if m = 0 then equal_binding
1fa9c19ba2c9 got rid of '=:' squiggly
blanchet
parents: 57090
diff changeset
   438
             else if should_omit_disc_binding k then disc
57090
0224caba67ca use '%x. x = C' as default discriminator for nullary constructor C, instead of relying on odd '=:' syntax
blanchet
parents: 57038
diff changeset
   439
             else standard_disc_binding ctr
51790
22517d04d20b more intuitive syntax for equality-style discriminators of nullary constructors
blanchet
parents: 51787
diff changeset
   440
           else if Binding.eq_name (disc, standard_binding) then
22517d04d20b more intuitive syntax for equality-style discriminators of nullary constructors
blanchet
parents: 51787
diff changeset
   441
             standard_disc_binding ctr
49302
f5bd87aac224 added optional qualifiers for constructors and destructors, similarly to the old package
blanchet
parents: 49300
diff changeset
   442
           else
51790
22517d04d20b more intuitive syntax for equality-style discriminators of nullary constructors
blanchet
parents: 51787
diff changeset
   443
             disc)) ks ms ctrs0;
49056
blanchet
parents: 49055
diff changeset
   444
51787
1267c28c7bdd changed discriminator default: avoid mixing ctor and dtor views
blanchet
parents: 51781
diff changeset
   445
    fun standard_sel_binding m l = Binding.name o mk_unN m l o base_name_of_ctr;
49120
7f8e69fc6ac9 smarter "*" syntax -- fallback on "_" if "*" is impossible
blanchet
parents: 49119
diff changeset
   446
49336
blanchet
parents: 49311
diff changeset
   447
    val sel_bindingss =
58634
9f10d82e8188 added parameterized ML antiquotations @{map N}, @{fold N}, @{fold_map N}, @{split_list N};
wenzelm
parents: 58335
diff changeset
   448
      @{map 3} (fn ctr => fn m => map2 (fn l => fn sel =>
49633
5b5450bc544c compatibility option to use "rep_datatype"
blanchet
parents: 49622
diff changeset
   449
        qualify false
51790
22517d04d20b more intuitive syntax for equality-style discriminators of nullary constructors
blanchet
parents: 51787
diff changeset
   450
          (if Binding.is_empty sel orelse Binding.eq_name (sel, standard_binding) then
51787
1267c28c7bdd changed discriminator default: avoid mixing ctor and dtor views
blanchet
parents: 51781
diff changeset
   451
            standard_sel_binding m l ctr
49302
f5bd87aac224 added optional qualifiers for constructors and destructors, similarly to the old package
blanchet
parents: 49300
diff changeset
   452
          else
55470
46e6e1d91056 removed needless robustness (no longer needed thanks to new syntax)
blanchet
parents: 55469
diff changeset
   453
            sel)) (1 upto m) o pad_list Binding.empty m) ctrs0 ms raw_sel_bindingss;
49020
f379cf5d71bd more work on BNF sugar -- up to derivation of nchotomy
blanchet
parents: 49019
diff changeset
   454
49201
blanchet
parents: 49199
diff changeset
   455
    val case_Ts = map (fn Ts => Ts ---> B) ctr_Tss;
49043
bd3e33ee762d generate "split" property
blanchet
parents: 49034
diff changeset
   456
59267
blanchet
parents: 59266
diff changeset
   457
    val ((((((((([exh_y], (xss, xss')), yss), fs), gs), [h]), [u', v']), [w]), (p, p')),
blanchet
parents: 59266
diff changeset
   458
        names_lthy) =
55409
b74248961819 made 'ctr_sugar' more friendly to the 'datatype_realizer'
blanchet
parents: 55407
diff changeset
   459
      no_defs_lthy
b74248961819 made 'ctr_sugar' more friendly to the 'datatype_realizer'
blanchet
parents: 55407
diff changeset
   460
      |> mk_Frees "y" [fcT] (* for compatibility with "datatype_realizer.ML" *)
b74248961819 made 'ctr_sugar' more friendly to the 'datatype_realizer'
blanchet
parents: 55407
diff changeset
   461
      ||>> mk_Freess' "x" ctr_Tss
49025
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   462
      ||>> mk_Freess "y" ctr_Tss
49201
blanchet
parents: 49199
diff changeset
   463
      ||>> mk_Frees "f" case_Ts
blanchet
parents: 49199
diff changeset
   464
      ||>> mk_Frees "g" case_Ts
59266
776964a0589f generate 'case_distrib' for Ctr_Sugars
desharna
parents: 59058
diff changeset
   465
      ||>> mk_Frees "h" [B --> C]
53908
blanchet
parents: 53906
diff changeset
   466
      ||>> (apfst (map (rpair fcT)) oo Variable.variant_fixes) [fc_b_name, fc_b_name ^ "'"]
52968
2b430bbb5a1a define case constant from other 'free constructor' axioms
blanchet
parents: 52965
diff changeset
   467
      ||>> mk_Frees "z" [B]
49043
bd3e33ee762d generate "split" property
blanchet
parents: 49034
diff changeset
   468
      ||>> yield_singleton (apfst (op ~~) oo mk_Frees' "P") HOLogic.boolT;
bd3e33ee762d generate "split" property
blanchet
parents: 49034
diff changeset
   469
49498
acc583e14167 tuned variable names
blanchet
parents: 49486
diff changeset
   470
    val u = Free u';
acc583e14167 tuned variable names
blanchet
parents: 49486
diff changeset
   471
    val v = Free v';
49463
83ac281bcdc2 provide predicator, define relator
blanchet
parents: 49458
diff changeset
   472
    val q = Free (fst p', mk_pred1T B);
49020
f379cf5d71bd more work on BNF sugar -- up to derivation of nchotomy
blanchet
parents: 49019
diff changeset
   473
49025
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   474
    val xctrs = map2 (curry Term.list_comb) ctrs xss;
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   475
    val yctrs = map2 (curry Term.list_comb) ctrs yss;
49032
c2a7bedd57d8 generate "case_cong" property
blanchet
parents: 49031
diff changeset
   476
49043
bd3e33ee762d generate "split" property
blanchet
parents: 49034
diff changeset
   477
    val xfs = map2 (curry Term.list_comb) fs xss;
bd3e33ee762d generate "split" property
blanchet
parents: 49034
diff changeset
   478
    val xgs = map2 (curry Term.list_comb) gs xss;
bd3e33ee762d generate "split" property
blanchet
parents: 49034
diff changeset
   479
52968
2b430bbb5a1a define case constant from other 'free constructor' axioms
blanchet
parents: 52965
diff changeset
   480
    (* TODO: Eta-expension is for compatibility with the old datatype package (but it also provides
2b430bbb5a1a define case constant from other 'free constructor' axioms
blanchet
parents: 52965
diff changeset
   481
       nicer names). Consider removing. *)
57200
aab87ffa60cc use 'where' clause for selector default value syntax
blanchet
parents: 57094
diff changeset
   482
    val eta_fs = map2 (fold_rev Term.lambda) xss xfs;
aab87ffa60cc use 'where' clause for selector default value syntax
blanchet
parents: 57094
diff changeset
   483
    val eta_gs = map2 (fold_rev Term.lambda) xss xgs;
52968
2b430bbb5a1a define case constant from other 'free constructor' axioms
blanchet
parents: 52965
diff changeset
   484
2b430bbb5a1a define case constant from other 'free constructor' axioms
blanchet
parents: 52965
diff changeset
   485
    val case_binding =
2b430bbb5a1a define case constant from other 'free constructor' axioms
blanchet
parents: 52965
diff changeset
   486
      qualify false
2b430bbb5a1a define case constant from other 'free constructor' axioms
blanchet
parents: 52965
diff changeset
   487
        (if Binding.is_empty raw_case_binding orelse
2b430bbb5a1a define case constant from other 'free constructor' axioms
blanchet
parents: 52965
diff changeset
   488
            Binding.eq_name (raw_case_binding, standard_binding) then
54493
5b34a5b93ec2 use type suffixes instead of prefixes for 'case', '(un)fold', '(co)rec'
blanchet
parents: 54491
diff changeset
   489
           Binding.prefix_name (caseN ^ "_") fc_b
52968
2b430bbb5a1a define case constant from other 'free constructor' axioms
blanchet
parents: 52965
diff changeset
   490
         else
2b430bbb5a1a define case constant from other 'free constructor' axioms
blanchet
parents: 52965
diff changeset
   491
           raw_case_binding);
2b430bbb5a1a define case constant from other 'free constructor' axioms
blanchet
parents: 52965
diff changeset
   492
2b430bbb5a1a define case constant from other 'free constructor' axioms
blanchet
parents: 52965
diff changeset
   493
    fun mk_case_disj xctr xf xs =
2b430bbb5a1a define case constant from other 'free constructor' axioms
blanchet
parents: 52965
diff changeset
   494
      list_exists_free xs (HOLogic.mk_conj (HOLogic.mk_eq (u, xctr), HOLogic.mk_eq (w, xf)));
2b430bbb5a1a define case constant from other 'free constructor' axioms
blanchet
parents: 52965
diff changeset
   495
53925
blanchet
parents: 53924
diff changeset
   496
    val case_rhs = fold_rev (fold_rev Term.lambda) [fs, [u]]
blanchet
parents: 53924
diff changeset
   497
      (Const (@{const_name The}, (B --> HOLogic.boolT) --> B) $
58634
9f10d82e8188 added parameterized ML antiquotations @{map N}, @{fold N}, @{fold_map N}, @{split_list N};
wenzelm
parents: 58335
diff changeset
   498
         Term.lambda w (Library.foldr1 HOLogic.mk_disj (@{map 3} mk_case_disj xctrs xfs xss)));
52968
2b430bbb5a1a define case constant from other 'free constructor' axioms
blanchet
parents: 52965
diff changeset
   499
2b430bbb5a1a define case constant from other 'free constructor' axioms
blanchet
parents: 52965
diff changeset
   500
    val ((raw_case, (_, raw_case_def)), (lthy', lthy)) = no_defs_lthy
54155
b964fad0cbbd conceal more ugly constructions
blanchet
parents: 54151
diff changeset
   501
      |> Local_Theory.define ((case_binding, NoSyn),
59859
f9d1442c70f3 tuned signature;
wenzelm
parents: 59647
diff changeset
   502
        ((Binding.concealed (Thm.def_binding case_binding), []), case_rhs))
52968
2b430bbb5a1a define case constant from other 'free constructor' axioms
blanchet
parents: 52965
diff changeset
   503
      ||> `Local_Theory.restore;
2b430bbb5a1a define case constant from other 'free constructor' axioms
blanchet
parents: 52965
diff changeset
   504
2b430bbb5a1a define case constant from other 'free constructor' axioms
blanchet
parents: 52965
diff changeset
   505
    val phi = Proof_Context.export_morphism lthy lthy';
2b430bbb5a1a define case constant from other 'free constructor' axioms
blanchet
parents: 52965
diff changeset
   506
2b430bbb5a1a define case constant from other 'free constructor' axioms
blanchet
parents: 52965
diff changeset
   507
    val case_def = Morphism.thm phi raw_case_def;
2b430bbb5a1a define case constant from other 'free constructor' axioms
blanchet
parents: 52965
diff changeset
   508
2b430bbb5a1a define case constant from other 'free constructor' axioms
blanchet
parents: 52965
diff changeset
   509
    val case0 = Morphism.term phi raw_case;
2b430bbb5a1a define case constant from other 'free constructor' axioms
blanchet
parents: 52965
diff changeset
   510
    val casex = mk_case As B case0;
59266
776964a0589f generate 'case_distrib' for Ctr_Sugars
desharna
parents: 59058
diff changeset
   511
    val casexC = mk_case As C case0;
59271
c448752e8b9d generate 'disc_eq_case' for Ctr_Sugars
desharna
parents: 59267
diff changeset
   512
    val casexBool = mk_case As HOLogic.boolT case0;
52968
2b430bbb5a1a define case constant from other 'free constructor' axioms
blanchet
parents: 52965
diff changeset
   513
51759
587bba425430 eta-contracted weak congruence rules (like in the old package)
blanchet
parents: 51757
diff changeset
   514
    val fcase = Term.list_comb (casex, fs);
587bba425430 eta-contracted weak congruence rules (like in the old package)
blanchet
parents: 51757
diff changeset
   515
587bba425430 eta-contracted weak congruence rules (like in the old package)
blanchet
parents: 51757
diff changeset
   516
    val ufcase = fcase $ u;
587bba425430 eta-contracted weak congruence rules (like in the old package)
blanchet
parents: 51757
diff changeset
   517
    val vfcase = fcase $ v;
587bba425430 eta-contracted weak congruence rules (like in the old package)
blanchet
parents: 51757
diff changeset
   518
587bba425430 eta-contracted weak congruence rules (like in the old package)
blanchet
parents: 51757
diff changeset
   519
    val eta_fcase = Term.list_comb (casex, eta_fs);
587bba425430 eta-contracted weak congruence rules (like in the old package)
blanchet
parents: 51757
diff changeset
   520
    val eta_gcase = Term.list_comb (casex, eta_gs);
49020
f379cf5d71bd more work on BNF sugar -- up to derivation of nchotomy
blanchet
parents: 49019
diff changeset
   521
51759
587bba425430 eta-contracted weak congruence rules (like in the old package)
blanchet
parents: 51757
diff changeset
   522
    val eta_ufcase = eta_fcase $ u;
587bba425430 eta-contracted weak congruence rules (like in the old package)
blanchet
parents: 51757
diff changeset
   523
    val eta_vgcase = eta_gcase $ v;
49486
64cc57c0d0fe generate "expand" property
blanchet
parents: 49484
diff changeset
   524
49591
91b228e26348 generate high-level "coinduct" and "strong_coinduct" properties
blanchet
parents: 49586
diff changeset
   525
    fun mk_uu_eq () = HOLogic.mk_eq (u, u);
49486
64cc57c0d0fe generate "expand" property
blanchet
parents: 49484
diff changeset
   526
49591
91b228e26348 generate high-level "coinduct" and "strong_coinduct" properties
blanchet
parents: 49586
diff changeset
   527
    val uv_eq = mk_Trueprop_eq (u, v);
49486
64cc57c0d0fe generate "expand" property
blanchet
parents: 49484
diff changeset
   528
64cc57c0d0fe generate "expand" property
blanchet
parents: 49484
diff changeset
   529
    val exist_xs_u_eq_ctrs =
64cc57c0d0fe generate "expand" property
blanchet
parents: 49484
diff changeset
   530
      map2 (fn xctr => fn xs => list_exists_free xs (HOLogic.mk_eq (u, xctr))) xctrs xss;
49022
005ce926a932 define selectors and discriminators
blanchet
parents: 49020
diff changeset
   531
51743
blanchet
parents: 51742
diff changeset
   532
    val unique_disc_no_def = TrueI; (*arbitrary marker*)
blanchet
parents: 51742
diff changeset
   533
    val alternate_disc_no_def = FalseE; (*arbitrary marker*)
blanchet
parents: 51742
diff changeset
   534
49486
64cc57c0d0fe generate "expand" property
blanchet
parents: 49484
diff changeset
   535
    fun alternate_disc_lhs get_udisc k =
49116
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   536
      HOLogic.mk_not
51790
22517d04d20b more intuitive syntax for equality-style discriminators of nullary constructors
blanchet
parents: 51787
diff changeset
   537
        (let val b = nth disc_bindings (k - 1) in
22517d04d20b more intuitive syntax for equality-style discriminators of nullary constructors
blanchet
parents: 51787
diff changeset
   538
           if is_disc_binding_valid b then get_udisc b (k - 1) else nth exist_xs_u_eq_ctrs (k - 1)
22517d04d20b more intuitive syntax for equality-style discriminators of nullary constructors
blanchet
parents: 51787
diff changeset
   539
         end);
49116
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   540
57094
589ec121ce1a don't generate discriminators and selectors for 'datatype_new' unless the user asked for it
blanchet
parents: 57091
diff changeset
   541
    val no_discs_sels =
589ec121ce1a don't generate discriminators and selectors for 'datatype_new' unless the user asked for it
blanchet
parents: 57091
diff changeset
   542
      not discs_sels andalso
589ec121ce1a don't generate discriminators and selectors for 'datatype_new' unless the user asked for it
blanchet
parents: 57091
diff changeset
   543
      forall (forall Binding.is_empty) (raw_disc_bindings :: raw_sel_bindingss) andalso
57200
aab87ffa60cc use 'where' clause for selector default value syntax
blanchet
parents: 57094
diff changeset
   544
      null sel_default_eqs;
57094
589ec121ce1a don't generate discriminators and selectors for 'datatype_new' unless the user asked for it
blanchet
parents: 57091
diff changeset
   545
53917
bf74357f91f8 generate "sel_splits(_asm)" theorems
blanchet
parents: 53916
diff changeset
   546
    val (all_sels_distinct, discs, selss, disc_defs, sel_defs, sel_defss, lthy') =
52969
f2df0730f8ac clarified option name (since case/fold/rec are also destructors)
blanchet
parents: 52968
diff changeset
   547
      if no_discs_sels then
55407
81f7e60755c3 use right local theory -- shows up when 'no_discs_sels' is set
blanchet
parents: 55394
diff changeset
   548
        (true, [], [], [], [], [], lthy')
49278
718e4ad1517e added no_dests option
blanchet
parents: 49277
diff changeset
   549
      else
718e4ad1517e added no_dests option
blanchet
parents: 49277
diff changeset
   550
        let
57830
2d0f0d6fdf3e correctly resolve selector names in default value equations
blanchet
parents: 57633
diff changeset
   551
          val all_sel_bindings = flat sel_bindingss;
2d0f0d6fdf3e correctly resolve selector names in default value equations
blanchet
parents: 57633
diff changeset
   552
          val num_all_sel_bindings = length all_sel_bindings;
2d0f0d6fdf3e correctly resolve selector names in default value equations
blanchet
parents: 57633
diff changeset
   553
          val uniq_sel_bindings = distinct Binding.eq_name all_sel_bindings;
2d0f0d6fdf3e correctly resolve selector names in default value equations
blanchet
parents: 57633
diff changeset
   554
          val all_sels_distinct = (length uniq_sel_bindings = num_all_sel_bindings);
57200
aab87ffa60cc use 'where' clause for selector default value syntax
blanchet
parents: 57094
diff changeset
   555
aab87ffa60cc use 'where' clause for selector default value syntax
blanchet
parents: 57094
diff changeset
   556
          val sel_binding_index =
57830
2d0f0d6fdf3e correctly resolve selector names in default value equations
blanchet
parents: 57633
diff changeset
   557
            if all_sels_distinct then
2d0f0d6fdf3e correctly resolve selector names in default value equations
blanchet
parents: 57633
diff changeset
   558
              1 upto num_all_sel_bindings
2d0f0d6fdf3e correctly resolve selector names in default value equations
blanchet
parents: 57633
diff changeset
   559
            else
2d0f0d6fdf3e correctly resolve selector names in default value equations
blanchet
parents: 57633
diff changeset
   560
              map (fn b => find_index (curry Binding.eq_name b) uniq_sel_bindings) all_sel_bindings;
57200
aab87ffa60cc use 'where' clause for selector default value syntax
blanchet
parents: 57094
diff changeset
   561
58634
9f10d82e8188 added parameterized ML antiquotations @{map N}, @{fold N}, @{fold_map N}, @{split_list N};
wenzelm
parents: 58335
diff changeset
   562
          val all_proto_sels = flat (@{map 3} (fn k => fn xs => map (pair k o pair xs)) ks xss xss);
57200
aab87ffa60cc use 'where' clause for selector default value syntax
blanchet
parents: 57094
diff changeset
   563
          val sel_infos =
aab87ffa60cc use 'where' clause for selector default value syntax
blanchet
parents: 57094
diff changeset
   564
            AList.group (op =) (sel_binding_index ~~ all_proto_sels)
59058
a78612c67ec0 renamed "pairself" to "apply2", in accordance to @{apply 2};
wenzelm
parents: 58998
diff changeset
   565
            |> sort (int_ord o apply2 fst)
57200
aab87ffa60cc use 'where' clause for selector default value syntax
blanchet
parents: 57094
diff changeset
   566
            |> map snd |> curry (op ~~) uniq_sel_bindings;
aab87ffa60cc use 'where' clause for selector default value syntax
blanchet
parents: 57094
diff changeset
   567
          val sel_bindings = map fst sel_infos;
aab87ffa60cc use 'where' clause for selector default value syntax
blanchet
parents: 57094
diff changeset
   568
aab87ffa60cc use 'where' clause for selector default value syntax
blanchet
parents: 57094
diff changeset
   569
          val sel_defaults =
57830
2d0f0d6fdf3e correctly resolve selector names in default value equations
blanchet
parents: 57633
diff changeset
   570
            if null sel_default_eqs then
2d0f0d6fdf3e correctly resolve selector names in default value equations
blanchet
parents: 57633
diff changeset
   571
              []
2d0f0d6fdf3e correctly resolve selector names in default value equations
blanchet
parents: 57633
diff changeset
   572
            else
2d0f0d6fdf3e correctly resolve selector names in default value equations
blanchet
parents: 57633
diff changeset
   573
              let
2d0f0d6fdf3e correctly resolve selector names in default value equations
blanchet
parents: 57633
diff changeset
   574
                val sel_Ts = map (curry (op -->) fcT o fastype_of o snd o snd o hd o snd) sel_infos;
2d0f0d6fdf3e correctly resolve selector names in default value equations
blanchet
parents: 57633
diff changeset
   575
                val fake_lthy =
2d0f0d6fdf3e correctly resolve selector names in default value equations
blanchet
parents: 57633
diff changeset
   576
                  fake_local_theory_for_sel_defaults (sel_bindings ~~ sel_Ts) no_defs_lthy;
2d0f0d6fdf3e correctly resolve selector names in default value equations
blanchet
parents: 57633
diff changeset
   577
              in
2d0f0d6fdf3e correctly resolve selector names in default value equations
blanchet
parents: 57633
diff changeset
   578
                map (extract_sel_default fake_lthy o prep_term fake_lthy) sel_default_eqs
2d0f0d6fdf3e correctly resolve selector names in default value equations
blanchet
parents: 57633
diff changeset
   579
              end;
57200
aab87ffa60cc use 'where' clause for selector default value syntax
blanchet
parents: 57094
diff changeset
   580
53908
blanchet
parents: 53906
diff changeset
   581
          fun disc_free b = Free (Binding.name_of b, mk_pred1T fcT);
49025
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   582
54634
366297517091 reverted 141cb34744de and e78e7df36690 -- better provide nicer "eta-expanded" definitions for discriminators and selectors, since users might want to unfold them
blanchet
parents: 54626
diff changeset
   583
          fun disc_spec b exist_xs_u_eq_ctr = mk_Trueprop_eq (disc_free b $ u, exist_xs_u_eq_ctr);
366297517091 reverted 141cb34744de and e78e7df36690 -- better provide nicer "eta-expanded" definitions for discriminators and selectors, since users might want to unfold them
blanchet
parents: 54626
diff changeset
   584
49500
blanchet
parents: 49498
diff changeset
   585
          fun alternate_disc k =
blanchet
parents: 49498
diff changeset
   586
            Term.lambda u (alternate_disc_lhs (K o rapp u o disc_free) (3 - k));
49278
718e4ad1517e added no_dests option
blanchet
parents: 49277
diff changeset
   587
49280
52413dc96326 allow default values for selectors in low-level "wrap_data" command
blanchet
parents: 49278
diff changeset
   588
          fun mk_sel_case_args b proto_sels T =
58634
9f10d82e8188 added parameterized ML antiquotations @{map N}, @{fold N}, @{fold_map N}, @{split_list N};
wenzelm
parents: 58335
diff changeset
   589
            @{map 3} (fn Const (c, _) => fn Ts => fn k =>
49280
52413dc96326 allow default values for selectors in low-level "wrap_data" command
blanchet
parents: 49278
diff changeset
   590
              (case AList.lookup (op =) proto_sels k of
52413dc96326 allow default values for selectors in low-level "wrap_data" command
blanchet
parents: 49278
diff changeset
   591
                NONE =>
57200
aab87ffa60cc use 'where' clause for selector default value syntax
blanchet
parents: 57094
diff changeset
   592
                (case filter (curry (op =) (c, Binding.name_of b) o fst) sel_defaults of
aab87ffa60cc use 'where' clause for selector default value syntax
blanchet
parents: 57094
diff changeset
   593
                  [] => fold_rev (Term.lambda o curry Free Name.uu) Ts (mk_undefined T)
aab87ffa60cc use 'where' clause for selector default value syntax
blanchet
parents: 57094
diff changeset
   594
                | [(_, t)] => t
aab87ffa60cc use 'where' clause for selector default value syntax
blanchet
parents: 57094
diff changeset
   595
                | _ => error "Multiple default values for selector/constructor pair")
aab87ffa60cc use 'where' clause for selector default value syntax
blanchet
parents: 57094
diff changeset
   596
              | SOME (xs, x) => fold_rev Term.lambda xs x)) ctrs ctr_Tss ks;
49258
84f13469d7f0 allow same selector name for several constructors
blanchet
parents: 49257
diff changeset
   597
54634
366297517091 reverted 141cb34744de and e78e7df36690 -- better provide nicer "eta-expanded" definitions for discriminators and selectors, since users might want to unfold them
blanchet
parents: 54626
diff changeset
   598
          fun sel_spec b proto_sels =
49278
718e4ad1517e added no_dests option
blanchet
parents: 49277
diff changeset
   599
            let
718e4ad1517e added no_dests option
blanchet
parents: 49277
diff changeset
   600
              val _ =
718e4ad1517e added no_dests option
blanchet
parents: 49277
diff changeset
   601
                (case duplicates (op =) (map fst proto_sels) of
718e4ad1517e added no_dests option
blanchet
parents: 49277
diff changeset
   602
                   k :: _ => error ("Duplicate selector name " ^ quote (Binding.name_of b) ^
57200
aab87ffa60cc use 'where' clause for selector default value syntax
blanchet
parents: 57094
diff changeset
   603
                     " for constructor " ^ quote (Syntax.string_of_term lthy (nth ctrs (k - 1))))
49278
718e4ad1517e added no_dests option
blanchet
parents: 49277
diff changeset
   604
                 | [] => ())
718e4ad1517e added no_dests option
blanchet
parents: 49277
diff changeset
   605
              val T =
718e4ad1517e added no_dests option
blanchet
parents: 49277
diff changeset
   606
                (case distinct (op =) (map (fastype_of o snd o snd) proto_sels) of
718e4ad1517e added no_dests option
blanchet
parents: 49277
diff changeset
   607
                  [T] => T
718e4ad1517e added no_dests option
blanchet
parents: 49277
diff changeset
   608
                | T :: T' :: _ => error ("Inconsistent range type for selector " ^
57200
aab87ffa60cc use 'where' clause for selector default value syntax
blanchet
parents: 57094
diff changeset
   609
                    quote (Binding.name_of b) ^ ": " ^ quote (Syntax.string_of_typ lthy T) ^
aab87ffa60cc use 'where' clause for selector default value syntax
blanchet
parents: 57094
diff changeset
   610
                    " vs. " ^ quote (Syntax.string_of_typ lthy T')));
49278
718e4ad1517e added no_dests option
blanchet
parents: 49277
diff changeset
   611
            in
54634
366297517091 reverted 141cb34744de and e78e7df36690 -- better provide nicer "eta-expanded" definitions for discriminators and selectors, since users might want to unfold them
blanchet
parents: 54626
diff changeset
   612
              mk_Trueprop_eq (Free (Binding.name_of b, fcT --> T) $ u,
366297517091 reverted 141cb34744de and e78e7df36690 -- better provide nicer "eta-expanded" definitions for discriminators and selectors, since users might want to unfold them
blanchet
parents: 54626
diff changeset
   613
                Term.list_comb (mk_case As T case0, mk_sel_case_args b proto_sels T) $ u)
49278
718e4ad1517e added no_dests option
blanchet
parents: 49277
diff changeset
   614
            end;
49116
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   615
49336
blanchet
parents: 49311
diff changeset
   616
          fun unflat_selss xs = unflat_lookup Binding.eq_name sel_bindings xs sel_bindingss;
49258
84f13469d7f0 allow same selector name for several constructors
blanchet
parents: 49257
diff changeset
   617
49278
718e4ad1517e added no_dests option
blanchet
parents: 49277
diff changeset
   618
          val (((raw_discs, raw_disc_defs), (raw_sels, raw_sel_defs)), (lthy', lthy)) =
52968
2b430bbb5a1a define case constant from other 'free constructor' axioms
blanchet
parents: 52965
diff changeset
   619
            lthy
58634
9f10d82e8188 added parameterized ML antiquotations @{map N}, @{fold N}, @{fold_map N}, @{split_list N};
wenzelm
parents: 58335
diff changeset
   620
            |> apfst split_list o @{fold_map 3} (fn k => fn exist_xs_u_eq_ctr => fn b =>
54634
366297517091 reverted 141cb34744de and e78e7df36690 -- better provide nicer "eta-expanded" definitions for discriminators and selectors, since users might want to unfold them
blanchet
parents: 54626
diff changeset
   621
                if Binding.is_empty b then
366297517091 reverted 141cb34744de and e78e7df36690 -- better provide nicer "eta-expanded" definitions for discriminators and selectors, since users might want to unfold them
blanchet
parents: 54626
diff changeset
   622
                  if n = 1 then pair (Term.lambda u (mk_uu_eq ()), unique_disc_no_def)
366297517091 reverted 141cb34744de and e78e7df36690 -- better provide nicer "eta-expanded" definitions for discriminators and selectors, since users might want to unfold them
blanchet
parents: 54626
diff changeset
   623
                  else pair (alternate_disc k, alternate_disc_no_def)
366297517091 reverted 141cb34744de and e78e7df36690 -- better provide nicer "eta-expanded" definitions for discriminators and selectors, since users might want to unfold them
blanchet
parents: 54626
diff changeset
   624
                else if Binding.eq_name (b, equal_binding) then
366297517091 reverted 141cb34744de and e78e7df36690 -- better provide nicer "eta-expanded" definitions for discriminators and selectors, since users might want to unfold them
blanchet
parents: 54626
diff changeset
   625
                  pair (Term.lambda u exist_xs_u_eq_ctr, refl)
366297517091 reverted 141cb34744de and e78e7df36690 -- better provide nicer "eta-expanded" definitions for discriminators and selectors, since users might want to unfold them
blanchet
parents: 54626
diff changeset
   626
                else
366297517091 reverted 141cb34744de and e78e7df36690 -- better provide nicer "eta-expanded" definitions for discriminators and selectors, since users might want to unfold them
blanchet
parents: 54626
diff changeset
   627
                  Specification.definition (SOME (b, NONE, NoSyn),
366297517091 reverted 141cb34744de and e78e7df36690 -- better provide nicer "eta-expanded" definitions for discriminators and selectors, since users might want to unfold them
blanchet
parents: 54626
diff changeset
   628
                    ((Thm.def_binding b, []), disc_spec b exist_xs_u_eq_ctr)) #>> apsnd snd)
366297517091 reverted 141cb34744de and e78e7df36690 -- better provide nicer "eta-expanded" definitions for discriminators and selectors, since users might want to unfold them
blanchet
parents: 54626
diff changeset
   629
              ks exist_xs_u_eq_ctrs disc_bindings
49278
718e4ad1517e added no_dests option
blanchet
parents: 49277
diff changeset
   630
            ||>> apfst split_list o fold_map (fn (b, proto_sels) =>
54634
366297517091 reverted 141cb34744de and e78e7df36690 -- better provide nicer "eta-expanded" definitions for discriminators and selectors, since users might want to unfold them
blanchet
parents: 54626
diff changeset
   631
              Specification.definition (SOME (b, NONE, NoSyn),
366297517091 reverted 141cb34744de and e78e7df36690 -- better provide nicer "eta-expanded" definitions for discriminators and selectors, since users might want to unfold them
blanchet
parents: 54626
diff changeset
   632
                ((Thm.def_binding b, []), sel_spec b proto_sels)) #>> apsnd snd) sel_infos
49278
718e4ad1517e added no_dests option
blanchet
parents: 49277
diff changeset
   633
            ||> `Local_Theory.restore;
49022
005ce926a932 define selectors and discriminators
blanchet
parents: 49020
diff changeset
   634
49278
718e4ad1517e added no_dests option
blanchet
parents: 49277
diff changeset
   635
          val phi = Proof_Context.export_morphism lthy lthy';
49025
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   636
49278
718e4ad1517e added no_dests option
blanchet
parents: 49277
diff changeset
   637
          val disc_defs = map (Morphism.thm phi) raw_disc_defs;
49281
3d87f4fd0d50 generate all sel theorems
blanchet
parents: 49280
diff changeset
   638
          val sel_defs = map (Morphism.thm phi) raw_sel_defs;
3d87f4fd0d50 generate all sel theorems
blanchet
parents: 49280
diff changeset
   639
          val sel_defss = unflat_selss sel_defs;
49278
718e4ad1517e added no_dests option
blanchet
parents: 49277
diff changeset
   640
718e4ad1517e added no_dests option
blanchet
parents: 49277
diff changeset
   641
          val discs0 = map (Morphism.term phi) raw_discs;
718e4ad1517e added no_dests option
blanchet
parents: 49277
diff changeset
   642
          val selss0 = unflat_selss (map (Morphism.term phi) raw_sels);
49028
487427a02bee generate "disc_distinct" theorems
blanchet
parents: 49027
diff changeset
   643
49278
718e4ad1517e added no_dests option
blanchet
parents: 49277
diff changeset
   644
          val discs = map (mk_disc_or_sel As) discs0;
718e4ad1517e added no_dests option
blanchet
parents: 49277
diff changeset
   645
          val selss = map (map (mk_disc_or_sel As)) selss0;
718e4ad1517e added no_dests option
blanchet
parents: 49277
diff changeset
   646
        in
53917
bf74357f91f8 generate "sel_splits(_asm)" theorems
blanchet
parents: 53916
diff changeset
   647
          (all_sels_distinct, discs, selss, disc_defs, sel_defs, sel_defss, lthy')
49278
718e4ad1517e added no_dests option
blanchet
parents: 49277
diff changeset
   648
        end;
49025
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   649
49032
c2a7bedd57d8 generate "case_cong" property
blanchet
parents: 49031
diff changeset
   650
    fun mk_imp_p Qs = Logic.list_implies (Qs, HOLogic.mk_Trueprop p);
49029
f0ecfa9575a9 generate "disc_exhaust" property
blanchet
parents: 49028
diff changeset
   651
49458
blanchet
parents: 49438
diff changeset
   652
    val exhaust_goal =
55409
b74248961819 made 'ctr_sugar' more friendly to the 'datatype_realizer'
blanchet
parents: 55407
diff changeset
   653
      let fun mk_prem xctr xs = fold_rev Logic.all xs (mk_imp_p [mk_Trueprop_eq (exh_y, xctr)]) in
b74248961819 made 'ctr_sugar' more friendly to the 'datatype_realizer'
blanchet
parents: 55407
diff changeset
   654
        fold_rev Logic.all [p, exh_y] (mk_imp_p (map2 mk_prem xctrs xss))
49020
f379cf5d71bd more work on BNF sugar -- up to derivation of nchotomy
blanchet
parents: 49019
diff changeset
   655
      end;
49019
fc4decdba5ce more work on BNF sugar
blanchet
parents: 49017
diff changeset
   656
49484
0194a18f80cf finished "disc_coiter_iff" etc. generation
blanchet
parents: 49478
diff changeset
   657
    val inject_goalss =
49017
66fc7fc2d49b started work on datatype sugar
blanchet
parents:
diff changeset
   658
      let
49034
b77e1910af8a make parallel list indexing possible for inject theorems
blanchet
parents: 49033
diff changeset
   659
        fun mk_goal _ _ [] [] = []
49025
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   660
          | mk_goal xctr yctr xs ys =
49121
9e0acaa470ab more work on FP sugar
blanchet
parents: 49120
diff changeset
   661
            [fold_rev Logic.all (xs @ ys) (mk_Trueprop_eq (HOLogic.mk_eq (xctr, yctr),
9e0acaa470ab more work on FP sugar
blanchet
parents: 49120
diff changeset
   662
              Library.foldr1 HOLogic.mk_conj (map2 (curry HOLogic.mk_eq) xs ys)))];
49017
66fc7fc2d49b started work on datatype sugar
blanchet
parents:
diff changeset
   663
      in
58634
9f10d82e8188 added parameterized ML antiquotations @{map N}, @{fold N}, @{fold_map N}, @{split_list N};
wenzelm
parents: 58335
diff changeset
   664
        @{map 4} mk_goal xctrs yctrs xss yss
49017
66fc7fc2d49b started work on datatype sugar
blanchet
parents:
diff changeset
   665
      end;
66fc7fc2d49b started work on datatype sugar
blanchet
parents:
diff changeset
   666
49484
0194a18f80cf finished "disc_coiter_iff" etc. generation
blanchet
parents: 49478
diff changeset
   667
    val half_distinct_goalss =
49121
9e0acaa470ab more work on FP sugar
blanchet
parents: 49120
diff changeset
   668
      let
49203
262ab1ac38b9 repaired constant types
blanchet
parents: 49201
diff changeset
   669
        fun mk_goal ((xs, xc), (xs', xc')) =
49121
9e0acaa470ab more work on FP sugar
blanchet
parents: 49120
diff changeset
   670
          fold_rev Logic.all (xs @ xs')
49203
262ab1ac38b9 repaired constant types
blanchet
parents: 49201
diff changeset
   671
            (HOLogic.mk_Trueprop (HOLogic.mk_not (HOLogic.mk_eq (xc, xc'))));
49121
9e0acaa470ab more work on FP sugar
blanchet
parents: 49120
diff changeset
   672
      in
49585
5c4a12550491 generate high-level "maps", "sets", and "rels" properties
blanchet
parents: 49536
diff changeset
   673
        map (map mk_goal) (mk_half_pairss (`I (xss ~~ xctrs)))
49121
9e0acaa470ab more work on FP sugar
blanchet
parents: 49120
diff changeset
   674
      end;
49019
fc4decdba5ce more work on BNF sugar
blanchet
parents: 49017
diff changeset
   675
52968
2b430bbb5a1a define case constant from other 'free constructor' axioms
blanchet
parents: 52965
diff changeset
   676
    val goalss = [exhaust_goal] :: inject_goalss @ half_distinct_goalss;
49019
fc4decdba5ce more work on BNF sugar
blanchet
parents: 49017
diff changeset
   677
59267
blanchet
parents: 59266
diff changeset
   678
    fun after_qed (thmss0 as [exhaust_thm] :: thmss) lthy =
49019
fc4decdba5ce more work on BNF sugar
blanchet
parents: 49017
diff changeset
   679
      let
57633
4ff8c090d580 repaired named derivations
blanchet
parents: 57631
diff changeset
   680
        val ((inject_thms, inject_thmss), half_distinct_thmss) = chop n thmss |>> `flat;
49438
5bc80d96241e group "simps" together
blanchet
parents: 49437
diff changeset
   681
59621
291934bac95e Thm.cterm_of and Thm.ctyp_of operate on local context;
wenzelm
parents: 59582
diff changeset
   682
        val rho_As = map (apply2 (Thm.ctyp_of lthy)) (map Logic.varifyT_global As ~~ As);
49486
64cc57c0d0fe generate "expand" property
blanchet
parents: 49484
diff changeset
   683
64cc57c0d0fe generate "expand" property
blanchet
parents: 49484
diff changeset
   684
        fun inst_thm t thm =
59621
291934bac95e Thm.cterm_of and Thm.ctyp_of operate on local context;
wenzelm
parents: 59582
diff changeset
   685
          Drule.instantiate' [] [SOME (Thm.cterm_of lthy t)]
53210
7219c61796c0 simplify code (now that ctr_sugar uses the same type variables as fp_sugar)
blanchet
parents: 53040
diff changeset
   686
            (Thm.instantiate (rho_As, []) (Drule.zero_var_indexes thm));
49486
64cc57c0d0fe generate "expand" property
blanchet
parents: 49484
diff changeset
   687
64cc57c0d0fe generate "expand" property
blanchet
parents: 49484
diff changeset
   688
        val uexhaust_thm = inst_thm u exhaust_thm;
49032
c2a7bedd57d8 generate "case_cong" property
blanchet
parents: 49031
diff changeset
   689
49300
c707df2e2083 added attributes to theorems
blanchet
parents: 49298
diff changeset
   690
        val exhaust_cases = map base_name_of_ctr ctrs;
c707df2e2083 added attributes to theorems
blanchet
parents: 49298
diff changeset
   691
49048
4e0f0f98be02 rationalized data structure for distinctness theorems
blanchet
parents: 49046
diff changeset
   692
        val other_half_distinct_thmss = map (map (fn thm => thm RS not_sym)) half_distinct_thmss;
4e0f0f98be02 rationalized data structure for distinctness theorems
blanchet
parents: 49046
diff changeset
   693
49486
64cc57c0d0fe generate "expand" property
blanchet
parents: 49484
diff changeset
   694
        val (distinct_thms, (distinct_thmsss', distinct_thmsss)) =
49585
5c4a12550491 generate high-level "maps", "sets", and "rels" properties
blanchet
parents: 49536
diff changeset
   695
          join_halves n half_distinct_thmss other_half_distinct_thmss ||> `transpose;
49019
fc4decdba5ce more work on BNF sugar
blanchet
parents: 49017
diff changeset
   696
49020
f379cf5d71bd more work on BNF sugar -- up to derivation of nchotomy
blanchet
parents: 49019
diff changeset
   697
        val nchotomy_thm =
f379cf5d71bd more work on BNF sugar -- up to derivation of nchotomy
blanchet
parents: 49019
diff changeset
   698
          let
f379cf5d71bd more work on BNF sugar -- up to derivation of nchotomy
blanchet
parents: 49019
diff changeset
   699
            val goal =
49486
64cc57c0d0fe generate "expand" property
blanchet
parents: 49484
diff changeset
   700
              HOLogic.mk_Trueprop (HOLogic.mk_all (fst u', snd u',
64cc57c0d0fe generate "expand" property
blanchet
parents: 49484
diff changeset
   701
                Library.foldr1 HOLogic.mk_disj exist_xs_u_eq_ctrs));
49020
f379cf5d71bd more work on BNF sugar -- up to derivation of nchotomy
blanchet
parents: 49019
diff changeset
   702
          in
51551
88d1d19fb74f tuned signature and module arrangement;
wenzelm
parents: 51380
diff changeset
   703
            Goal.prove_sorry lthy [] [] goal (fn _ => mk_nchotomy_tac n exhaust_thm)
49667
44d85dc8ca08 use Thm.close_derivation in theorems proved using Skip_Proof.prove; tuned signature;
traytel
parents: 49633
diff changeset
   704
            |> Thm.close_derivation
49020
f379cf5d71bd more work on BNF sugar -- up to derivation of nchotomy
blanchet
parents: 49019
diff changeset
   705
          end;
f379cf5d71bd more work on BNF sugar -- up to derivation of nchotomy
blanchet
parents: 49019
diff changeset
   706
52968
2b430bbb5a1a define case constant from other 'free constructor' axioms
blanchet
parents: 52965
diff changeset
   707
        val case_thms =
2b430bbb5a1a define case constant from other 'free constructor' axioms
blanchet
parents: 52965
diff changeset
   708
          let
2b430bbb5a1a define case constant from other 'free constructor' axioms
blanchet
parents: 52965
diff changeset
   709
            val goals =
58634
9f10d82e8188 added parameterized ML antiquotations @{map N}, @{fold N}, @{fold_map N}, @{split_list N};
wenzelm
parents: 58335
diff changeset
   710
              @{map 3} (fn xctr => fn xf => fn xs =>
52968
2b430bbb5a1a define case constant from other 'free constructor' axioms
blanchet
parents: 52965
diff changeset
   711
                fold_rev Logic.all (fs @ xs) (mk_Trueprop_eq (fcase $ xctr, xf))) xctrs xfs xss;
2b430bbb5a1a define case constant from other 'free constructor' axioms
blanchet
parents: 52965
diff changeset
   712
          in
58634
9f10d82e8188 added parameterized ML antiquotations @{map N}, @{fold N}, @{fold_map N}, @{split_list N};
wenzelm
parents: 58335
diff changeset
   713
            @{map 4} (fn k => fn goal => fn injects => fn distinctss =>
52968
2b430bbb5a1a define case constant from other 'free constructor' axioms
blanchet
parents: 52965
diff changeset
   714
                Goal.prove_sorry lthy [] [] goal (fn {context = ctxt, ...} =>
2b430bbb5a1a define case constant from other 'free constructor' axioms
blanchet
parents: 52965
diff changeset
   715
                  mk_case_tac ctxt n k case_def injects distinctss)
2b430bbb5a1a define case constant from other 'free constructor' axioms
blanchet
parents: 52965
diff changeset
   716
                |> Thm.close_derivation)
2b430bbb5a1a define case constant from other 'free constructor' axioms
blanchet
parents: 52965
diff changeset
   717
              ks goals inject_thmss distinct_thmsss
2b430bbb5a1a define case constant from other 'free constructor' axioms
blanchet
parents: 52965
diff changeset
   718
          end;
2b430bbb5a1a define case constant from other 'free constructor' axioms
blanchet
parents: 52965
diff changeset
   719
57983
6edc3529bb4e reordered some (co)datatype property names for more consistency
blanchet
parents: 57882
diff changeset
   720
        val (case_cong_thm, case_cong_weak_thm) =
53917
bf74357f91f8 generate "sel_splits(_asm)" theorems
blanchet
parents: 53916
diff changeset
   721
          let
bf74357f91f8 generate "sel_splits(_asm)" theorems
blanchet
parents: 53916
diff changeset
   722
            fun mk_prem xctr xs xf xg =
bf74357f91f8 generate "sel_splits(_asm)" theorems
blanchet
parents: 53916
diff changeset
   723
              fold_rev Logic.all xs (Logic.mk_implies (mk_Trueprop_eq (v, xctr),
bf74357f91f8 generate "sel_splits(_asm)" theorems
blanchet
parents: 53916
diff changeset
   724
                mk_Trueprop_eq (xf, xg)));
bf74357f91f8 generate "sel_splits(_asm)" theorems
blanchet
parents: 53916
diff changeset
   725
bf74357f91f8 generate "sel_splits(_asm)" theorems
blanchet
parents: 53916
diff changeset
   726
            val goal =
58634
9f10d82e8188 added parameterized ML antiquotations @{map N}, @{fold N}, @{fold_map N}, @{split_list N};
wenzelm
parents: 58335
diff changeset
   727
              Logic.list_implies (uv_eq :: @{map 4} mk_prem xctrs xss xfs xgs,
53917
bf74357f91f8 generate "sel_splits(_asm)" theorems
blanchet
parents: 53916
diff changeset
   728
                 mk_Trueprop_eq (eta_ufcase, eta_vgcase));
bf74357f91f8 generate "sel_splits(_asm)" theorems
blanchet
parents: 53916
diff changeset
   729
            val weak_goal = Logic.mk_implies (uv_eq, mk_Trueprop_eq (ufcase, vfcase));
bf74357f91f8 generate "sel_splits(_asm)" theorems
blanchet
parents: 53916
diff changeset
   730
          in
bf74357f91f8 generate "sel_splits(_asm)" theorems
blanchet
parents: 53916
diff changeset
   731
            (Goal.prove_sorry lthy [] [] goal (fn _ => mk_case_cong_tac lthy uexhaust_thm case_thms),
bf74357f91f8 generate "sel_splits(_asm)" theorems
blanchet
parents: 53916
diff changeset
   732
             Goal.prove_sorry lthy [] [] weak_goal (K (etac arg_cong 1)))
59058
a78612c67ec0 renamed "pairself" to "apply2", in accordance to @{apply 2};
wenzelm
parents: 58998
diff changeset
   733
            |> apply2 (singleton (Proof_Context.export names_lthy lthy) #>
55409
b74248961819 made 'ctr_sugar' more friendly to the 'datatype_realizer'
blanchet
parents: 55407
diff changeset
   734
              Thm.close_derivation)
53917
bf74357f91f8 generate "sel_splits(_asm)" theorems
blanchet
parents: 53916
diff changeset
   735
          end;
bf74357f91f8 generate "sel_splits(_asm)" theorems
blanchet
parents: 53916
diff changeset
   736
bf74357f91f8 generate "sel_splits(_asm)" theorems
blanchet
parents: 53916
diff changeset
   737
        val split_lhs = q $ ufcase;
bf74357f91f8 generate "sel_splits(_asm)" theorems
blanchet
parents: 53916
diff changeset
   738
bf74357f91f8 generate "sel_splits(_asm)" theorems
blanchet
parents: 53916
diff changeset
   739
        fun mk_split_conjunct xctr xs f_xs =
bf74357f91f8 generate "sel_splits(_asm)" theorems
blanchet
parents: 53916
diff changeset
   740
          list_all_free xs (HOLogic.mk_imp (HOLogic.mk_eq (u, xctr), q $ f_xs));
bf74357f91f8 generate "sel_splits(_asm)" theorems
blanchet
parents: 53916
diff changeset
   741
        fun mk_split_disjunct xctr xs f_xs =
bf74357f91f8 generate "sel_splits(_asm)" theorems
blanchet
parents: 53916
diff changeset
   742
          list_exists_free xs (HOLogic.mk_conj (HOLogic.mk_eq (u, xctr),
bf74357f91f8 generate "sel_splits(_asm)" theorems
blanchet
parents: 53916
diff changeset
   743
            HOLogic.mk_not (q $ f_xs)));
bf74357f91f8 generate "sel_splits(_asm)" theorems
blanchet
parents: 53916
diff changeset
   744
bf74357f91f8 generate "sel_splits(_asm)" theorems
blanchet
parents: 53916
diff changeset
   745
        fun mk_split_goal xctrs xss xfs =
bf74357f91f8 generate "sel_splits(_asm)" theorems
blanchet
parents: 53916
diff changeset
   746
          mk_Trueprop_eq (split_lhs, Library.foldr1 HOLogic.mk_conj
58634
9f10d82e8188 added parameterized ML antiquotations @{map N}, @{fold N}, @{fold_map N}, @{split_list N};
wenzelm
parents: 58335
diff changeset
   747
            (@{map 3} mk_split_conjunct xctrs xss xfs));
53917
bf74357f91f8 generate "sel_splits(_asm)" theorems
blanchet
parents: 53916
diff changeset
   748
        fun mk_split_asm_goal xctrs xss xfs =
bf74357f91f8 generate "sel_splits(_asm)" theorems
blanchet
parents: 53916
diff changeset
   749
          mk_Trueprop_eq (split_lhs, HOLogic.mk_not (Library.foldr1 HOLogic.mk_disj
58634
9f10d82e8188 added parameterized ML antiquotations @{map N}, @{fold N}, @{fold_map N}, @{split_list N};
wenzelm
parents: 58335
diff changeset
   750
            (@{map 3} mk_split_disjunct xctrs xss xfs)));
53917
bf74357f91f8 generate "sel_splits(_asm)" theorems
blanchet
parents: 53916
diff changeset
   751
bf74357f91f8 generate "sel_splits(_asm)" theorems
blanchet
parents: 53916
diff changeset
   752
        fun prove_split selss goal =
bf74357f91f8 generate "sel_splits(_asm)" theorems
blanchet
parents: 53916
diff changeset
   753
          Goal.prove_sorry lthy [] [] goal (fn _ =>
bf74357f91f8 generate "sel_splits(_asm)" theorems
blanchet
parents: 53916
diff changeset
   754
            mk_split_tac lthy uexhaust_thm case_thms selss inject_thmss distinct_thmsss)
55409
b74248961819 made 'ctr_sugar' more friendly to the 'datatype_realizer'
blanchet
parents: 55407
diff changeset
   755
          |> singleton (Proof_Context.export names_lthy lthy)
b74248961819 made 'ctr_sugar' more friendly to the 'datatype_realizer'
blanchet
parents: 55407
diff changeset
   756
          |> Thm.close_derivation;
53917
bf74357f91f8 generate "sel_splits(_asm)" theorems
blanchet
parents: 53916
diff changeset
   757
bf74357f91f8 generate "sel_splits(_asm)" theorems
blanchet
parents: 53916
diff changeset
   758
        fun prove_split_asm asm_goal split_thm =
bf74357f91f8 generate "sel_splits(_asm)" theorems
blanchet
parents: 53916
diff changeset
   759
          Goal.prove_sorry lthy [] [] asm_goal (fn {context = ctxt, ...} =>
bf74357f91f8 generate "sel_splits(_asm)" theorems
blanchet
parents: 53916
diff changeset
   760
            mk_split_asm_tac ctxt split_thm)
55409
b74248961819 made 'ctr_sugar' more friendly to the 'datatype_realizer'
blanchet
parents: 55407
diff changeset
   761
          |> singleton (Proof_Context.export names_lthy lthy)
b74248961819 made 'ctr_sugar' more friendly to the 'datatype_realizer'
blanchet
parents: 55407
diff changeset
   762
          |> Thm.close_derivation;
53917
bf74357f91f8 generate "sel_splits(_asm)" theorems
blanchet
parents: 53916
diff changeset
   763
bf74357f91f8 generate "sel_splits(_asm)" theorems
blanchet
parents: 53916
diff changeset
   764
        val (split_thm, split_asm_thm) =
bf74357f91f8 generate "sel_splits(_asm)" theorems
blanchet
parents: 53916
diff changeset
   765
          let
bf74357f91f8 generate "sel_splits(_asm)" theorems
blanchet
parents: 53916
diff changeset
   766
            val goal = mk_split_goal xctrs xss xfs;
bf74357f91f8 generate "sel_splits(_asm)" theorems
blanchet
parents: 53916
diff changeset
   767
            val asm_goal = mk_split_asm_goal xctrs xss xfs;
bf74357f91f8 generate "sel_splits(_asm)" theorems
blanchet
parents: 53916
diff changeset
   768
bf74357f91f8 generate "sel_splits(_asm)" theorems
blanchet
parents: 53916
diff changeset
   769
            val thm = prove_split (replicate n []) goal;
bf74357f91f8 generate "sel_splits(_asm)" theorems
blanchet
parents: 53916
diff changeset
   770
            val asm_thm = prove_split_asm asm_goal thm;
bf74357f91f8 generate "sel_splits(_asm)" theorems
blanchet
parents: 53916
diff changeset
   771
          in
bf74357f91f8 generate "sel_splits(_asm)" theorems
blanchet
parents: 53916
diff changeset
   772
            (thm, asm_thm)
bf74357f91f8 generate "sel_splits(_asm)" theorems
blanchet
parents: 53916
diff changeset
   773
          end;
bf74357f91f8 generate "sel_splits(_asm)" theorems
blanchet
parents: 53916
diff changeset
   774
56858
0c3d0bc98abe simplify selectors in code views
blanchet
parents: 56767
diff changeset
   775
        val (sel_defs, all_sel_thms, sel_thmss, disc_defs, disc_thmss, nontriv_disc_thmss,
57983
6edc3529bb4e reordered some (co)datatype property names for more consistency
blanchet
parents: 57882
diff changeset
   776
             discI_thms, nontriv_discI_thms, distinct_disc_thms, distinct_disc_thmsss,
6edc3529bb4e reordered some (co)datatype property names for more consistency
blanchet
parents: 57882
diff changeset
   777
             exhaust_disc_thms, exhaust_sel_thms, all_collapse_thms, safe_collapse_thms,
59271
c448752e8b9d generate 'disc_eq_case' for Ctr_Sugars
desharna
parents: 59267
diff changeset
   778
             expand_thms, split_sel_thms, split_sel_asm_thms, case_eq_if_thms, disc_eq_case_thms) =
52969
f2df0730f8ac clarified option name (since case/fold/rec are also destructors)
blanchet
parents: 52968
diff changeset
   779
          if no_discs_sels then
59271
c448752e8b9d generate 'disc_eq_case' for Ctr_Sugars
desharna
parents: 59267
diff changeset
   780
            ([], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [])
49116
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   781
          else
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   782
            let
53917
bf74357f91f8 generate "sel_splits(_asm)" theorems
blanchet
parents: 53916
diff changeset
   783
              val udiscs = map (rapp u) discs;
bf74357f91f8 generate "sel_splits(_asm)" theorems
blanchet
parents: 53916
diff changeset
   784
              val uselss = map (map (rapp u)) selss;
bf74357f91f8 generate "sel_splits(_asm)" theorems
blanchet
parents: 53916
diff changeset
   785
              val usel_ctrs = map2 (curry Term.list_comb) ctrs uselss;
bf74357f91f8 generate "sel_splits(_asm)" theorems
blanchet
parents: 53916
diff changeset
   786
              val usel_fs = map2 (curry Term.list_comb) fs uselss;
bf74357f91f8 generate "sel_splits(_asm)" theorems
blanchet
parents: 53916
diff changeset
   787
bf74357f91f8 generate "sel_splits(_asm)" theorems
blanchet
parents: 53916
diff changeset
   788
              val vdiscs = map (rapp v) discs;
bf74357f91f8 generate "sel_splits(_asm)" theorems
blanchet
parents: 53916
diff changeset
   789
              val vselss = map (map (rapp v)) selss;
bf74357f91f8 generate "sel_splits(_asm)" theorems
blanchet
parents: 53916
diff changeset
   790
49364
838b5e8ede73 allow default values to refer to selector arguments -- this is useful, e.g. for tllist: ttl (TNil x) = TNil x (example by Andreas Lochbihler)
blanchet
parents: 49336
diff changeset
   791
              fun make_sel_thm xs' case_thm sel_def =
59647
c6f413b660cf clarified Drule.gen_all: observe context more carefully;
wenzelm
parents: 59621
diff changeset
   792
                zero_var_indexes
c6f413b660cf clarified Drule.gen_all: observe context more carefully;
wenzelm
parents: 59621
diff changeset
   793
                  (Drule.gen_all (Variable.maxidx_of lthy)
c6f413b660cf clarified Drule.gen_all: observe context more carefully;
wenzelm
parents: 59621
diff changeset
   794
                    (Drule.rename_bvars'
c6f413b660cf clarified Drule.gen_all: observe context more carefully;
wenzelm
parents: 59621
diff changeset
   795
                      (map (SOME o fst) xs')
c6f413b660cf clarified Drule.gen_all: observe context more carefully;
wenzelm
parents: 59621
diff changeset
   796
                      (Drule.forall_intr_vars (case_thm RS (sel_def RS trans)))));
49281
3d87f4fd0d50 generate all sel theorems
blanchet
parents: 49280
diff changeset
   797
58634
9f10d82e8188 added parameterized ML antiquotations @{map N}, @{fold N}, @{fold_map N}, @{split_list N};
wenzelm
parents: 58335
diff changeset
   798
              val sel_thmss = @{map 3} (map oo make_sel_thm) xss' case_thms sel_defss;
53704
657c89169d1a include more "discI" rules
blanchet
parents: 53700
diff changeset
   799
49281
3d87f4fd0d50 generate all sel theorems
blanchet
parents: 49280
diff changeset
   800
              fun has_undefined_rhs thm =
59582
0fbed69ff081 tuned signature -- prefer qualified names;
wenzelm
parents: 59580
diff changeset
   801
                (case snd (HOLogic.dest_eq (HOLogic.dest_Trueprop (Thm.prop_of thm))) of
49281
3d87f4fd0d50 generate all sel theorems
blanchet
parents: 49280
diff changeset
   802
                  Const (@{const_name undefined}, _) => true
3d87f4fd0d50 generate all sel theorems
blanchet
parents: 49280
diff changeset
   803
                | _ => false);
3d87f4fd0d50 generate all sel theorems
blanchet
parents: 49280
diff changeset
   804
3d87f4fd0d50 generate all sel theorems
blanchet
parents: 49280
diff changeset
   805
              val all_sel_thms =
57200
aab87ffa60cc use 'where' clause for selector default value syntax
blanchet
parents: 57094
diff changeset
   806
                (if all_sels_distinct andalso null sel_default_eqs then
49285
036b833b99aa removed wrong "transpose" and ensure "sel" theorems are put in the right order (grouped per selector, in the order in which the selectors appear)
blanchet
parents: 49281
diff changeset
   807
                   flat sel_thmss
036b833b99aa removed wrong "transpose" and ensure "sel" theorems are put in the right order (grouped per selector, in the order in which the selectors appear)
blanchet
parents: 49281
diff changeset
   808
                 else
49364
838b5e8ede73 allow default values to refer to selector arguments -- this is useful, e.g. for tllist: ttl (TNil x) = TNil x (example by Andreas Lochbihler)
blanchet
parents: 49336
diff changeset
   809
                   map_product (fn s => fn (xs', c) => make_sel_thm xs' c s) sel_defs
838b5e8ede73 allow default values to refer to selector arguments -- this is useful, e.g. for tllist: ttl (TNil x) = TNil x (example by Andreas Lochbihler)
blanchet
parents: 49336
diff changeset
   810
                     (xss' ~~ case_thms))
49285
036b833b99aa removed wrong "transpose" and ensure "sel" theorems are put in the right order (grouped per selector, in the order in which the selectors appear)
blanchet
parents: 49281
diff changeset
   811
                |> filter_out has_undefined_rhs;
49278
718e4ad1517e added no_dests option
blanchet
parents: 49277
diff changeset
   812
718e4ad1517e added no_dests option
blanchet
parents: 49277
diff changeset
   813
              fun mk_unique_disc_def () =
718e4ad1517e added no_dests option
blanchet
parents: 49277
diff changeset
   814
                let
718e4ad1517e added no_dests option
blanchet
parents: 49277
diff changeset
   815
                  val m = the_single ms;
49591
91b228e26348 generate high-level "coinduct" and "strong_coinduct" properties
blanchet
parents: 49586
diff changeset
   816
                  val goal = mk_Trueprop_eq (mk_uu_eq (), the_single exist_xs_u_eq_ctrs);
49278
718e4ad1517e added no_dests option
blanchet
parents: 49277
diff changeset
   817
                in
51551
88d1d19fb74f tuned signature and module arrangement;
wenzelm
parents: 51380
diff changeset
   818
                  Goal.prove_sorry lthy [] [] goal (fn _ => mk_unique_disc_def_tac m uexhaust_thm)
55409
b74248961819 made 'ctr_sugar' more friendly to the 'datatype_realizer'
blanchet
parents: 55407
diff changeset
   819
                  |> singleton (Proof_Context.export names_lthy lthy)
49692
a8a3b82b37f8 made code more conform to rest of BNF package
blanchet
parents: 49668
diff changeset
   820
                  |> Thm.close_derivation
49278
718e4ad1517e added no_dests option
blanchet
parents: 49277
diff changeset
   821
                end;
718e4ad1517e added no_dests option
blanchet
parents: 49277
diff changeset
   822
718e4ad1517e added no_dests option
blanchet
parents: 49277
diff changeset
   823
              fun mk_alternate_disc_def k =
718e4ad1517e added no_dests option
blanchet
parents: 49277
diff changeset
   824
                let
718e4ad1517e added no_dests option
blanchet
parents: 49277
diff changeset
   825
                  val goal =
49486
64cc57c0d0fe generate "expand" property
blanchet
parents: 49484
diff changeset
   826
                    mk_Trueprop_eq (alternate_disc_lhs (K (nth udiscs)) (3 - k),
64cc57c0d0fe generate "expand" property
blanchet
parents: 49484
diff changeset
   827
                      nth exist_xs_u_eq_ctrs (k - 1));
49278
718e4ad1517e added no_dests option
blanchet
parents: 49277
diff changeset
   828
                in
51551
88d1d19fb74f tuned signature and module arrangement;
wenzelm
parents: 51380
diff changeset
   829
                  Goal.prove_sorry lthy [] [] goal (fn {context = ctxt, ...} =>
54634
366297517091 reverted 141cb34744de and e78e7df36690 -- better provide nicer "eta-expanded" definitions for discriminators and selectors, since users might want to unfold them
blanchet
parents: 54626
diff changeset
   830
                    mk_alternate_disc_def_tac ctxt k (nth disc_defs (2 - k))
49486
64cc57c0d0fe generate "expand" property
blanchet
parents: 49484
diff changeset
   831
                      (nth distinct_thms (2 - k)) uexhaust_thm)
55409
b74248961819 made 'ctr_sugar' more friendly to the 'datatype_realizer'
blanchet
parents: 55407
diff changeset
   832
                  |> singleton (Proof_Context.export names_lthy lthy)
49692
a8a3b82b37f8 made code more conform to rest of BNF package
blanchet
parents: 49668
diff changeset
   833
                  |> Thm.close_derivation
49278
718e4ad1517e added no_dests option
blanchet
parents: 49277
diff changeset
   834
                end;
49028
487427a02bee generate "disc_distinct" theorems
blanchet
parents: 49027
diff changeset
   835
49278
718e4ad1517e added no_dests option
blanchet
parents: 49277
diff changeset
   836
              val has_alternate_disc_def =
718e4ad1517e added no_dests option
blanchet
parents: 49277
diff changeset
   837
                exists (fn def => Thm.eq_thm_prop (def, alternate_disc_no_def)) disc_defs;
718e4ad1517e added no_dests option
blanchet
parents: 49277
diff changeset
   838
718e4ad1517e added no_dests option
blanchet
parents: 49277
diff changeset
   839
              val disc_defs' =
718e4ad1517e added no_dests option
blanchet
parents: 49277
diff changeset
   840
                map2 (fn k => fn def =>
718e4ad1517e added no_dests option
blanchet
parents: 49277
diff changeset
   841
                  if Thm.eq_thm_prop (def, unique_disc_no_def) then mk_unique_disc_def ()
718e4ad1517e added no_dests option
blanchet
parents: 49277
diff changeset
   842
                  else if Thm.eq_thm_prop (def, alternate_disc_no_def) then mk_alternate_disc_def k
54634
366297517091 reverted 141cb34744de and e78e7df36690 -- better provide nicer "eta-expanded" definitions for discriminators and selectors, since users might want to unfold them
blanchet
parents: 54626
diff changeset
   843
                  else def) ks disc_defs;
49278
718e4ad1517e added no_dests option
blanchet
parents: 49277
diff changeset
   844
718e4ad1517e added no_dests option
blanchet
parents: 49277
diff changeset
   845
              val discD_thms = map (fn def => def RS iffD1) disc_defs';
718e4ad1517e added no_dests option
blanchet
parents: 49277
diff changeset
   846
              val discI_thms =
718e4ad1517e added no_dests option
blanchet
parents: 49277
diff changeset
   847
                map2 (fn m => fn def => funpow m (fn thm => exI RS thm) (def RS iffD2)) ms
718e4ad1517e added no_dests option
blanchet
parents: 49277
diff changeset
   848
                  disc_defs';
718e4ad1517e added no_dests option
blanchet
parents: 49277
diff changeset
   849
              val not_discI_thms =
718e4ad1517e added no_dests option
blanchet
parents: 49277
diff changeset
   850
                map2 (fn m => fn def => funpow m (fn thm => allI RS thm)
49504
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49500
diff changeset
   851
                    (unfold_thms lthy @{thms not_ex} (def RS @{thm ssubst[of _ _ Not]})))
49278
718e4ad1517e added no_dests option
blanchet
parents: 49277
diff changeset
   852
                  ms disc_defs';
718e4ad1517e added no_dests option
blanchet
parents: 49277
diff changeset
   853
718e4ad1517e added no_dests option
blanchet
parents: 49277
diff changeset
   854
              val (disc_thmss', disc_thmss) =
718e4ad1517e added no_dests option
blanchet
parents: 49277
diff changeset
   855
                let
718e4ad1517e added no_dests option
blanchet
parents: 49277
diff changeset
   856
                  fun mk_thm discI _ [] = refl RS discI
718e4ad1517e added no_dests option
blanchet
parents: 49277
diff changeset
   857
                    | mk_thm _ not_discI [distinct] = distinct RS not_discI;
718e4ad1517e added no_dests option
blanchet
parents: 49277
diff changeset
   858
                  fun mk_thms discI not_discI distinctss = map (mk_thm discI not_discI) distinctss;
718e4ad1517e added no_dests option
blanchet
parents: 49277
diff changeset
   859
                in
58634
9f10d82e8188 added parameterized ML antiquotations @{map N}, @{fold N}, @{fold_map N}, @{split_list N};
wenzelm
parents: 58335
diff changeset
   860
                  @{map 3} mk_thms discI_thms not_discI_thms distinct_thmsss' |> `transpose
49278
718e4ad1517e added no_dests option
blanchet
parents: 49277
diff changeset
   861
                end;
718e4ad1517e added no_dests option
blanchet
parents: 49277
diff changeset
   862
55464
56fa33537869 have 'Ctr_Sugar' register its 'Spec_Rules'
blanchet
parents: 55444
diff changeset
   863
              val nontriv_disc_thmss =
56fa33537869 have 'Ctr_Sugar' register its 'Spec_Rules'
blanchet
parents: 55444
diff changeset
   864
                map2 (fn b => if is_disc_binding_valid b then I else K []) disc_bindings disc_thmss;
53704
657c89169d1a include more "discI" rules
blanchet
parents: 53700
diff changeset
   865
657c89169d1a include more "discI" rules
blanchet
parents: 53700
diff changeset
   866
              fun is_discI_boring b =
657c89169d1a include more "discI" rules
blanchet
parents: 53700
diff changeset
   867
                (n = 1 andalso Binding.is_empty b) orelse Binding.eq_name (b, equal_binding);
657c89169d1a include more "discI" rules
blanchet
parents: 53700
diff changeset
   868
657c89169d1a include more "discI" rules
blanchet
parents: 53700
diff changeset
   869
              val nontriv_discI_thms =
657c89169d1a include more "discI" rules
blanchet
parents: 53700
diff changeset
   870
                flat (map2 (fn b => if is_discI_boring b then K [] else single) disc_bindings
657c89169d1a include more "discI" rules
blanchet
parents: 53700
diff changeset
   871
                  discI_thms);
49028
487427a02bee generate "disc_distinct" theorems
blanchet
parents: 49027
diff changeset
   872
57983
6edc3529bb4e reordered some (co)datatype property names for more consistency
blanchet
parents: 57882
diff changeset
   873
              val (distinct_disc_thms, (distinct_disc_thmsss', distinct_disc_thmsss)) =
49486
64cc57c0d0fe generate "expand" property
blanchet
parents: 49484
diff changeset
   874
                let
64cc57c0d0fe generate "expand" property
blanchet
parents: 49484
diff changeset
   875
                  fun mk_goal [] = []
64cc57c0d0fe generate "expand" property
blanchet
parents: 49484
diff changeset
   876
                    | mk_goal [((_, udisc), (_, udisc'))] =
64cc57c0d0fe generate "expand" property
blanchet
parents: 49484
diff changeset
   877
                      [Logic.all u (Logic.mk_implies (HOLogic.mk_Trueprop udisc,
64cc57c0d0fe generate "expand" property
blanchet
parents: 49484
diff changeset
   878
                         HOLogic.mk_Trueprop (HOLogic.mk_not udisc')))];
64cc57c0d0fe generate "expand" property
blanchet
parents: 49484
diff changeset
   879
49667
44d85dc8ca08 use Thm.close_derivation in theorems proved using Skip_Proof.prove; tuned signature;
traytel
parents: 49633
diff changeset
   880
                  fun prove tac goal =
51551
88d1d19fb74f tuned signature and module arrangement;
wenzelm
parents: 51380
diff changeset
   881
                    Goal.prove_sorry lthy [] [] goal (K tac)
49667
44d85dc8ca08 use Thm.close_derivation in theorems proved using Skip_Proof.prove; tuned signature;
traytel
parents: 49633
diff changeset
   882
                    |> Thm.close_derivation;
49486
64cc57c0d0fe generate "expand" property
blanchet
parents: 49484
diff changeset
   883
49585
5c4a12550491 generate high-level "maps", "sets", and "rels" properties
blanchet
parents: 49536
diff changeset
   884
                  val half_pairss = mk_half_pairss (`I (ms ~~ discD_thms ~~ udiscs));
49486
64cc57c0d0fe generate "expand" property
blanchet
parents: 49484
diff changeset
   885
64cc57c0d0fe generate "expand" property
blanchet
parents: 49484
diff changeset
   886
                  val half_goalss = map mk_goal half_pairss;
64cc57c0d0fe generate "expand" property
blanchet
parents: 49484
diff changeset
   887
                  val half_thmss =
58634
9f10d82e8188 added parameterized ML antiquotations @{map N}, @{fold N}, @{fold_map N}, @{split_list N};
wenzelm
parents: 58335
diff changeset
   888
                    @{map 3} (fn [] => K (K []) | [goal] => fn [(((m, discD), _), _)] =>
57983
6edc3529bb4e reordered some (co)datatype property names for more consistency
blanchet
parents: 57882
diff changeset
   889
                        fn disc_thm => [prove (mk_half_distinct_disc_tac lthy m discD disc_thm) goal])
49486
64cc57c0d0fe generate "expand" property
blanchet
parents: 49484
diff changeset
   890
                      half_goalss half_pairss (flat disc_thmss');
49278
718e4ad1517e added no_dests option
blanchet
parents: 49277
diff changeset
   891
49486
64cc57c0d0fe generate "expand" property
blanchet
parents: 49484
diff changeset
   892
                  val other_half_goalss = map (mk_goal o map swap) half_pairss;
64cc57c0d0fe generate "expand" property
blanchet
parents: 49484
diff changeset
   893
                  val other_half_thmss =
57983
6edc3529bb4e reordered some (co)datatype property names for more consistency
blanchet
parents: 57882
diff changeset
   894
                    map2 (map2 (prove o mk_other_half_distinct_disc_tac)) half_thmss
49486
64cc57c0d0fe generate "expand" property
blanchet
parents: 49484
diff changeset
   895
                      other_half_goalss;
64cc57c0d0fe generate "expand" property
blanchet
parents: 49484
diff changeset
   896
                in
49585
5c4a12550491 generate high-level "maps", "sets", and "rels" properties
blanchet
parents: 49536
diff changeset
   897
                  join_halves n half_thmss other_half_thmss ||> `transpose
49486
64cc57c0d0fe generate "expand" property
blanchet
parents: 49484
diff changeset
   898
                  |>> has_alternate_disc_def ? K []
64cc57c0d0fe generate "expand" property
blanchet
parents: 49484
diff changeset
   899
                end;
49278
718e4ad1517e added no_dests option
blanchet
parents: 49277
diff changeset
   900
57983
6edc3529bb4e reordered some (co)datatype property names for more consistency
blanchet
parents: 57882
diff changeset
   901
              val exhaust_disc_thm =
49486
64cc57c0d0fe generate "expand" property
blanchet
parents: 49484
diff changeset
   902
                let
64cc57c0d0fe generate "expand" property
blanchet
parents: 49484
diff changeset
   903
                  fun mk_prem udisc = mk_imp_p [HOLogic.mk_Trueprop udisc];
64cc57c0d0fe generate "expand" property
blanchet
parents: 49484
diff changeset
   904
                  val goal = fold_rev Logic.all [p, u] (mk_imp_p (map mk_prem udiscs));
64cc57c0d0fe generate "expand" property
blanchet
parents: 49484
diff changeset
   905
                in
51551
88d1d19fb74f tuned signature and module arrangement;
wenzelm
parents: 51380
diff changeset
   906
                  Goal.prove_sorry lthy [] [] goal (fn _ =>
57983
6edc3529bb4e reordered some (co)datatype property names for more consistency
blanchet
parents: 57882
diff changeset
   907
                    mk_exhaust_disc_tac n exhaust_thm discI_thms)
49667
44d85dc8ca08 use Thm.close_derivation in theorems proved using Skip_Proof.prove; tuned signature;
traytel
parents: 49633
diff changeset
   908
                  |> Thm.close_derivation
49486
64cc57c0d0fe generate "expand" property
blanchet
parents: 49484
diff changeset
   909
                end;
49028
487427a02bee generate "disc_distinct" theorems
blanchet
parents: 49027
diff changeset
   910
53740
c1911450b84a cleaner handling of collapse theorems
blanchet
parents: 53704
diff changeset
   911
              val (safe_collapse_thms, all_collapse_thms) =
49486
64cc57c0d0fe generate "expand" property
blanchet
parents: 49484
diff changeset
   912
                let
54008
b15cfc2864de refactoring -- splitting between constructor sugar dependencies and true BNF dependencies
blanchet
parents: 54007
diff changeset
   913
                  fun mk_goal m udisc usel_ctr =
49486
64cc57c0d0fe generate "expand" property
blanchet
parents: 49484
diff changeset
   914
                    let
64cc57c0d0fe generate "expand" property
blanchet
parents: 49484
diff changeset
   915
                      val prem = HOLogic.mk_Trueprop udisc;
53916
37c31a619eee generate "sel_exhaust" theorem
blanchet
parents: 53908
diff changeset
   916
                      val concl = mk_Trueprop_eq ((usel_ctr, u) |> m = 0 ? swap);
49486
64cc57c0d0fe generate "expand" property
blanchet
parents: 49484
diff changeset
   917
                    in
53740
c1911450b84a cleaner handling of collapse theorems
blanchet
parents: 53704
diff changeset
   918
                      (prem aconv concl, Logic.all u (Logic.mk_implies (prem, concl)))
49486
64cc57c0d0fe generate "expand" property
blanchet
parents: 49484
diff changeset
   919
                    end;
58634
9f10d82e8188 added parameterized ML antiquotations @{map N}, @{fold N}, @{fold_map N}, @{split_list N};
wenzelm
parents: 58335
diff changeset
   920
                  val (trivs, goals) = @{map 3} mk_goal ms udiscs usel_ctrs |> split_list;
53740
c1911450b84a cleaner handling of collapse theorems
blanchet
parents: 53704
diff changeset
   921
                  val thms =
58634
9f10d82e8188 added parameterized ML antiquotations @{map N}, @{fold N}, @{fold_map N}, @{split_list N};
wenzelm
parents: 58335
diff changeset
   922
                    @{map 5} (fn m => fn discD => fn sel_thms => fn triv => fn goal =>
53740
c1911450b84a cleaner handling of collapse theorems
blanchet
parents: 53704
diff changeset
   923
                        Goal.prove_sorry lthy [] [] goal (fn {context = ctxt, ...} =>
58963
26bf09b95dda proper context for assume_tac (atac remains as fall-back without context);
wenzelm
parents: 58685
diff changeset
   924
                          mk_collapse_tac ctxt m discD sel_thms ORELSE HEADGOAL (assume_tac ctxt))
53740
c1911450b84a cleaner handling of collapse theorems
blanchet
parents: 53704
diff changeset
   925
                        |> Thm.close_derivation
c1911450b84a cleaner handling of collapse theorems
blanchet
parents: 53704
diff changeset
   926
                        |> not triv ? perhaps (try (fn thm => refl RS thm)))
c1911450b84a cleaner handling of collapse theorems
blanchet
parents: 53704
diff changeset
   927
                      ms discD_thms sel_thmss trivs goals;
49486
64cc57c0d0fe generate "expand" property
blanchet
parents: 49484
diff changeset
   928
                in
53740
c1911450b84a cleaner handling of collapse theorems
blanchet
parents: 53704
diff changeset
   929
                  (map_filter (fn (true, _) => NONE | (false, thm) => SOME thm) (trivs ~~ thms),
c1911450b84a cleaner handling of collapse theorems
blanchet
parents: 53704
diff changeset
   930
                   thms)
49486
64cc57c0d0fe generate "expand" property
blanchet
parents: 49484
diff changeset
   931
                end;
49025
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   932
53916
37c31a619eee generate "sel_exhaust" theorem
blanchet
parents: 53908
diff changeset
   933
              val swapped_all_collapse_thms =
37c31a619eee generate "sel_exhaust" theorem
blanchet
parents: 53908
diff changeset
   934
                map2 (fn m => fn thm => if m = 0 then thm else thm RS sym) ms all_collapse_thms;
37c31a619eee generate "sel_exhaust" theorem
blanchet
parents: 53908
diff changeset
   935
57983
6edc3529bb4e reordered some (co)datatype property names for more consistency
blanchet
parents: 57882
diff changeset
   936
              val exhaust_sel_thm =
53916
37c31a619eee generate "sel_exhaust" theorem
blanchet
parents: 53908
diff changeset
   937
                let
37c31a619eee generate "sel_exhaust" theorem
blanchet
parents: 53908
diff changeset
   938
                  fun mk_prem usel_ctr = mk_imp_p [mk_Trueprop_eq (u, usel_ctr)];
37c31a619eee generate "sel_exhaust" theorem
blanchet
parents: 53908
diff changeset
   939
                  val goal = fold_rev Logic.all [p, u] (mk_imp_p (map mk_prem usel_ctrs));
37c31a619eee generate "sel_exhaust" theorem
blanchet
parents: 53908
diff changeset
   940
                in
37c31a619eee generate "sel_exhaust" theorem
blanchet
parents: 53908
diff changeset
   941
                  Goal.prove_sorry lthy [] [] goal (fn _ =>
57983
6edc3529bb4e reordered some (co)datatype property names for more consistency
blanchet
parents: 57882
diff changeset
   942
                    mk_exhaust_sel_tac n exhaust_disc_thm swapped_all_collapse_thms)
53916
37c31a619eee generate "sel_exhaust" theorem
blanchet
parents: 53908
diff changeset
   943
                  |> Thm.close_derivation
37c31a619eee generate "sel_exhaust" theorem
blanchet
parents: 53908
diff changeset
   944
                end;
37c31a619eee generate "sel_exhaust" theorem
blanchet
parents: 53908
diff changeset
   945
53919
blanchet
parents: 53917
diff changeset
   946
              val expand_thm =
49486
64cc57c0d0fe generate "expand" property
blanchet
parents: 49484
diff changeset
   947
                let
64cc57c0d0fe generate "expand" property
blanchet
parents: 49484
diff changeset
   948
                  fun mk_prems k udisc usels vdisc vsels =
64cc57c0d0fe generate "expand" property
blanchet
parents: 49484
diff changeset
   949
                    (if k = n then [] else [mk_Trueprop_eq (udisc, vdisc)]) @
64cc57c0d0fe generate "expand" property
blanchet
parents: 49484
diff changeset
   950
                    (if null usels then
64cc57c0d0fe generate "expand" property
blanchet
parents: 49484
diff changeset
   951
                       []
64cc57c0d0fe generate "expand" property
blanchet
parents: 49484
diff changeset
   952
                     else
64cc57c0d0fe generate "expand" property
blanchet
parents: 49484
diff changeset
   953
                       [Logic.list_implies
64cc57c0d0fe generate "expand" property
blanchet
parents: 49484
diff changeset
   954
                          (if n = 1 then [] else map HOLogic.mk_Trueprop [udisc, vdisc],
64cc57c0d0fe generate "expand" property
blanchet
parents: 49484
diff changeset
   955
                             HOLogic.mk_Trueprop (Library.foldr1 HOLogic.mk_conj
64cc57c0d0fe generate "expand" property
blanchet
parents: 49484
diff changeset
   956
                               (map2 (curry HOLogic.mk_eq) usels vsels)))]);
64cc57c0d0fe generate "expand" property
blanchet
parents: 49484
diff changeset
   957
49591
91b228e26348 generate high-level "coinduct" and "strong_coinduct" properties
blanchet
parents: 49586
diff changeset
   958
                  val goal =
91b228e26348 generate high-level "coinduct" and "strong_coinduct" properties
blanchet
parents: 49586
diff changeset
   959
                    Library.foldr Logic.list_implies
58634
9f10d82e8188 added parameterized ML antiquotations @{map N}, @{fold N}, @{fold_map N}, @{split_list N};
wenzelm
parents: 58335
diff changeset
   960
                      (@{map 5} mk_prems ks udiscs uselss vdiscs vselss, uv_eq);
49486
64cc57c0d0fe generate "expand" property
blanchet
parents: 49484
diff changeset
   961
                  val uncollapse_thms =
53740
c1911450b84a cleaner handling of collapse theorems
blanchet
parents: 53704
diff changeset
   962
                    map2 (fn thm => fn [] => thm | _ => thm RS sym) all_collapse_thms uselss;
49486
64cc57c0d0fe generate "expand" property
blanchet
parents: 49484
diff changeset
   963
                in
53919
blanchet
parents: 53917
diff changeset
   964
                  Goal.prove_sorry lthy [] [] goal (fn _ =>
57983
6edc3529bb4e reordered some (co)datatype property names for more consistency
blanchet
parents: 57882
diff changeset
   965
                    mk_expand_tac lthy n ms (inst_thm u exhaust_disc_thm)
6edc3529bb4e reordered some (co)datatype property names for more consistency
blanchet
parents: 57882
diff changeset
   966
                      (inst_thm v exhaust_disc_thm) uncollapse_thms distinct_disc_thmsss
6edc3529bb4e reordered some (co)datatype property names for more consistency
blanchet
parents: 57882
diff changeset
   967
                      distinct_disc_thmsss')
55409
b74248961819 made 'ctr_sugar' more friendly to the 'datatype_realizer'
blanchet
parents: 55407
diff changeset
   968
                  |> singleton (Proof_Context.export names_lthy lthy)
53919
blanchet
parents: 53917
diff changeset
   969
                  |> Thm.close_derivation
49486
64cc57c0d0fe generate "expand" property
blanchet
parents: 49484
diff changeset
   970
                end;
49278
718e4ad1517e added no_dests option
blanchet
parents: 49277
diff changeset
   971
57983
6edc3529bb4e reordered some (co)datatype property names for more consistency
blanchet
parents: 57882
diff changeset
   972
              val (split_sel_thm, split_sel_asm_thm) =
53917
bf74357f91f8 generate "sel_splits(_asm)" theorems
blanchet
parents: 53916
diff changeset
   973
                let
bf74357f91f8 generate "sel_splits(_asm)" theorems
blanchet
parents: 53916
diff changeset
   974
                  val zss = map (K []) xss;
bf74357f91f8 generate "sel_splits(_asm)" theorems
blanchet
parents: 53916
diff changeset
   975
                  val goal = mk_split_goal usel_ctrs zss usel_fs;
bf74357f91f8 generate "sel_splits(_asm)" theorems
blanchet
parents: 53916
diff changeset
   976
                  val asm_goal = mk_split_asm_goal usel_ctrs zss usel_fs;
bf74357f91f8 generate "sel_splits(_asm)" theorems
blanchet
parents: 53916
diff changeset
   977
bf74357f91f8 generate "sel_splits(_asm)" theorems
blanchet
parents: 53916
diff changeset
   978
                  val thm = prove_split sel_thmss goal;
bf74357f91f8 generate "sel_splits(_asm)" theorems
blanchet
parents: 53916
diff changeset
   979
                  val asm_thm = prove_split_asm asm_goal thm;
bf74357f91f8 generate "sel_splits(_asm)" theorems
blanchet
parents: 53916
diff changeset
   980
                in
bf74357f91f8 generate "sel_splits(_asm)" theorems
blanchet
parents: 53916
diff changeset
   981
                  (thm, asm_thm)
bf74357f91f8 generate "sel_splits(_asm)" theorems
blanchet
parents: 53916
diff changeset
   982
                end;
bf74357f91f8 generate "sel_splits(_asm)" theorems
blanchet
parents: 53916
diff changeset
   983
54491
27966e17d075 case_if -> case_eq_if + docs
blanchet
parents: 54435
diff changeset
   984
              val case_eq_if_thm =
49486
64cc57c0d0fe generate "expand" property
blanchet
parents: 49484
diff changeset
   985
                let
53917
bf74357f91f8 generate "sel_splits(_asm)" theorems
blanchet
parents: 53916
diff changeset
   986
                  val goal = mk_Trueprop_eq (ufcase, mk_IfN B udiscs usel_fs);
49486
64cc57c0d0fe generate "expand" property
blanchet
parents: 49484
diff changeset
   987
                in
53919
blanchet
parents: 53917
diff changeset
   988
                  Goal.prove_sorry lthy [] [] goal (fn {context = ctxt, ...} =>
54491
27966e17d075 case_if -> case_eq_if + docs
blanchet
parents: 54435
diff changeset
   989
                    mk_case_eq_if_tac ctxt n uexhaust_thm case_thms disc_thmss' sel_thmss)
55409
b74248961819 made 'ctr_sugar' more friendly to the 'datatype_realizer'
blanchet
parents: 55407
diff changeset
   990
                  |> singleton (Proof_Context.export names_lthy lthy)
53919
blanchet
parents: 53917
diff changeset
   991
                  |> Thm.close_derivation
49486
64cc57c0d0fe generate "expand" property
blanchet
parents: 49484
diff changeset
   992
                end;
59271
c448752e8b9d generate 'disc_eq_case' for Ctr_Sugars
desharna
parents: 59267
diff changeset
   993
c448752e8b9d generate 'disc_eq_case' for Ctr_Sugars
desharna
parents: 59267
diff changeset
   994
              val disc_eq_case_thms =
c448752e8b9d generate 'disc_eq_case' for Ctr_Sugars
desharna
parents: 59267
diff changeset
   995
                let
59272
blanchet
parents: 59271
diff changeset
   996
                  fun const_of_bool b = if b then @{const True} else @{const False};
59271
c448752e8b9d generate 'disc_eq_case' for Ctr_Sugars
desharna
parents: 59267
diff changeset
   997
                  fun mk_case_args n = map_index (fn (k, argTs) =>
59272
blanchet
parents: 59271
diff changeset
   998
                    fold_rev Term.absdummy argTs (const_of_bool (n = k))) ctr_Tss;
59271
c448752e8b9d generate 'disc_eq_case' for Ctr_Sugars
desharna
parents: 59267
diff changeset
   999
                  val goals = map_index (fn (n, udisc) =>
c448752e8b9d generate 'disc_eq_case' for Ctr_Sugars
desharna
parents: 59267
diff changeset
  1000
                    mk_Trueprop_eq (udisc, list_comb (casexBool, mk_case_args n) $ u)) udiscs;
c448752e8b9d generate 'disc_eq_case' for Ctr_Sugars
desharna
parents: 59267
diff changeset
  1001
                in
c448752e8b9d generate 'disc_eq_case' for Ctr_Sugars
desharna
parents: 59267
diff changeset
  1002
                  Goal.prove_sorry lthy [] [] (Logic.mk_conjunction_balanced goals)
59621
291934bac95e Thm.cterm_of and Thm.ctyp_of operate on local context;
wenzelm
parents: 59582
diff changeset
  1003
                    (fn {context = ctxt, ...} => mk_disc_eq_case_tac ctxt (Thm.cterm_of ctxt u)
59271
c448752e8b9d generate 'disc_eq_case' for Ctr_Sugars
desharna
parents: 59267
diff changeset
  1004
                       exhaust_thm (flat nontriv_disc_thmss) distinct_thms case_thms)
c448752e8b9d generate 'disc_eq_case' for Ctr_Sugars
desharna
parents: 59267
diff changeset
  1005
                  |> Conjunction.elim_balanced (length goals)
c448752e8b9d generate 'disc_eq_case' for Ctr_Sugars
desharna
parents: 59267
diff changeset
  1006
                  |> Proof_Context.export names_lthy lthy
c448752e8b9d generate 'disc_eq_case' for Ctr_Sugars
desharna
parents: 59267
diff changeset
  1007
                  |> map Thm.close_derivation
c448752e8b9d generate 'disc_eq_case' for Ctr_Sugars
desharna
parents: 59267
diff changeset
  1008
                end;
49116
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
  1009
            in
56858
0c3d0bc98abe simplify selectors in code views
blanchet
parents: 56767
diff changeset
  1010
              (sel_defs, all_sel_thms, sel_thmss, disc_defs, disc_thmss, nontriv_disc_thmss,
57983
6edc3529bb4e reordered some (co)datatype property names for more consistency
blanchet
parents: 57882
diff changeset
  1011
               discI_thms, nontriv_discI_thms, distinct_disc_thms, distinct_disc_thmsss,
6edc3529bb4e reordered some (co)datatype property names for more consistency
blanchet
parents: 57882
diff changeset
  1012
               [exhaust_disc_thm], [exhaust_sel_thm], all_collapse_thms, safe_collapse_thms,
59271
c448752e8b9d generate 'disc_eq_case' for Ctr_Sugars
desharna
parents: 59267
diff changeset
  1013
               [expand_thm], [split_sel_thm], [split_sel_asm_thm], [case_eq_if_thm],
c448752e8b9d generate 'disc_eq_case' for Ctr_Sugars
desharna
parents: 59267
diff changeset
  1014
               disc_eq_case_thms)
49116
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
  1015
            end;
49025
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
  1016
59266
776964a0589f generate 'case_distrib' for Ctr_Sugars
desharna
parents: 59058
diff changeset
  1017
        val case_distrib_thm =
776964a0589f generate 'case_distrib' for Ctr_Sugars
desharna
parents: 59058
diff changeset
  1018
          let
776964a0589f generate 'case_distrib' for Ctr_Sugars
desharna
parents: 59058
diff changeset
  1019
            val args = @{map 2} (fn f => fn argTs =>
776964a0589f generate 'case_distrib' for Ctr_Sugars
desharna
parents: 59058
diff changeset
  1020
              let val (args, _) = mk_Frees "x" argTs lthy in
776964a0589f generate 'case_distrib' for Ctr_Sugars
desharna
parents: 59058
diff changeset
  1021
                fold_rev Term.lambda args (h $ list_comb (f, args))
776964a0589f generate 'case_distrib' for Ctr_Sugars
desharna
parents: 59058
diff changeset
  1022
              end) fs ctr_Tss;
776964a0589f generate 'case_distrib' for Ctr_Sugars
desharna
parents: 59058
diff changeset
  1023
            val goal = mk_Trueprop_eq (h $ ufcase, list_comb (casexC, args) $ u);
776964a0589f generate 'case_distrib' for Ctr_Sugars
desharna
parents: 59058
diff changeset
  1024
          in
776964a0589f generate 'case_distrib' for Ctr_Sugars
desharna
parents: 59058
diff changeset
  1025
            Goal.prove_sorry lthy [] [] goal (fn {context = ctxt, ...} =>
59621
291934bac95e Thm.cterm_of and Thm.ctyp_of operate on local context;
wenzelm
parents: 59582
diff changeset
  1026
              mk_case_distrib_tac ctxt (Thm.cterm_of ctxt u) exhaust_thm case_thms)
59266
776964a0589f generate 'case_distrib' for Ctr_Sugars
desharna
parents: 59058
diff changeset
  1027
            |> singleton (Proof_Context.export names_lthy lthy)
776964a0589f generate 'case_distrib' for Ctr_Sugars
desharna
parents: 59058
diff changeset
  1028
            |> Thm.close_derivation
776964a0589f generate 'case_distrib' for Ctr_Sugars
desharna
parents: 59058
diff changeset
  1029
          end;
776964a0589f generate 'case_distrib' for Ctr_Sugars
desharna
parents: 59058
diff changeset
  1030
49437
c139da00fb4a register induct attributes
blanchet
parents: 49434
diff changeset
  1031
        val exhaust_case_names_attr = Attrib.internal (K (Rule_Cases.case_names exhaust_cases));
53908
blanchet
parents: 53906
diff changeset
  1032
        val cases_type_attr = Attrib.internal (K (Induct.cases_type fcT_name));
49300
c707df2e2083 added attributes to theorems
blanchet
parents: 49298
diff changeset
  1033
58335
a5a3b576fcfb generate 'code' attribute only if 'code' plugin is enabled
blanchet
parents: 58317
diff changeset
  1034
        val code_attrs = if plugins code_plugin then [Code.add_default_eqn_attrib] else [];
a5a3b576fcfb generate 'code' attribute only if 'code' plugin is enabled
blanchet
parents: 58317
diff changeset
  1035
55464
56fa33537869 have 'Ctr_Sugar' register its 'Spec_Rules'
blanchet
parents: 55444
diff changeset
  1036
        val nontriv_disc_eq_thmss =
56fa33537869 have 'Ctr_Sugar' register its 'Spec_Rules'
blanchet
parents: 55444
diff changeset
  1037
          map (map (fn th => th RS @{thm eq_False[THEN iffD2]}
56fa33537869 have 'Ctr_Sugar' register its 'Spec_Rules'
blanchet
parents: 55444
diff changeset
  1038
            handle THM _ => th RS @{thm eq_True[THEN iffD2]})) nontriv_disc_thmss;
56fa33537869 have 'Ctr_Sugar' register its 'Spec_Rules'
blanchet
parents: 55444
diff changeset
  1039
54151
71dc4e6c001c set code attribute on discriminator equations
blanchet
parents: 54145
diff changeset
  1040
        val anonymous_notes =
71dc4e6c001c set code attribute on discriminator equations
blanchet
parents: 54145
diff changeset
  1041
          [(map (fn th => th RS notE) distinct_thms, safe_elim_attrs),
58335
a5a3b576fcfb generate 'code' attribute only if 'code' plugin is enabled
blanchet
parents: 58317
diff changeset
  1042
           (flat nontriv_disc_eq_thmss, code_attrs @ nitpicksimp_attrs)]
54151
71dc4e6c001c set code attribute on discriminator equations
blanchet
parents: 54145
diff changeset
  1043
          |> map (fn (thms, attrs) => ((Binding.empty, attrs), [(thms, [])]));
71dc4e6c001c set code attribute on discriminator equations
blanchet
parents: 54145
diff changeset
  1044
49052
3510b943dd5b optimized "mk_split_tac" + use "notes"
blanchet
parents: 49050
diff changeset
  1045
        val notes =
58335
a5a3b576fcfb generate 'code' attribute only if 'code' plugin is enabled
blanchet
parents: 58317
diff changeset
  1046
          [(caseN, case_thms, code_attrs @ nitpicksimp_attrs @ simp_attrs),
49594
55e798614c45 tweaked theorem names (in particular, dropped s's)
blanchet
parents: 49591
diff changeset
  1047
           (case_congN, [case_cong_thm], []),
57983
6edc3529bb4e reordered some (co)datatype property names for more consistency
blanchet
parents: 57882
diff changeset
  1048
           (case_cong_weak_thmsN, [case_cong_weak_thm], cong_attrs),
59266
776964a0589f generate 'case_distrib' for Ctr_Sugars
desharna
parents: 59058
diff changeset
  1049
           (case_distribN, [case_distrib_thm], []),
54491
27966e17d075 case_if -> case_eq_if + docs
blanchet
parents: 54435
diff changeset
  1050
           (case_eq_ifN, case_eq_if_thms, []),
58151
414deb2ef328 take out 'x = C' of the simplifier for unit types
blanchet
parents: 58116
diff changeset
  1051
           (collapseN, safe_collapse_thms, if ms = [0] then [] else simp_attrs),
55464
56fa33537869 have 'Ctr_Sugar' register its 'Spec_Rules'
blanchet
parents: 55444
diff changeset
  1052
           (discN, flat nontriv_disc_thmss, simp_attrs),
59272
blanchet
parents: 59271
diff changeset
  1053
           (disc_eq_caseN, disc_eq_case_thms, []),
53700
e6a44d775be3 note "discI"
blanchet
parents: 53694
diff changeset
  1054
           (discIN, nontriv_discI_thms, []),
54145
297d1c603999 make sure that registered code equations are actually equations
blanchet
parents: 54008
diff changeset
  1055
           (distinctN, distinct_thms, simp_attrs @ inductsimp_attrs),
57983
6edc3529bb4e reordered some (co)datatype property names for more consistency
blanchet
parents: 57882
diff changeset
  1056
           (distinct_discN, distinct_disc_thms, dest_attrs),
6edc3529bb4e reordered some (co)datatype property names for more consistency
blanchet
parents: 57882
diff changeset
  1057
           (exhaustN, [exhaust_thm], [exhaust_case_names_attr, cases_type_attr]),
6edc3529bb4e reordered some (co)datatype property names for more consistency
blanchet
parents: 57882
diff changeset
  1058
           (exhaust_discN, exhaust_disc_thms, [exhaust_case_names_attr]),
6edc3529bb4e reordered some (co)datatype property names for more consistency
blanchet
parents: 57882
diff changeset
  1059
           (exhaust_selN, exhaust_sel_thms, [exhaust_case_names_attr]),
49486
64cc57c0d0fe generate "expand" property
blanchet
parents: 49484
diff changeset
  1060
           (expandN, expand_thms, []),
54145
297d1c603999 make sure that registered code equations are actually equations
blanchet
parents: 54008
diff changeset
  1061
           (injectN, inject_thms, iff_attrs @ inductsimp_attrs),
49300
c707df2e2083 added attributes to theorems
blanchet
parents: 49298
diff changeset
  1062
           (nchotomyN, [nchotomy_thm], []),
58335
a5a3b576fcfb generate 'code' attribute only if 'code' plugin is enabled
blanchet
parents: 58317
diff changeset
  1063
           (selN, all_sel_thms, code_attrs @ nitpicksimp_attrs @ simp_attrs),
57985
blanchet
parents: 57984
diff changeset
  1064
           (splitN, [split_thm], []),
blanchet
parents: 57984
diff changeset
  1065
           (split_asmN, [split_asm_thm], []),
57983
6edc3529bb4e reordered some (co)datatype property names for more consistency
blanchet
parents: 57882
diff changeset
  1066
           (split_selN, split_sel_thms, []),
6edc3529bb4e reordered some (co)datatype property names for more consistency
blanchet
parents: 57882
diff changeset
  1067
           (split_sel_asmN, split_sel_asm_thms, []),
57985
blanchet
parents: 57984
diff changeset
  1068
           (split_selsN, split_sel_thms @ split_sel_asm_thms, []),
blanchet
parents: 57984
diff changeset
  1069
           (splitsN, [split_thm, split_asm_thm], [])]
49300
c707df2e2083 added attributes to theorems
blanchet
parents: 49298
diff changeset
  1070
          |> filter_out (null o #2)
c707df2e2083 added attributes to theorems
blanchet
parents: 49298
diff changeset
  1071
          |> map (fn (thmN, thms, attrs) =>
49633
5b5450bc544c compatibility option to use "rep_datatype"
blanchet
parents: 49622
diff changeset
  1072
            ((qualify true (Binding.name thmN), attrs), [(thms, [])]));
49300
c707df2e2083 added attributes to theorems
blanchet
parents: 49298
diff changeset
  1073
57629
e88b5f59cade use the noted theorem whenever possible, because it has a named derivation (leading to cleaner proof terms)
blanchet
parents: 57260
diff changeset
  1074
        val (noted, lthy') =
e88b5f59cade use the noted theorem whenever possible, because it has a named derivation (leading to cleaner proof terms)
blanchet
parents: 57260
diff changeset
  1075
          lthy
e88b5f59cade use the noted theorem whenever possible, because it has a named derivation (leading to cleaner proof terms)
blanchet
parents: 57260
diff changeset
  1076
          |> Spec_Rules.add Spec_Rules.Equational ([casex], case_thms)
e88b5f59cade use the noted theorem whenever possible, because it has a named derivation (leading to cleaner proof terms)
blanchet
parents: 57260
diff changeset
  1077
          |> fold (Spec_Rules.add Spec_Rules.Equational)
e88b5f59cade use the noted theorem whenever possible, because it has a named derivation (leading to cleaner proof terms)
blanchet
parents: 57260
diff changeset
  1078
            (AList.group (eq_list (op aconv)) (map (`(single o lhs_head_of)) all_sel_thms))
e88b5f59cade use the noted theorem whenever possible, because it has a named derivation (leading to cleaner proof terms)
blanchet
parents: 57260
diff changeset
  1079
          |> fold (Spec_Rules.add Spec_Rules.Equational)
e88b5f59cade use the noted theorem whenever possible, because it has a named derivation (leading to cleaner proof terms)
blanchet
parents: 57260
diff changeset
  1080
            (filter_out (null o snd) (map single discs ~~ nontriv_disc_eq_thmss))
e88b5f59cade use the noted theorem whenever possible, because it has a named derivation (leading to cleaner proof terms)
blanchet
parents: 57260
diff changeset
  1081
          |> Local_Theory.declaration {syntax = false, pervasive = true}
58335
a5a3b576fcfb generate 'code' attribute only if 'code' plugin is enabled
blanchet
parents: 58317
diff changeset
  1082
            (fn phi => Case_Translation.register
a5a3b576fcfb generate 'code' attribute only if 'code' plugin is enabled
blanchet
parents: 58317
diff changeset
  1083
               (Morphism.term phi casex) (map (Morphism.term phi) ctrs))
57629
e88b5f59cade use the noted theorem whenever possible, because it has a named derivation (leading to cleaner proof terms)
blanchet
parents: 57260
diff changeset
  1084
          |> Local_Theory.background_theory (fold (fold Code.del_eqn) [disc_defs, sel_defs])
58191
b3c71d630777 pretend code generation is a ctr_sugar plugin
blanchet
parents: 58189
diff changeset
  1085
          |> plugins code_plugin ?
58335
a5a3b576fcfb generate 'code' attribute only if 'code' plugin is enabled
blanchet
parents: 58317
diff changeset
  1086
            Local_Theory.declaration {syntax = false, pervasive = false}
a5a3b576fcfb generate 'code' attribute only if 'code' plugin is enabled
blanchet
parents: 58317
diff changeset
  1087
              (fn phi => Context.mapping
a5a3b576fcfb generate 'code' attribute only if 'code' plugin is enabled
blanchet
parents: 58317
diff changeset
  1088
                 (add_ctr_code fcT_name (map (Morphism.typ phi) As)
a5a3b576fcfb generate 'code' attribute only if 'code' plugin is enabled
blanchet
parents: 58317
diff changeset
  1089
                    (map (dest_Const o Morphism.term phi) ctrs) (Morphism.fact phi inject_thms)
a5a3b576fcfb generate 'code' attribute only if 'code' plugin is enabled
blanchet
parents: 58317
diff changeset
  1090
                    (Morphism.fact phi distinct_thms) (Morphism.fact phi case_thms))
a5a3b576fcfb generate 'code' attribute only if 'code' plugin is enabled
blanchet
parents: 58317
diff changeset
  1091
                 I)
57633
4ff8c090d580 repaired named derivations
blanchet
parents: 57631
diff changeset
  1092
          |> Local_Theory.notes (anonymous_notes @ notes)
58317
21fac057681e tuned comment
blanchet
parents: 58289
diff changeset
  1093
          (* for "datatype_realizer.ML": *)
57633
4ff8c090d580 repaired named derivations
blanchet
parents: 57631
diff changeset
  1094
          |>> name_noted_thms fcT_name exhaustN;
57629
e88b5f59cade use the noted theorem whenever possible, because it has a named derivation (leading to cleaner proof terms)
blanchet
parents: 57260
diff changeset
  1095
53867
8ad44ecc0d15 keep a database of free constructor type information
blanchet
parents: 53864
diff changeset
  1096
        val ctr_sugar =
58675
69571f0a93df add 'kind' to 'cr_sugar'
desharna
parents: 58665
diff changeset
  1097
          {kind = kind, T = fcT, ctrs = ctrs, casex = casex, discs = discs, selss = selss,
69571f0a93df add 'kind' to 'cr_sugar'
desharna
parents: 58665
diff changeset
  1098
           exhaust = exhaust_thm, nchotomy = nchotomy_thm, injects = inject_thms,
69571f0a93df add 'kind' to 'cr_sugar'
desharna
parents: 58665
diff changeset
  1099
           distincts = distinct_thms, case_thms = case_thms, case_cong = case_cong_thm,
59267
blanchet
parents: 59266
diff changeset
  1100
           case_cong_weak = case_cong_weak_thm, case_distribs = [case_distrib_thm],
blanchet
parents: 59266
diff changeset
  1101
           split = split_thm, split_asm = split_asm_thm, disc_defs = disc_defs,
59271
c448752e8b9d generate 'disc_eq_case' for Ctr_Sugars
desharna
parents: 59267
diff changeset
  1102
           disc_thmss = disc_thmss, discIs = discI_thms, disc_eq_cases = disc_eq_case_thms,
c448752e8b9d generate 'disc_eq_case' for Ctr_Sugars
desharna
parents: 59267
diff changeset
  1103
           sel_defs = sel_defs, sel_thmss = sel_thmss, distinct_discsss = distinct_disc_thmsss,
c448752e8b9d generate 'disc_eq_case' for Ctr_Sugars
desharna
parents: 59267
diff changeset
  1104
           exhaust_discs = exhaust_disc_thms, exhaust_sels = exhaust_sel_thms,
c448752e8b9d generate 'disc_eq_case' for Ctr_Sugars
desharna
parents: 59267
diff changeset
  1105
           collapses = all_collapse_thms, expands = expand_thms, split_sels = split_sel_thms,
c448752e8b9d generate 'disc_eq_case' for Ctr_Sugars
desharna
parents: 59267
diff changeset
  1106
           split_sel_asms = split_sel_asm_thms, case_eq_ifs = case_eq_if_thms}
57629
e88b5f59cade use the noted theorem whenever possible, because it has a named derivation (leading to cleaner proof terms)
blanchet
parents: 57260
diff changeset
  1107
          |> morph_ctr_sugar (substitute_noted_thm noted);
49019
fc4decdba5ce more work on BNF sugar
blanchet
parents: 49017
diff changeset
  1108
      in
58189
9d714be4f028 added 'plugins' option to control which hooks are enabled
blanchet
parents: 58188
diff changeset
  1109
        (ctr_sugar, lthy' |> register_ctr_sugar plugins ctr_sugar)
49019
fc4decdba5ce more work on BNF sugar
blanchet
parents: 49017
diff changeset
  1110
      end;
49017
66fc7fc2d49b started work on datatype sugar
blanchet
parents:
diff changeset
  1111
  in
49121
9e0acaa470ab more work on FP sugar
blanchet
parents: 49120
diff changeset
  1112
    (goalss, after_qed, lthy')
49017
66fc7fc2d49b started work on datatype sugar
blanchet
parents:
diff changeset
  1113
  end;
66fc7fc2d49b started work on datatype sugar
blanchet
parents:
diff changeset
  1114
58675
69571f0a93df add 'kind' to 'cr_sugar'
desharna
parents: 58665
diff changeset
  1115
fun free_constructors kind tacss = (fn (goalss, after_qed, lthy) =>
51551
88d1d19fb74f tuned signature and module arrangement;
wenzelm
parents: 51380
diff changeset
  1116
  map2 (map2 (Thm.close_derivation oo Goal.prove_sorry lthy [] [])) goalss tacss
58675
69571f0a93df add 'kind' to 'cr_sugar'
desharna
parents: 58665
diff changeset
  1117
  |> (fn thms => after_qed thms lthy)) oo prepare_free_constructors kind (K I) (K I);
49280
52413dc96326 allow default values for selectors in low-level "wrap_data" command
blanchet
parents: 49278
diff changeset
  1118
58675
69571f0a93df add 'kind' to 'cr_sugar'
desharna
parents: 58665
diff changeset
  1119
fun free_constructors_cmd kind = (fn (goalss, after_qed, lthy) =>
49297
47fbf2e3e89c provide a programmatic interface for FP sugar
blanchet
parents: 49286
diff changeset
  1120
  Proof.theorem NONE (snd oo after_qed) (map (map (rpair [])) goalss) lthy) oo
58675
69571f0a93df add 'kind' to 'cr_sugar'
desharna
parents: 58665
diff changeset
  1121
  prepare_free_constructors kind Plugin_Name.make_filter Syntax.read_term;
49297
47fbf2e3e89c provide a programmatic interface for FP sugar
blanchet
parents: 49286
diff changeset
  1122
57091
1fa9c19ba2c9 got rid of '=:' squiggly
blanchet
parents: 57090
diff changeset
  1123
val parse_bound_term = Parse.binding --| @{keyword ":"} -- Parse.term;
49280
52413dc96326 allow default values for selectors in low-level "wrap_data" command
blanchet
parents: 49278
diff changeset
  1124
58660
8d4aebb9e327 clarified load order;
wenzelm
parents: 58659
diff changeset
  1125
type ctr_options = Plugin_Name.filter * bool;
8d4aebb9e327 clarified load order;
wenzelm
parents: 58659
diff changeset
  1126
type ctr_options_cmd = (Proof.context -> Plugin_Name.filter) * bool;
58189
9d714be4f028 added 'plugins' option to control which hooks are enabled
blanchet
parents: 58188
diff changeset
  1127
58660
8d4aebb9e327 clarified load order;
wenzelm
parents: 58659
diff changeset
  1128
val default_ctr_options : ctr_options = (Plugin_Name.default_filter, false);
8d4aebb9e327 clarified load order;
wenzelm
parents: 58659
diff changeset
  1129
val default_ctr_options_cmd : ctr_options_cmd = (K Plugin_Name.default_filter, false);
58189
9d714be4f028 added 'plugins' option to control which hooks are enabled
blanchet
parents: 58188
diff changeset
  1130
55469
b19dd108f0c2 aligned the syntax for 'free_constructors' on the 'datatype_new' and 'codatatype' syntax
blanchet
parents: 55468
diff changeset
  1131
val parse_ctr_options =
54626
8a5e82425e55 added 'no_code' option
blanchet
parents: 54622
diff changeset
  1132
  Scan.optional (@{keyword "("} |-- Parse.list1
59281
1b4dc8a9f7d9 added plugins syntax to prim(co)rec
blanchet
parents: 59272
diff changeset
  1133
        (Plugin_Name.parse_filter >> (apfst o K)
1b4dc8a9f7d9 added plugins syntax to prim(co)rec
blanchet
parents: 59272
diff changeset
  1134
         || Parse.reserved "discs_sels" >> (apsnd o K o K true)) --|
55410
54b09e82b9e1 killed 'rep_compat' option
blanchet
parents: 55409
diff changeset
  1135
      @{keyword ")"}
58659
6c9821c32dd5 Local_Interpretation is superseded by Plugin with formal Plugin_Name management, avoiding undeclared strings;
wenzelm
parents: 58634
diff changeset
  1136
      >> (fn fs => fold I fs default_ctr_options_cmd))
6c9821c32dd5 Local_Interpretation is superseded by Plugin with formal Plugin_Name management, avoiding undeclared strings;
wenzelm
parents: 58634
diff changeset
  1137
    default_ctr_options_cmd;
49278
718e4ad1517e added no_dests option
blanchet
parents: 49277
diff changeset
  1138
55469
b19dd108f0c2 aligned the syntax for 'free_constructors' on the 'datatype_new' and 'codatatype' syntax
blanchet
parents: 55468
diff changeset
  1139
fun parse_ctr_spec parse_ctr parse_arg =
57200
aab87ffa60cc use 'where' clause for selector default value syntax
blanchet
parents: 57094
diff changeset
  1140
  parse_opt_binding_colon -- parse_ctr -- Scan.repeat parse_arg;
55469
b19dd108f0c2 aligned the syntax for 'free_constructors' on the 'datatype_new' and 'codatatype' syntax
blanchet
parents: 55468
diff changeset
  1141
57091
1fa9c19ba2c9 got rid of '=:' squiggly
blanchet
parents: 57090
diff changeset
  1142
val parse_ctr_specs = Parse.enum1 "|" (parse_ctr_spec Parse.term Parse.binding);
57200
aab87ffa60cc use 'where' clause for selector default value syntax
blanchet
parents: 57094
diff changeset
  1143
val parse_sel_default_eqs = Scan.optional (@{keyword "where"} |-- Parse.enum1 "|" Parse.prop) [];
55469
b19dd108f0c2 aligned the syntax for 'free_constructors' on the 'datatype_new' and 'codatatype' syntax
blanchet
parents: 55468
diff changeset
  1144
49017
66fc7fc2d49b started work on datatype sugar
blanchet
parents:
diff changeset
  1145
val _ =
55468
98b25c51e9e5 renamed 'wrap_free_constructors' to 'free_constructors' (cf. 'functor', 'bnf', etc.)
blanchet
parents: 55464
diff changeset
  1146
  Outer_Syntax.local_theory_to_proof @{command_spec "free_constructors"}
98b25c51e9e5 renamed 'wrap_free_constructors' to 'free_constructors' (cf. 'functor', 'bnf', etc.)
blanchet
parents: 55464
diff changeset
  1147
    "register an existing freely generated type's constructors"
57091
1fa9c19ba2c9 got rid of '=:' squiggly
blanchet
parents: 57090
diff changeset
  1148
    (parse_ctr_options -- Parse.binding --| @{keyword "for"} -- parse_ctr_specs
57200
aab87ffa60cc use 'where' clause for selector default value syntax
blanchet
parents: 57094
diff changeset
  1149
       -- parse_sel_default_eqs
58675
69571f0a93df add 'kind' to 'cr_sugar'
desharna
parents: 58665
diff changeset
  1150
     >> free_constructors_cmd Unknown);
49017
66fc7fc2d49b started work on datatype sugar
blanchet
parents:
diff changeset
  1151
66fc7fc2d49b started work on datatype sugar
blanchet
parents:
diff changeset
  1152
end;