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