author | blanchet |
Thu, 05 Mar 2015 11:57:34 +0100 | |
changeset 59596 | c067eba942e7 |
parent 59595 | 2d90b85b9264 |
child 59597 | 70a68edcc79b |
permissions | -rw-r--r-- |
55061 | 1 |
(* Title: HOL/Tools/BNF/bnf_gfp_rec_sugar.ML |
53303
ae49b835ca01
moved files related to "primrec_new", "primcorec", and "datatype_compat" from bitbucket co-rec repository
blanchet
parents:
diff
changeset
|
2 |
Author: Lorenz Panny, TU Muenchen |
54246
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
3 |
Author: Jasmin Blanchette, TU Muenchen |
53303
ae49b835ca01
moved files related to "primrec_new", "primcorec", and "datatype_compat" from bitbucket co-rec repository
blanchet
parents:
diff
changeset
|
4 |
Copyright 2013 |
ae49b835ca01
moved files related to "primrec_new", "primcorec", and "datatype_compat" from bitbucket co-rec repository
blanchet
parents:
diff
changeset
|
5 |
|
55538 | 6 |
Corecursor sugar ("primcorec" and "primcorecursive"). |
53303
ae49b835ca01
moved files related to "primrec_new", "primcorec", and "datatype_compat" from bitbucket co-rec repository
blanchet
parents:
diff
changeset
|
7 |
*) |
ae49b835ca01
moved files related to "primrec_new", "primcorec", and "datatype_compat" from bitbucket co-rec repository
blanchet
parents:
diff
changeset
|
8 |
|
54246
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
9 |
signature BNF_GFP_REC_SUGAR = |
53303
ae49b835ca01
moved files related to "primrec_new", "primcorec", and "datatype_compat" from bitbucket co-rec repository
blanchet
parents:
diff
changeset
|
10 |
sig |
59281 | 11 |
datatype corec_option = |
12 |
Plugins_Option of Proof.context -> Plugin_Name.filter | |
|
13 |
Sequential_Option | |
|
14 |
Exhaustive_Option | |
|
15 |
Transfer_Option |
|
54899
7a01387c47d5
added tactic to prove 'disc_iff' properties in 'primcorec'
blanchet
parents:
54883
diff
changeset
|
16 |
|
58223
ba7a2d19880c
export useful functions for users of (co)recursors
blanchet
parents:
58211
diff
changeset
|
17 |
datatype corec_call = |
ba7a2d19880c
export useful functions for users of (co)recursors
blanchet
parents:
58211
diff
changeset
|
18 |
Dummy_No_Corec of int | |
ba7a2d19880c
export useful functions for users of (co)recursors
blanchet
parents:
58211
diff
changeset
|
19 |
No_Corec of int | |
ba7a2d19880c
export useful functions for users of (co)recursors
blanchet
parents:
58211
diff
changeset
|
20 |
Mutual_Corec of int * int * int | |
ba7a2d19880c
export useful functions for users of (co)recursors
blanchet
parents:
58211
diff
changeset
|
21 |
Nested_Corec of int |
ba7a2d19880c
export useful functions for users of (co)recursors
blanchet
parents:
58211
diff
changeset
|
22 |
|
ba7a2d19880c
export useful functions for users of (co)recursors
blanchet
parents:
58211
diff
changeset
|
23 |
type corec_ctr_spec = |
ba7a2d19880c
export useful functions for users of (co)recursors
blanchet
parents:
58211
diff
changeset
|
24 |
{ctr: term, |
ba7a2d19880c
export useful functions for users of (co)recursors
blanchet
parents:
58211
diff
changeset
|
25 |
disc: term, |
ba7a2d19880c
export useful functions for users of (co)recursors
blanchet
parents:
58211
diff
changeset
|
26 |
sels: term list, |
ba7a2d19880c
export useful functions for users of (co)recursors
blanchet
parents:
58211
diff
changeset
|
27 |
pred: int option, |
ba7a2d19880c
export useful functions for users of (co)recursors
blanchet
parents:
58211
diff
changeset
|
28 |
calls: corec_call list, |
ba7a2d19880c
export useful functions for users of (co)recursors
blanchet
parents:
58211
diff
changeset
|
29 |
discI: thm, |
ba7a2d19880c
export useful functions for users of (co)recursors
blanchet
parents:
58211
diff
changeset
|
30 |
sel_thms: thm list, |
ba7a2d19880c
export useful functions for users of (co)recursors
blanchet
parents:
58211
diff
changeset
|
31 |
distinct_discss: thm list list, |
ba7a2d19880c
export useful functions for users of (co)recursors
blanchet
parents:
58211
diff
changeset
|
32 |
collapse: thm, |
ba7a2d19880c
export useful functions for users of (co)recursors
blanchet
parents:
58211
diff
changeset
|
33 |
corec_thm: thm, |
ba7a2d19880c
export useful functions for users of (co)recursors
blanchet
parents:
58211
diff
changeset
|
34 |
corec_disc: thm, |
ba7a2d19880c
export useful functions for users of (co)recursors
blanchet
parents:
58211
diff
changeset
|
35 |
corec_sels: thm list} |
ba7a2d19880c
export useful functions for users of (co)recursors
blanchet
parents:
58211
diff
changeset
|
36 |
|
ba7a2d19880c
export useful functions for users of (co)recursors
blanchet
parents:
58211
diff
changeset
|
37 |
type corec_spec = |
59275
77cd4992edcd
Add plugin to generate transfer theorem for primrec and primcorec
desharna
parents:
59058
diff
changeset
|
38 |
{T: typ, |
77cd4992edcd
Add plugin to generate transfer theorem for primrec and primcorec
desharna
parents:
59058
diff
changeset
|
39 |
corec: term, |
58223
ba7a2d19880c
export useful functions for users of (co)recursors
blanchet
parents:
58211
diff
changeset
|
40 |
exhaust_discs: thm list, |
ba7a2d19880c
export useful functions for users of (co)recursors
blanchet
parents:
58211
diff
changeset
|
41 |
sel_defs: thm list, |
ba7a2d19880c
export useful functions for users of (co)recursors
blanchet
parents:
58211
diff
changeset
|
42 |
fp_nesting_maps: thm list, |
ba7a2d19880c
export useful functions for users of (co)recursors
blanchet
parents:
58211
diff
changeset
|
43 |
fp_nesting_map_ident0s: thm list, |
ba7a2d19880c
export useful functions for users of (co)recursors
blanchet
parents:
58211
diff
changeset
|
44 |
fp_nesting_map_comps: thm list, |
ba7a2d19880c
export useful functions for users of (co)recursors
blanchet
parents:
58211
diff
changeset
|
45 |
ctr_specs: corec_ctr_spec list} |
ba7a2d19880c
export useful functions for users of (co)recursors
blanchet
parents:
58211
diff
changeset
|
46 |
|
ba7a2d19880c
export useful functions for users of (co)recursors
blanchet
parents:
58211
diff
changeset
|
47 |
val corec_specs_of: binding list -> typ list -> typ list -> term list -> |
ba7a2d19880c
export useful functions for users of (co)recursors
blanchet
parents:
58211
diff
changeset
|
48 |
(term * term list list) list list -> local_theory -> |
58283
71d74e641538
preserve case names in '(co)induct' theorems generated by prim(co)rec'
blanchet
parents:
58223
diff
changeset
|
49 |
corec_spec list * typ list * thm * thm * thm list * thm list * (Token.src list * Token.src list) |
71d74e641538
preserve case names in '(co)induct' theorems generated by prim(co)rec'
blanchet
parents:
58223
diff
changeset
|
50 |
* bool * local_theory |
59275
77cd4992edcd
Add plugin to generate transfer theorem for primrec and primcorec
desharna
parents:
59058
diff
changeset
|
51 |
|
59281 | 52 |
val gfp_rec_sugar_interpretation: string -> |
53 |
(BNF_FP_Rec_Sugar_Util.fp_rec_sugar -> local_theory -> local_theory) -> theory -> theory |
|
59275
77cd4992edcd
Add plugin to generate transfer theorem for primrec and primcorec
desharna
parents:
59058
diff
changeset
|
54 |
|
59281 | 55 |
val add_primcorecursive_cmd: corec_option list -> |
53831
80423b9080cf
support "of" syntax to disambiguate selector equations
panny
parents:
53830
diff
changeset
|
56 |
(binding * string option * mixfix) list * ((Attrib.binding * string) * string option) list -> |
80423b9080cf
support "of" syntax to disambiguate selector equations
panny
parents:
53830
diff
changeset
|
57 |
Proof.context -> Proof.state |
59281 | 58 |
val add_primcorec_cmd: corec_option list -> |
53831
80423b9080cf
support "of" syntax to disambiguate selector equations
panny
parents:
53830
diff
changeset
|
59 |
(binding * string option * mixfix) list * ((Attrib.binding * string) * string option) list -> |
80423b9080cf
support "of" syntax to disambiguate selector equations
panny
parents:
53830
diff
changeset
|
60 |
local_theory -> local_theory |
53303
ae49b835ca01
moved files related to "primrec_new", "primcorec", and "datatype_compat" from bitbucket co-rec repository
blanchet
parents:
diff
changeset
|
61 |
end; |
ae49b835ca01
moved files related to "primrec_new", "primcorec", and "datatype_compat" from bitbucket co-rec repository
blanchet
parents:
diff
changeset
|
62 |
|
54246
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
63 |
structure BNF_GFP_Rec_Sugar : BNF_GFP_REC_SUGAR = |
53303
ae49b835ca01
moved files related to "primrec_new", "primcorec", and "datatype_compat" from bitbucket co-rec repository
blanchet
parents:
diff
changeset
|
64 |
struct |
ae49b835ca01
moved files related to "primrec_new", "primcorec", and "datatype_compat" from bitbucket co-rec repository
blanchet
parents:
diff
changeset
|
65 |
|
54905
2fdec6c29eb7
don't generate any proof obligation for implicit (de facto) exclusiveness
blanchet
parents:
54904
diff
changeset
|
66 |
open Ctr_Sugar_General_Tactics |
54246
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
67 |
open Ctr_Sugar |
53303
ae49b835ca01
moved files related to "primrec_new", "primcorec", and "datatype_compat" from bitbucket co-rec repository
blanchet
parents:
diff
changeset
|
68 |
open BNF_Util |
54246
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
69 |
open BNF_Def |
53303
ae49b835ca01
moved files related to "primrec_new", "primcorec", and "datatype_compat" from bitbucket co-rec repository
blanchet
parents:
diff
changeset
|
70 |
open BNF_FP_Util |
54246
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
71 |
open BNF_FP_Def_Sugar |
54243 | 72 |
open BNF_FP_N2M_Sugar |
53303
ae49b835ca01
moved files related to "primrec_new", "primcorec", and "datatype_compat" from bitbucket co-rec repository
blanchet
parents:
diff
changeset
|
73 |
open BNF_FP_Rec_Sugar_Util |
59276 | 74 |
open BNF_FP_Rec_Sugar_Transfer |
54246
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
75 |
open BNF_GFP_Rec_Sugar_Tactics |
53303
ae49b835ca01
moved files related to "primrec_new", "primcorec", and "datatype_compat" from bitbucket co-rec repository
blanchet
parents:
diff
changeset
|
76 |
|
58387 | 77 |
val codeN = "code"; |
78 |
val ctrN = "ctr"; |
|
79 |
val discN = "disc"; |
|
80 |
val disc_iffN = "disc_iff"; |
|
81 |
val excludeN = "exclude"; |
|
82 |
val selN = "sel"; |
|
53791 | 83 |
|
54145
297d1c603999
make sure that registered code equations are actually equations
blanchet
parents:
54133
diff
changeset
|
84 |
val nitpicksimp_attrs = @{attributes [nitpick_simp]}; |
53794 | 85 |
val simp_attrs = @{attributes [simp]}; |
54246
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
86 |
|
59594 | 87 |
fun not_codatatype ctxt T = |
88 |
error ("Not a codatatype: " ^ Syntax.string_of_typ ctxt T); |
|
89 |
fun ill_formed_corec_call ctxt t = |
|
90 |
error ("Ill-formed corecursive call " ^ quote (Syntax.string_of_term ctxt t)); |
|
91 |
fun invalid_map ctxt t = |
|
92 |
error_at ctxt [t] "Invalid map function"; |
|
93 |
fun unexpected_corec_call ctxt eqns t = |
|
59596
c067eba942e7
no quick_and_dirty for goals that may fail + tuned messages
blanchet
parents:
59595
diff
changeset
|
94 |
error_at ctxt eqns ("Unexpected corecursive call in " ^ quote (Syntax.string_of_term ctxt t)); |
54246
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
95 |
|
59281 | 96 |
datatype corec_option = |
97 |
Plugins_Option of Proof.context -> Plugin_Name.filter | |
|
98 |
Sequential_Option | |
|
99 |
Exhaustive_Option | |
|
100 |
Transfer_Option; |
|
54591
c822230fd22b
prevent exception when equations for a function are missing;
panny
parents:
54279
diff
changeset
|
101 |
|
54246
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
102 |
datatype corec_call = |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
103 |
Dummy_No_Corec of int | |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
104 |
No_Corec of int | |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
105 |
Mutual_Corec of int * int * int | |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
106 |
Nested_Corec of int; |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
107 |
|
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
108 |
type basic_corec_ctr_spec = |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
109 |
{ctr: term, |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
110 |
disc: term, |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
111 |
sels: term list}; |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
112 |
|
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
113 |
type corec_ctr_spec = |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
114 |
{ctr: term, |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
115 |
disc: term, |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
116 |
sels: term list, |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
117 |
pred: int option, |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
118 |
calls: corec_call list, |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
119 |
discI: thm, |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
120 |
sel_thms: thm list, |
57983
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57895
diff
changeset
|
121 |
distinct_discss: thm list list, |
54246
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
122 |
collapse: thm, |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
123 |
corec_thm: thm, |
57983
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57895
diff
changeset
|
124 |
corec_disc: thm, |
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57895
diff
changeset
|
125 |
corec_sels: thm list}; |
54246
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
126 |
|
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
127 |
type corec_spec = |
59275
77cd4992edcd
Add plugin to generate transfer theorem for primrec and primcorec
desharna
parents:
59058
diff
changeset
|
128 |
{T: typ, |
77cd4992edcd
Add plugin to generate transfer theorem for primrec and primcorec
desharna
parents:
59058
diff
changeset
|
129 |
corec: term, |
57983
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57895
diff
changeset
|
130 |
exhaust_discs: thm list, |
56858 | 131 |
sel_defs: thm list, |
57397 | 132 |
fp_nesting_maps: thm list, |
57399 | 133 |
fp_nesting_map_ident0s: thm list, |
57397 | 134 |
fp_nesting_map_comps: thm list, |
54246
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
135 |
ctr_specs: corec_ctr_spec list}; |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
136 |
|
58223
ba7a2d19880c
export useful functions for users of (co)recursors
blanchet
parents:
58211
diff
changeset
|
137 |
exception NO_MAP of term; |
54246
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
138 |
|
59058
a78612c67ec0
renamed "pairself" to "apply2", in accordance to @{apply 2};
wenzelm
parents:
59044
diff
changeset
|
139 |
fun sort_list_duplicates xs = map snd (sort (int_ord o apply2 fst) xs); |
54948 | 140 |
|
54246
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
141 |
val mk_conjs = try (foldr1 HOLogic.mk_conj) #> the_default @{const True}; |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
142 |
val mk_disjs = try (foldr1 HOLogic.mk_disj) #> the_default @{const False}; |
54900 | 143 |
val mk_dnf = mk_disjs o map mk_conjs; |
54246
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
144 |
|
55008
b5b2e193ca33
use 'disc_exhausts' property both from types on which 'case's take place and on return type
blanchet
parents:
55005
diff
changeset
|
145 |
val conjuncts_s = filter_out (curry (op aconv) @{const True}) o HOLogic.conjuncts; |
54246
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
146 |
|
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
147 |
fun s_not @{const True} = @{const False} |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
148 |
| s_not @{const False} = @{const True} |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
149 |
| s_not (@{const Not} $ t) = t |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
150 |
| s_not (@{const conj} $ t $ u) = @{const disj} $ s_not t $ s_not u |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
151 |
| s_not (@{const disj} $ t $ u) = @{const conj} $ s_not t $ s_not u |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
152 |
| s_not t = @{const Not} $ t; |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
153 |
|
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
154 |
val s_not_conj = conjuncts_s o s_not o mk_conjs; |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
155 |
|
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
156 |
fun propagate_unit_pos u cs = if member (op aconv) cs u then [@{const False}] else cs; |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
157 |
|
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
158 |
fun propagate_unit_neg not_u cs = remove (op aconv) not_u cs; |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
159 |
|
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
160 |
fun propagate_units css = |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
161 |
(case List.partition (can the_single) css of |
58393 | 162 |
([], _) => css |
163 |
| ([u] :: uss, css') => |
|
164 |
[u] :: propagate_units (map (propagate_unit_neg (s_not u)) |
|
165 |
(map (propagate_unit_pos u) (uss @ css')))); |
|
54246
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
166 |
|
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
167 |
fun s_conjs cs = |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
168 |
if member (op aconv) cs @{const False} then @{const False} |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
169 |
else mk_conjs (remove (op aconv) @{const True} cs); |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
170 |
|
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
171 |
fun s_disjs ds = |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
172 |
if member (op aconv) ds @{const True} then @{const True} |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
173 |
else mk_disjs (remove (op aconv) @{const False} ds); |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
174 |
|
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
175 |
fun s_dnf css0 = |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
176 |
let val css = propagate_units css0 in |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
177 |
if null css then |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
178 |
[@{const False}] |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
179 |
else if exists null css then |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
180 |
[] |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
181 |
else |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
182 |
map (fn c :: cs => (c, cs)) css |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
183 |
|> AList.coalesce (op =) |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
184 |
|> map (fn (c, css) => c :: s_dnf css) |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
185 |
|> (fn [cs] => cs | css => [s_disjs (map s_conjs css)]) |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
186 |
end; |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
187 |
|
55341
3d2c97392e25
adapted tactic to correctly handle 'if ... then ...' and 'case ...' under lambdas
blanchet
parents:
55339
diff
changeset
|
188 |
fun fold_rev_let_if_case ctxt f bound_Ts = |
54246
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
189 |
let |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
190 |
val thy = Proof_Context.theory_of ctxt; |
53794 | 191 |
|
54246
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
192 |
fun fld conds t = |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
193 |
(case Term.strip_comb t of |
55343 | 194 |
(Const (@{const_name Let}, _), [_, _]) => fld conds (unfold_lets_splits t) |
54246
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
195 |
| (Const (@{const_name If}, _), [cond, then_branch, else_branch]) => |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
196 |
fld (conds @ conjuncts_s cond) then_branch o fld (conds @ s_not_conj [cond]) else_branch |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
197 |
| (Const (c, _), args as _ :: _ :: _) => |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
198 |
let val n = num_binder_types (Sign.the_const_type thy c) - 1 in |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
199 |
if n >= 0 andalso n < length args then |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
200 |
(case fastype_of1 (bound_Ts, nth args n) of |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
201 |
Type (s, Ts) => |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
202 |
(case dest_case ctxt s Ts t of |
57983
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57895
diff
changeset
|
203 |
SOME ({split_sels = _ :: _, ...}, conds', branches) => |
55341
3d2c97392e25
adapted tactic to correctly handle 'if ... then ...' and 'case ...' under lambdas
blanchet
parents:
55339
diff
changeset
|
204 |
fold_rev (uncurry fld) (map (append conds o conjuncts_s) conds' ~~ branches) |
3d2c97392e25
adapted tactic to correctly handle 'if ... then ...' and 'case ...' under lambdas
blanchet
parents:
55339
diff
changeset
|
205 |
| _ => f conds t) |
3d2c97392e25
adapted tactic to correctly handle 'if ... then ...' and 'case ...' under lambdas
blanchet
parents:
55339
diff
changeset
|
206 |
| _ => f conds t) |
54246
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
207 |
else |
55341
3d2c97392e25
adapted tactic to correctly handle 'if ... then ...' and 'case ...' under lambdas
blanchet
parents:
55339
diff
changeset
|
208 |
f conds t |
54246
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
209 |
end |
55342 | 210 |
| _ => f conds t); |
54246
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
211 |
in |
55341
3d2c97392e25
adapted tactic to correctly handle 'if ... then ...' and 'case ...' under lambdas
blanchet
parents:
55339
diff
changeset
|
212 |
fld [] |
54246
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
213 |
end; |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
214 |
|
54970
891141de5672
only destruct cases equipped with the right stuff (in particular, 'sel_split')
blanchet
parents:
54969
diff
changeset
|
215 |
fun case_of ctxt s = |
891141de5672
only destruct cases equipped with the right stuff (in particular, 'sel_split')
blanchet
parents:
54969
diff
changeset
|
216 |
(case ctr_sugar_of ctxt s of |
57983
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57895
diff
changeset
|
217 |
SOME {casex = Const (s', _), split_sels = _ :: _, ...} => SOME s' |
54970
891141de5672
only destruct cases equipped with the right stuff (in particular, 'sel_split')
blanchet
parents:
54969
diff
changeset
|
218 |
| _ => NONE); |
54246
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
219 |
|
59596
c067eba942e7
no quick_and_dirty for goals that may fail + tuned messages
blanchet
parents:
59595
diff
changeset
|
220 |
fun massage_let_if_case ctxt has_call massage_leaf bound_Ts t0 = |
54246
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
221 |
let |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
222 |
val thy = Proof_Context.theory_of ctxt; |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
223 |
|
59596
c067eba942e7
no quick_and_dirty for goals that may fail + tuned messages
blanchet
parents:
59595
diff
changeset
|
224 |
fun check_no_call t = if has_call t then unexpected_corec_call ctxt [t0] t else (); |
54246
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
225 |
|
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
226 |
fun massage_abs bound_Ts 0 t = massage_rec bound_Ts t |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
227 |
| massage_abs bound_Ts m (Abs (s, T, t)) = Abs (s, T, massage_abs (T :: bound_Ts) (m - 1) t) |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
228 |
| massage_abs bound_Ts m t = |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
229 |
let val T = domain_type (fastype_of1 (bound_Ts, t)) in |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
230 |
Abs (Name.uu, T, massage_abs (T :: bound_Ts) (m - 1) (incr_boundvars 1 t $ Bound 0)) |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
231 |
end |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
232 |
and massage_rec bound_Ts t = |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
233 |
let val typof = curry fastype_of1 bound_Ts in |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
234 |
(case Term.strip_comb t of |
55343 | 235 |
(Const (@{const_name Let}, _), [_, _]) => massage_rec bound_Ts (unfold_lets_splits t) |
54246
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
236 |
| (Const (@{const_name If}, _), obj :: (branches as [_, _])) => |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
237 |
let val branches' = map (massage_rec bound_Ts) branches in |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
238 |
Term.list_comb (If_const (typof (hd branches')) $ tap check_no_call obj, branches') |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
239 |
end |
55414
eab03e9cee8a
renamed '{prod,sum,bool,unit}_case' to 'case_...'
blanchet
parents:
55400
diff
changeset
|
240 |
| (c as Const (@{const_name case_prod}, _), arg :: args) => |
55343 | 241 |
massage_rec bound_Ts |
57895 | 242 |
(unfold_splits_lets (Term.list_comb (c $ Envir.eta_long bound_Ts arg, args))) |
54246
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
243 |
| (Const (c, _), args as _ :: _ :: _) => |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
244 |
(case try strip_fun_type (Sign.the_const_type thy c) of |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
245 |
SOME (gen_branch_Ts, gen_body_fun_T) => |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
246 |
let |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
247 |
val gen_branch_ms = map num_binder_types gen_branch_Ts; |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
248 |
val n = length gen_branch_ms; |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
249 |
in |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
250 |
if n < length args then |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
251 |
(case gen_body_fun_T of |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
252 |
Type (_, [Type (T_name, _), _]) => |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
253 |
if case_of ctxt T_name = SOME c then |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
254 |
let |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
255 |
val (branches, obj_leftovers) = chop n args; |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
256 |
val branches' = map2 (massage_abs bound_Ts) gen_branch_ms branches; |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
257 |
val branch_Ts' = map typof branches'; |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
258 |
val body_T' = snd (strip_typeN (hd gen_branch_ms) (hd branch_Ts')); |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
259 |
val casex' = Const (c, branch_Ts' ---> map typof obj_leftovers ---> body_T'); |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
260 |
in |
54272
9d623cada37f
avoid subtle failure in the presence of top sort
blanchet
parents:
54271
diff
changeset
|
261 |
Term.list_comb (casex', |
9d623cada37f
avoid subtle failure in the presence of top sort
blanchet
parents:
54271
diff
changeset
|
262 |
branches' @ tap (List.app check_no_call) obj_leftovers) |
54246
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
263 |
end |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
264 |
else |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
265 |
massage_leaf bound_Ts t |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
266 |
| _ => massage_leaf bound_Ts t) |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
267 |
else |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
268 |
massage_leaf bound_Ts t |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
269 |
end |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
270 |
| NONE => massage_leaf bound_Ts t) |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
271 |
| _ => massage_leaf bound_Ts t) |
55342 | 272 |
end; |
54246
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
273 |
in |
59596
c067eba942e7
no quick_and_dirty for goals that may fail + tuned messages
blanchet
parents:
59595
diff
changeset
|
274 |
massage_rec bound_Ts t0 |
54246
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
275 |
end; |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
276 |
|
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
277 |
fun curried_type (Type (@{type_name fun}, [Type (@{type_name prod}, Ts), T])) = Ts ---> T; |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
278 |
|
59596
c067eba942e7
no quick_and_dirty for goals that may fail + tuned messages
blanchet
parents:
59595
diff
changeset
|
279 |
fun massage_nested_corec_call ctxt has_call raw_massage_call bound_Ts U t0 = |
54246
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
280 |
let |
59596
c067eba942e7
no quick_and_dirty for goals that may fail + tuned messages
blanchet
parents:
59595
diff
changeset
|
281 |
fun check_no_call t = if has_call t then unexpected_corec_call ctxt [t0] t else (); |
54246
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
282 |
|
57303 | 283 |
val build_map_Inl = build_map ctxt [] (uncurry Inl_const o dest_sumT o snd); |
54246
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
284 |
|
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
285 |
fun massage_mutual_call bound_Ts U T t = |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
286 |
if has_call t then |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
287 |
(case try dest_sumT U of |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
288 |
SOME (U1, U2) => if U1 = T then raw_massage_call bound_Ts T U2 t else invalid_map ctxt t |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
289 |
| NONE => invalid_map ctxt t) |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
290 |
else |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
291 |
build_map_Inl (T, U) $ t; |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
292 |
|
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
293 |
fun massage_map bound_Ts (Type (_, Us)) (Type (s, Ts)) t = |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
294 |
(case try (dest_map ctxt s) t of |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
295 |
SOME (map0, fs) => |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
296 |
let |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
297 |
val Type (_, dom_Ts) = domain_type (fastype_of1 (bound_Ts, t)); |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
298 |
val map' = mk_map (length fs) dom_Ts Us map0; |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
299 |
val fs' = |
58634
9f10d82e8188
added parameterized ML antiquotations @{map N}, @{fold N}, @{fold_map N}, @{split_list N};
wenzelm
parents:
58462
diff
changeset
|
300 |
map_flattened_map_args ctxt s (@{map 3} (massage_map_or_map_arg bound_Ts) Us Ts) fs; |
54246
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
301 |
in |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
302 |
Term.list_comb (map', fs') |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
303 |
end |
58223
ba7a2d19880c
export useful functions for users of (co)recursors
blanchet
parents:
58211
diff
changeset
|
304 |
| NONE => raise NO_MAP t) |
ba7a2d19880c
export useful functions for users of (co)recursors
blanchet
parents:
58211
diff
changeset
|
305 |
| massage_map _ _ _ t = raise NO_MAP t |
54246
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
306 |
and massage_map_or_map_arg bound_Ts U T t = |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
307 |
if T = U then |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
308 |
tap check_no_call t |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
309 |
else |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
310 |
massage_map bound_Ts U T t |
58223
ba7a2d19880c
export useful functions for users of (co)recursors
blanchet
parents:
58211
diff
changeset
|
311 |
handle NO_MAP _ => massage_mutual_fun bound_Ts U T t |
55339
f09037306f25
properly massage 'if's / 'case's etc. under lambdas
blanchet
parents:
55100
diff
changeset
|
312 |
and massage_mutual_fun bound_Ts U T t = |
f09037306f25
properly massage 'if's / 'case's etc. under lambdas
blanchet
parents:
55100
diff
changeset
|
313 |
(case t of |
f09037306f25
properly massage 'if's / 'case's etc. under lambdas
blanchet
parents:
55100
diff
changeset
|
314 |
Const (@{const_name comp}, _) $ t1 $ t2 => |
f09037306f25
properly massage 'if's / 'case's etc. under lambdas
blanchet
parents:
55100
diff
changeset
|
315 |
mk_comp bound_Ts (massage_mutual_fun bound_Ts U T t1, tap check_no_call t2) |
f09037306f25
properly massage 'if's / 'case's etc. under lambdas
blanchet
parents:
55100
diff
changeset
|
316 |
| _ => |
f09037306f25
properly massage 'if's / 'case's etc. under lambdas
blanchet
parents:
55100
diff
changeset
|
317 |
let |
f09037306f25
properly massage 'if's / 'case's etc. under lambdas
blanchet
parents:
55100
diff
changeset
|
318 |
val var = Var ((Name.uu, Term.maxidx_of_term t + 1), |
f09037306f25
properly massage 'if's / 'case's etc. under lambdas
blanchet
parents:
55100
diff
changeset
|
319 |
domain_type (fastype_of1 (bound_Ts, t))); |
f09037306f25
properly massage 'if's / 'case's etc. under lambdas
blanchet
parents:
55100
diff
changeset
|
320 |
in |
59041 | 321 |
Term.lambda var (Term.incr_boundvars 1 (massage_call bound_Ts U T (betapply (t, var)))) |
55339
f09037306f25
properly massage 'if's / 'case's etc. under lambdas
blanchet
parents:
55100
diff
changeset
|
322 |
end) |
f09037306f25
properly massage 'if's / 'case's etc. under lambdas
blanchet
parents:
55100
diff
changeset
|
323 |
and massage_call bound_Ts U T = |
54246
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
324 |
massage_let_if_case ctxt has_call (fn bound_Ts => fn t => |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
325 |
if has_call t then |
54955
cf8d429dc24e
reintroduce recursive calls under constructors, taken out in 8dd0e0316881 mainly and in subsequent changes
blanchet
parents:
54954
diff
changeset
|
326 |
(case U of |
cf8d429dc24e
reintroduce recursive calls under constructors, taken out in 8dd0e0316881 mainly and in subsequent changes
blanchet
parents:
54954
diff
changeset
|
327 |
Type (s, Us) => |
cf8d429dc24e
reintroduce recursive calls under constructors, taken out in 8dd0e0316881 mainly and in subsequent changes
blanchet
parents:
54954
diff
changeset
|
328 |
(case try (dest_ctr ctxt s) t of |
cf8d429dc24e
reintroduce recursive calls under constructors, taken out in 8dd0e0316881 mainly and in subsequent changes
blanchet
parents:
54954
diff
changeset
|
329 |
SOME (f, args) => |
cf8d429dc24e
reintroduce recursive calls under constructors, taken out in 8dd0e0316881 mainly and in subsequent changes
blanchet
parents:
54954
diff
changeset
|
330 |
let |
cf8d429dc24e
reintroduce recursive calls under constructors, taken out in 8dd0e0316881 mainly and in subsequent changes
blanchet
parents:
54954
diff
changeset
|
331 |
val typof = curry fastype_of1 bound_Ts; |
cf8d429dc24e
reintroduce recursive calls under constructors, taken out in 8dd0e0316881 mainly and in subsequent changes
blanchet
parents:
54954
diff
changeset
|
332 |
val f' = mk_ctr Us f |
cf8d429dc24e
reintroduce recursive calls under constructors, taken out in 8dd0e0316881 mainly and in subsequent changes
blanchet
parents:
54954
diff
changeset
|
333 |
val f'_T = typof f'; |
cf8d429dc24e
reintroduce recursive calls under constructors, taken out in 8dd0e0316881 mainly and in subsequent changes
blanchet
parents:
54954
diff
changeset
|
334 |
val arg_Ts = map typof args; |
cf8d429dc24e
reintroduce recursive calls under constructors, taken out in 8dd0e0316881 mainly and in subsequent changes
blanchet
parents:
54954
diff
changeset
|
335 |
in |
58634
9f10d82e8188
added parameterized ML antiquotations @{map N}, @{fold N}, @{fold_map N}, @{split_list N};
wenzelm
parents:
58462
diff
changeset
|
336 |
Term.list_comb (f', @{map 3} (massage_call bound_Ts) (binder_types f'_T) arg_Ts args) |
54955
cf8d429dc24e
reintroduce recursive calls under constructors, taken out in 8dd0e0316881 mainly and in subsequent changes
blanchet
parents:
54954
diff
changeset
|
337 |
end |
cf8d429dc24e
reintroduce recursive calls under constructors, taken out in 8dd0e0316881 mainly and in subsequent changes
blanchet
parents:
54954
diff
changeset
|
338 |
| NONE => |
cf8d429dc24e
reintroduce recursive calls under constructors, taken out in 8dd0e0316881 mainly and in subsequent changes
blanchet
parents:
54954
diff
changeset
|
339 |
(case t of |
55414
eab03e9cee8a
renamed '{prod,sum,bool,unit}_case' to 'case_...'
blanchet
parents:
55400
diff
changeset
|
340 |
Const (@{const_name case_prod}, _) $ t' => |
54955
cf8d429dc24e
reintroduce recursive calls under constructors, taken out in 8dd0e0316881 mainly and in subsequent changes
blanchet
parents:
54954
diff
changeset
|
341 |
let |
cf8d429dc24e
reintroduce recursive calls under constructors, taken out in 8dd0e0316881 mainly and in subsequent changes
blanchet
parents:
54954
diff
changeset
|
342 |
val U' = curried_type U; |
cf8d429dc24e
reintroduce recursive calls under constructors, taken out in 8dd0e0316881 mainly and in subsequent changes
blanchet
parents:
54954
diff
changeset
|
343 |
val T' = curried_type T; |
cf8d429dc24e
reintroduce recursive calls under constructors, taken out in 8dd0e0316881 mainly and in subsequent changes
blanchet
parents:
54954
diff
changeset
|
344 |
in |
55414
eab03e9cee8a
renamed '{prod,sum,bool,unit}_case' to 'case_...'
blanchet
parents:
55400
diff
changeset
|
345 |
Const (@{const_name case_prod}, U' --> U) $ massage_call bound_Ts U' T' t' |
54955
cf8d429dc24e
reintroduce recursive calls under constructors, taken out in 8dd0e0316881 mainly and in subsequent changes
blanchet
parents:
54954
diff
changeset
|
346 |
end |
cf8d429dc24e
reintroduce recursive calls under constructors, taken out in 8dd0e0316881 mainly and in subsequent changes
blanchet
parents:
54954
diff
changeset
|
347 |
| t1 $ t2 => |
cf8d429dc24e
reintroduce recursive calls under constructors, taken out in 8dd0e0316881 mainly and in subsequent changes
blanchet
parents:
54954
diff
changeset
|
348 |
(if has_call t2 then |
cf8d429dc24e
reintroduce recursive calls under constructors, taken out in 8dd0e0316881 mainly and in subsequent changes
blanchet
parents:
54954
diff
changeset
|
349 |
massage_mutual_call bound_Ts U T t |
cf8d429dc24e
reintroduce recursive calls under constructors, taken out in 8dd0e0316881 mainly and in subsequent changes
blanchet
parents:
54954
diff
changeset
|
350 |
else |
cf8d429dc24e
reintroduce recursive calls under constructors, taken out in 8dd0e0316881 mainly and in subsequent changes
blanchet
parents:
54954
diff
changeset
|
351 |
massage_map bound_Ts U T t1 $ t2 |
58223
ba7a2d19880c
export useful functions for users of (co)recursors
blanchet
parents:
58211
diff
changeset
|
352 |
handle NO_MAP _ => massage_mutual_call bound_Ts U T t) |
54955
cf8d429dc24e
reintroduce recursive calls under constructors, taken out in 8dd0e0316881 mainly and in subsequent changes
blanchet
parents:
54954
diff
changeset
|
353 |
| Abs (s, T', t') => |
cf8d429dc24e
reintroduce recursive calls under constructors, taken out in 8dd0e0316881 mainly and in subsequent changes
blanchet
parents:
54954
diff
changeset
|
354 |
Abs (s, T', massage_call (T' :: bound_Ts) (range_type U) (range_type T) t') |
cf8d429dc24e
reintroduce recursive calls under constructors, taken out in 8dd0e0316881 mainly and in subsequent changes
blanchet
parents:
54954
diff
changeset
|
355 |
| _ => massage_mutual_call bound_Ts U T t)) |
cf8d429dc24e
reintroduce recursive calls under constructors, taken out in 8dd0e0316881 mainly and in subsequent changes
blanchet
parents:
54954
diff
changeset
|
356 |
| _ => ill_formed_corec_call ctxt t) |
54246
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
357 |
else |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
358 |
build_map_Inl (T, U) $ t) bound_Ts; |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
359 |
|
59596
c067eba942e7
no quick_and_dirty for goals that may fail + tuned messages
blanchet
parents:
59595
diff
changeset
|
360 |
val T = fastype_of1 (bound_Ts, t0); |
54246
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
361 |
in |
59596
c067eba942e7
no quick_and_dirty for goals that may fail + tuned messages
blanchet
parents:
59595
diff
changeset
|
362 |
if has_call t0 then massage_call bound_Ts U T t0 else build_map_Inl (T, U) $ t0 |
54246
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
363 |
end; |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
364 |
|
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
365 |
fun expand_to_ctr_term ctxt s Ts t = |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
366 |
(case ctr_sugar_of ctxt s of |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
367 |
SOME {ctrs, casex, ...} => |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
368 |
Term.list_comb (mk_case Ts (Type (s, Ts)) casex, map (mk_ctr Ts) ctrs) $ t |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
369 |
| NONE => raise Fail "expand_to_ctr_term"); |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
370 |
|
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
371 |
fun expand_corec_code_rhs ctxt has_call bound_Ts t = |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
372 |
(case fastype_of1 (bound_Ts, t) of |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
373 |
Type (s, Ts) => |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
374 |
massage_let_if_case ctxt has_call (fn _ => fn t => |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
375 |
if can (dest_ctr ctxt s) t then t else expand_to_ctr_term ctxt s Ts t) bound_Ts t |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
376 |
| _ => raise Fail "expand_corec_code_rhs"); |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
377 |
|
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
378 |
fun massage_corec_code_rhs ctxt massage_ctr = |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
379 |
massage_let_if_case ctxt (K false) |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
380 |
(fn bound_Ts => uncurry (massage_ctr bound_Ts) o Term.strip_comb); |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
381 |
|
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
382 |
fun fold_rev_corec_code_rhs ctxt f = |
55341
3d2c97392e25
adapted tactic to correctly handle 'if ... then ...' and 'case ...' under lambdas
blanchet
parents:
55339
diff
changeset
|
383 |
fold_rev_let_if_case ctxt (fn conds => uncurry (f conds) o Term.strip_comb); |
54246
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
384 |
|
55400 | 385 |
fun case_thms_of_term ctxt t = |
386 |
let val ctr_sugars = map_filter (Ctr_Sugar.ctr_sugar_of_case ctxt o fst) (Term.add_consts t []) in |
|
57983
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57895
diff
changeset
|
387 |
(maps #distincts ctr_sugars, maps #discIs ctr_sugars, maps #exhaust_discs ctr_sugars, |
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57895
diff
changeset
|
388 |
maps #split_sels ctr_sugars, maps #split_sel_asms ctr_sugars) |
54246
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
389 |
end; |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
390 |
|
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
391 |
fun basic_corec_specs_of ctxt res_T = |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
392 |
(case res_T of |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
393 |
Type (T_name, _) => |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
394 |
(case Ctr_Sugar.ctr_sugar_of ctxt T_name of |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
395 |
NONE => not_codatatype ctxt res_T |
58187
d2ddd401d74d
fixed infinite loops in 'register' functions + more uniform API
blanchet
parents:
58131
diff
changeset
|
396 |
| SOME {T = fpT, ctrs, discs, selss, ...} => |
54246
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
397 |
let |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
398 |
val thy = Proof_Context.theory_of ctxt; |
54272
9d623cada37f
avoid subtle failure in the presence of top sort
blanchet
parents:
54271
diff
changeset
|
399 |
|
58187
d2ddd401d74d
fixed infinite loops in 'register' functions + more uniform API
blanchet
parents:
58131
diff
changeset
|
400 |
val As_rho = tvar_subst thy [fpT] [res_T]; |
54246
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
401 |
val substA = Term.subst_TVars As_rho; |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
402 |
|
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
403 |
fun mk_spec ctr disc sels = {ctr = substA ctr, disc = substA disc, sels = map substA sels}; |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
404 |
in |
58634
9f10d82e8188
added parameterized ML antiquotations @{map N}, @{fold N}, @{fold_map N}, @{split_list N};
wenzelm
parents:
58462
diff
changeset
|
405 |
@{map 3} mk_spec ctrs discs selss |
54911 | 406 |
handle ListPair.UnequalLengths => not_codatatype ctxt res_T |
54246
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
407 |
end) |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
408 |
| _ => not_codatatype ctxt res_T); |
53303
ae49b835ca01
moved files related to "primrec_new", "primcorec", and "datatype_compat" from bitbucket co-rec repository
blanchet
parents:
diff
changeset
|
409 |
|
54955
cf8d429dc24e
reintroduce recursive calls under constructors, taken out in 8dd0e0316881 mainly and in subsequent changes
blanchet
parents:
54954
diff
changeset
|
410 |
fun map_thms_of_typ ctxt (Type (s, _)) = |
58462 | 411 |
(case fp_sugar_of ctxt s of SOME {fp_bnf_sugar = {map_thms, ...}, ...} => map_thms | NONE => []) |
54955
cf8d429dc24e
reintroduce recursive calls under constructors, taken out in 8dd0e0316881 mainly and in subsequent changes
blanchet
parents:
54954
diff
changeset
|
412 |
| map_thms_of_typ _ _ = []; |
cf8d429dc24e
reintroduce recursive calls under constructors, taken out in 8dd0e0316881 mainly and in subsequent changes
blanchet
parents:
54954
diff
changeset
|
413 |
|
59281 | 414 |
structure GFP_Rec_Sugar_Plugin = Plugin(type T = fp_rec_sugar); |
59275
77cd4992edcd
Add plugin to generate transfer theorem for primrec and primcorec
desharna
parents:
59058
diff
changeset
|
415 |
|
59281 | 416 |
fun gfp_rec_sugar_interpretation name f = |
417 |
GFP_Rec_Sugar_Plugin.interpretation name (fn fp_rec_sugar => fn lthy => |
|
418 |
f (transfer_fp_rec_sugar (Proof_Context.theory_of lthy) fp_rec_sugar) lthy); |
|
59275
77cd4992edcd
Add plugin to generate transfer theorem for primrec and primcorec
desharna
parents:
59058
diff
changeset
|
419 |
|
59281 | 420 |
val interpret_gfp_rec_sugar = GFP_Rec_Sugar_Plugin.data; |
59275
77cd4992edcd
Add plugin to generate transfer theorem for primrec and primcorec
desharna
parents:
59058
diff
changeset
|
421 |
|
55772
367ec44763fd
correct most general type for mutual recursion when several identical types are involved
blanchet
parents:
55571
diff
changeset
|
422 |
fun corec_specs_of bs arg_Ts res_Ts callers callssss0 lthy0 = |
54246
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
423 |
let |
55005 | 424 |
val thy = Proof_Context.theory_of lthy0; |
54246
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
425 |
|
57397 | 426 |
val ((missing_res_Ts, perm0_kks, fp_sugars as {fp_nesting_bnfs, |
58461 | 427 |
fp_co_induct_sugar = {common_co_inducts = common_coinduct_thms, ...}, ...} :: _, |
428 |
(_, gfp_sugar_thms)), lthy) = |
|
58335
a5a3b576fcfb
generate 'code' attribute only if 'code' plugin is enabled
blanchet
parents:
58286
diff
changeset
|
429 |
nested_to_mutual_fps (K true) Greatest_FP bs res_Ts callers callssss0 lthy0; |
54246
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
430 |
|
58286 | 431 |
val coinduct_attrs_pair = |
432 |
(case gfp_sugar_thms of SOME ((_, attrs_pair), _, _, _, _) => attrs_pair | NONE => ([], [])); |
|
58283
71d74e641538
preserve case names in '(co)induct' theorems generated by prim(co)rec'
blanchet
parents:
58223
diff
changeset
|
433 |
|
59058
a78612c67ec0
renamed "pairself" to "apply2", in accordance to @{apply 2};
wenzelm
parents:
59044
diff
changeset
|
434 |
val perm_fp_sugars = sort (int_ord o apply2 #fp_res_index) fp_sugars; |
54246
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
435 |
|
55539
0819931d652d
simplified data structure by reducing the incidence of clumsy indices
blanchet
parents:
55538
diff
changeset
|
436 |
val indices = map #fp_res_index fp_sugars; |
0819931d652d
simplified data structure by reducing the incidence of clumsy indices
blanchet
parents:
55538
diff
changeset
|
437 |
val perm_indices = map #fp_res_index perm_fp_sugars; |
54246
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
438 |
|
58187
d2ddd401d74d
fixed infinite loops in 'register' functions + more uniform API
blanchet
parents:
58131
diff
changeset
|
439 |
val perm_fpTs = map #T perm_fp_sugars; |
58460 | 440 |
val perm_ctrXs_Tsss' = |
441 |
map (repair_nullary_single_ctr o #ctrXs_Tss o #fp_ctr_sugar) perm_fp_sugars; |
|
54246
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
442 |
|
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
443 |
val nn0 = length res_Ts; |
58187
d2ddd401d74d
fixed infinite loops in 'register' functions + more uniform API
blanchet
parents:
58131
diff
changeset
|
444 |
val nn = length perm_fpTs; |
54246
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
445 |
val kks = 0 upto nn - 1; |
55772
367ec44763fd
correct most general type for mutual recursion when several identical types are involved
blanchet
parents:
55571
diff
changeset
|
446 |
val perm_ns' = map length perm_ctrXs_Tsss'; |
367ec44763fd
correct most general type for mutual recursion when several identical types are involved
blanchet
parents:
55571
diff
changeset
|
447 |
|
367ec44763fd
correct most general type for mutual recursion when several identical types are involved
blanchet
parents:
55571
diff
changeset
|
448 |
val perm_Ts = map #T perm_fp_sugars; |
367ec44763fd
correct most general type for mutual recursion when several identical types are involved
blanchet
parents:
55571
diff
changeset
|
449 |
val perm_Xs = map #X perm_fp_sugars; |
58461 | 450 |
val perm_Cs = |
451 |
map (domain_type o body_fun_type o fastype_of o #co_rec o #fp_co_induct_sugar) perm_fp_sugars; |
|
55772
367ec44763fd
correct most general type for mutual recursion when several identical types are involved
blanchet
parents:
55571
diff
changeset
|
452 |
val Xs_TCs = perm_Xs ~~ (perm_Ts ~~ perm_Cs); |
54246
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
453 |
|
55772
367ec44763fd
correct most general type for mutual recursion when several identical types are involved
blanchet
parents:
55571
diff
changeset
|
454 |
fun zip_corecT (Type (s, Us)) = [Type (s, map (mk_sumTN o zip_corecT) Us)] |
367ec44763fd
correct most general type for mutual recursion when several identical types are involved
blanchet
parents:
55571
diff
changeset
|
455 |
| zip_corecT U = |
367ec44763fd
correct most general type for mutual recursion when several identical types are involved
blanchet
parents:
55571
diff
changeset
|
456 |
(case AList.lookup (op =) Xs_TCs U of |
367ec44763fd
correct most general type for mutual recursion when several identical types are involved
blanchet
parents:
55571
diff
changeset
|
457 |
SOME (T, C) => [T, C] |
367ec44763fd
correct most general type for mutual recursion when several identical types are involved
blanchet
parents:
55571
diff
changeset
|
458 |
| NONE => [U]); |
367ec44763fd
correct most general type for mutual recursion when several identical types are involved
blanchet
parents:
55571
diff
changeset
|
459 |
|
55869 | 460 |
val perm_p_Tss = mk_corec_p_pred_types perm_Cs perm_ns'; |
55772
367ec44763fd
correct most general type for mutual recursion when several identical types are involved
blanchet
parents:
55571
diff
changeset
|
461 |
val perm_f_Tssss = |
367ec44763fd
correct most general type for mutual recursion when several identical types are involved
blanchet
parents:
55571
diff
changeset
|
462 |
map2 (fn C => map (map (map (curry (op -->) C) o zip_corecT))) perm_Cs perm_ctrXs_Tsss'; |
367ec44763fd
correct most general type for mutual recursion when several identical types are involved
blanchet
parents:
55571
diff
changeset
|
463 |
val perm_q_Tssss = |
367ec44763fd
correct most general type for mutual recursion when several identical types are involved
blanchet
parents:
55571
diff
changeset
|
464 |
map (map (map (fn [_] => [] | [_, T] => [mk_pred1T (domain_type T)]))) perm_f_Tssss; |
54246
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
465 |
|
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
466 |
val (perm_p_hss, h) = indexedd perm_p_Tss 0; |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
467 |
val (perm_q_hssss, h') = indexedddd perm_q_Tssss h; |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
468 |
val (perm_f_hssss, _) = indexedddd perm_f_Tssss h'; |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
469 |
|
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
470 |
val fun_arg_hs = |
58634
9f10d82e8188
added parameterized ML antiquotations @{map N}, @{fold N}, @{fold_map N}, @{split_list N};
wenzelm
parents:
58462
diff
changeset
|
471 |
flat (@{map 3} flat_corec_preds_predsss_gettersss perm_p_hss perm_q_hssss perm_f_hssss); |
54246
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
472 |
|
55480
59cc4a8bc28a
allow different functions to recurse on the same type, like in the old package
blanchet
parents:
55462
diff
changeset
|
473 |
fun unpermute0 perm0_xs = permute_like_unique (op =) perm0_kks kks perm0_xs; |
59cc4a8bc28a
allow different functions to recurse on the same type, like in the old package
blanchet
parents:
55462
diff
changeset
|
474 |
fun unpermute perm_xs = permute_like_unique (op =) perm_indices indices perm_xs; |
54246
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
475 |
|
55539
0819931d652d
simplified data structure by reducing the incidence of clumsy indices
blanchet
parents:
55538
diff
changeset
|
476 |
val coinduct_thmss = map (unpermute0 o conj_dests nn) common_coinduct_thms; |
54246
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
477 |
|
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
478 |
val p_iss = map (map (find_index_eq fun_arg_hs)) (unpermute perm_p_hss); |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
479 |
val q_issss = map (map (map (map (find_index_eq fun_arg_hs)))) (unpermute perm_q_hssss); |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
480 |
val f_issss = map (map (map (map (find_index_eq fun_arg_hs)))) (unpermute perm_f_hssss); |
53358 | 481 |
|
54246
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
482 |
val f_Tssss = unpermute perm_f_Tssss; |
58187
d2ddd401d74d
fixed infinite loops in 'register' functions + more uniform API
blanchet
parents:
58131
diff
changeset
|
483 |
val fpTs = unpermute perm_fpTs; |
54246
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
484 |
val Cs = unpermute perm_Cs; |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
485 |
|
58187
d2ddd401d74d
fixed infinite loops in 'register' functions + more uniform API
blanchet
parents:
58131
diff
changeset
|
486 |
val As_rho = tvar_subst thy (take nn0 fpTs) res_Ts; |
54246
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
487 |
val Cs_rho = map (fst o dest_TVar) Cs ~~ pad_list HOLogic.unitT nn arg_Ts; |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
488 |
|
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
489 |
val substA = Term.subst_TVars As_rho; |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
490 |
val substAT = Term.typ_subst_TVars As_rho; |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
491 |
val substCT = Term.typ_subst_TVars Cs_rho; |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
492 |
|
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
493 |
val perm_Cs' = map substCT perm_Cs; |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
494 |
|
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
495 |
fun call_of nullary [] [g_i] [Type (@{type_name fun}, [_, T])] = |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
496 |
(if exists_subtype_in Cs T then Nested_Corec |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
497 |
else if nullary then Dummy_No_Corec |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
498 |
else No_Corec) g_i |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
499 |
| call_of _ [q_i] [g_i, g_i'] _ = Mutual_Corec (q_i, g_i, g_i'); |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
500 |
|
57983
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57895
diff
changeset
|
501 |
fun mk_ctr_spec ctr disc sels p_io q_iss f_iss f_Tss discI sel_thms distinct_discss collapse |
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57895
diff
changeset
|
502 |
corec_thm corec_disc corec_sels = |
54246
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
503 |
let val nullary = not (can dest_funT (fastype_of ctr)) in |
54900 | 504 |
{ctr = substA ctr, disc = substA disc, sels = map substA sels, pred = p_io, |
58634
9f10d82e8188
added parameterized ML antiquotations @{map N}, @{fold N}, @{fold_map N}, @{split_list N};
wenzelm
parents:
58462
diff
changeset
|
505 |
calls = @{map 3} (call_of nullary) q_iss f_iss f_Tss, discI = discI, sel_thms = sel_thms, |
57983
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57895
diff
changeset
|
506 |
distinct_discss = distinct_discss, collapse = collapse, corec_thm = corec_thm, |
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57895
diff
changeset
|
507 |
corec_disc = corec_disc, corec_sels = corec_sels} |
54246
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
508 |
end; |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
509 |
|
57983
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57895
diff
changeset
|
510 |
fun mk_ctr_specs ({ctrs, discs, selss, discIs, sel_thmss, distinct_discsss, collapses, ...} |
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57895
diff
changeset
|
511 |
: ctr_sugar) p_is q_isss f_isss f_Tsss corec_thms corec_discs corec_selss = |
55863 | 512 |
let val p_ios = map SOME p_is @ [NONE] in |
58634
9f10d82e8188
added parameterized ML antiquotations @{map N}, @{fold N}, @{fold_map N}, @{split_list N};
wenzelm
parents:
58462
diff
changeset
|
513 |
@{map 14} mk_ctr_spec ctrs discs selss p_ios q_isss f_isss f_Tsss discIs sel_thmss |
57983
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57895
diff
changeset
|
514 |
distinct_discsss collapses corec_thms corec_discs corec_selss |
54246
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
515 |
end; |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
516 |
|
58461 | 517 |
fun mk_spec ({T, fp_ctr_sugar = {ctr_sugar as {exhaust_discs, sel_defs, ...}, ...}, |
518 |
fp_co_induct_sugar = {co_rec = corec, co_rec_thms = corec_thms, co_rec_discs = corec_discs, |
|
58459 | 519 |
co_rec_selss = corec_selss, ...}, ...} : fp_sugar) p_is q_isss f_isss f_Tsss = |
59275
77cd4992edcd
Add plugin to generate transfer theorem for primrec and primcorec
desharna
parents:
59058
diff
changeset
|
520 |
{T = T, corec = mk_co_rec thy Greatest_FP perm_Cs' (substAT T) corec, exhaust_discs = exhaust_discs, |
57397 | 521 |
sel_defs = sel_defs, |
522 |
fp_nesting_maps = maps (map_thms_of_typ lthy o T_of_bnf) fp_nesting_bnfs, |
|
57399 | 523 |
fp_nesting_map_ident0s = map map_ident0_of_bnf fp_nesting_bnfs, |
57397 | 524 |
fp_nesting_map_comps = map map_comp_of_bnf fp_nesting_bnfs, |
57983
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57895
diff
changeset
|
525 |
ctr_specs = mk_ctr_specs ctr_sugar p_is q_isss f_isss f_Tsss corec_thms corec_discs |
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57895
diff
changeset
|
526 |
corec_selss}; |
54246
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
527 |
in |
58634
9f10d82e8188
added parameterized ML antiquotations @{map N}, @{fold N}, @{fold_map N}, @{split_list N};
wenzelm
parents:
58462
diff
changeset
|
528 |
(@{map 5} mk_spec fp_sugars p_iss q_issss f_issss f_Tssss, missing_res_Ts, |
58283
71d74e641538
preserve case names in '(co)induct' theorems generated by prim(co)rec'
blanchet
parents:
58223
diff
changeset
|
529 |
co_induct_of common_coinduct_thms, strong_co_induct_of common_coinduct_thms, |
71d74e641538
preserve case names in '(co)induct' theorems generated by prim(co)rec'
blanchet
parents:
58223
diff
changeset
|
530 |
co_induct_of coinduct_thmss, strong_co_induct_of coinduct_thmss, coinduct_attrs_pair, |
71d74e641538
preserve case names in '(co)induct' theorems generated by prim(co)rec'
blanchet
parents:
58223
diff
changeset
|
531 |
is_some gfp_sugar_thms, lthy) |
54246
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
532 |
end; |
8fdb4dc08ed1
split 'primrec_new' and 'primcorec' code (to ease bootstrapping, e.g. dependency on datatype 'String' in 'primcorec')
blanchet
parents:
54243
diff
changeset
|
533 |
|
53358 | 534 |
val undef_const = Const (@{const_name undefined}, dummyT); |
53357 | 535 |
|
55969 | 536 |
val abs_tuple_balanced = HOLogic.tupled_lambda o mk_tuple_balanced; |
55005 | 537 |
|
53720 | 538 |
fun abstract vs = |
55342 | 539 |
let |
540 |
fun abs n (t $ u) = abs n t $ abs n u |
|
541 |
| abs n (Abs (v, T, b)) = Abs (v, T, abs (n + 1) b) |
|
542 |
| abs n t = |
|
543 |
let val j = find_index (curry (op =) t) vs in |
|
544 |
if j < 0 then t else Bound (n + j) |
|
545 |
end; |
|
546 |
in abs 0 end; |
|
54271 | 547 |
|
58393 | 548 |
type coeqn_data_disc = |
549 |
{fun_name: string, |
|
550 |
fun_T: typ, |
|
551 |
fun_args: term list, |
|
552 |
ctr: term, |
|
553 |
ctr_no: int, |
|
554 |
disc: term, |
|
555 |
prems: term list, |
|
556 |
auto_gen: bool, |
|
557 |
ctr_rhs_opt: term option, |
|
558 |
code_rhs_opt: term option, |
|
559 |
eqn_pos: int, |
|
560 |
user_eqn: term}; |
|
54001 | 561 |
|
58393 | 562 |
type coeqn_data_sel = |
563 |
{fun_name: string, |
|
564 |
fun_T: typ, |
|
565 |
fun_args: term list, |
|
566 |
ctr: term, |
|
567 |
sel: term, |
|
568 |
rhs_term: term, |
|
569 |
ctr_rhs_opt: term option, |
|
570 |
code_rhs_opt: term option, |
|
571 |
eqn_pos: int, |
|
572 |
user_eqn: term}; |
|
54001 | 573 |
|
54153
67487a607ce2
avoid 'co_' prefix with underscore meaning 'co', since it is our only possible identifier representation of '(co)'
blanchet
parents:
54145
diff
changeset
|
574 |
datatype coeqn_data = |
67487a607ce2
avoid 'co_' prefix with underscore meaning 'co', since it is our only possible identifier representation of '(co)'
blanchet
parents:
54145
diff
changeset
|
575 |
Disc of coeqn_data_disc | |
67487a607ce2
avoid 'co_' prefix with underscore meaning 'co', since it is our only possible identifier representation of '(co)'
blanchet
parents:
54145
diff
changeset
|
576 |
Sel of coeqn_data_sel; |
53303
ae49b835ca01
moved files related to "primrec_new", "primcorec", and "datatype_compat" from bitbucket co-rec repository
blanchet
parents:
diff
changeset
|
577 |
|
59594 | 578 |
fun is_free_in frees (Free (v, _)) = member (op =) frees v |
579 |
| is_free_in _ _ = false; |
|
580 |
||
581 |
fun check_extra_variables ctxt vars names eqn = |
|
56152 | 582 |
let val b = fold_aterms (fn x as Free (v, _) => |
583 |
if (not (member (op =) vars x) andalso |
|
584 |
not (member (op =) names v) andalso |
|
585 |
v <> Name.uu_ andalso |
|
59594 | 586 |
not (Variable.is_fixed ctxt v)) then cons x else I | _ => I) eqn [] |
56152 | 587 |
in |
59594 | 588 |
null b orelse error_at ctxt [eqn] |
589 |
("Extra variable " ^ quote (Syntax.string_of_term ctxt (hd b))) |
|
56152 | 590 |
end; |
591 |
||
59594 | 592 |
fun dissect_coeqn_disc ctxt fun_names sequentials |
593 |
(basic_ctr_specss : basic_corec_ctr_spec list list) eqn_pos ctr_rhs_opt code_rhs_opt prems0 |
|
594 |
concl matchedsss = |
|
53303
ae49b835ca01
moved files related to "primrec_new", "primcorec", and "datatype_compat" from bitbucket co-rec repository
blanchet
parents:
diff
changeset
|
595 |
let |
54272
9d623cada37f
avoid subtle failure in the presence of top sort
blanchet
parents:
54271
diff
changeset
|
596 |
fun find_subterm p = |
9d623cada37f
avoid subtle failure in the presence of top sort
blanchet
parents:
54271
diff
changeset
|
597 |
let (* FIXME \<exists>? *) |
9d623cada37f
avoid subtle failure in the presence of top sort
blanchet
parents:
54271
diff
changeset
|
598 |
fun find (t as u $ v) = if p t then SOME t else merge_options (find u, find v) |
9d623cada37f
avoid subtle failure in the presence of top sort
blanchet
parents:
54271
diff
changeset
|
599 |
| find t = if p t then SOME t else NONE; |
9d623cada37f
avoid subtle failure in the presence of top sort
blanchet
parents:
54271
diff
changeset
|
600 |
in find end; |
53303
ae49b835ca01
moved files related to "primrec_new", "primcorec", and "datatype_compat" from bitbucket co-rec repository
blanchet
parents:
diff
changeset
|
601 |
|
53654
8b9ea4420f81
prove simp theorems for newly generated definitions
panny
parents:
53411
diff
changeset
|
602 |
val applied_fun = concl |
55008
b5b2e193ca33
use 'disc_exhausts' property both from types on which 'case's take place and on return type
blanchet
parents:
55005
diff
changeset
|
603 |
|> find_subterm (member (op = o apsnd SOME) fun_names o try (fst o dest_Free o head_of)) |
53654
8b9ea4420f81
prove simp theorems for newly generated definitions
panny
parents:
53411
diff
changeset
|
604 |
|> the |
59594 | 605 |
handle Option.Option => error_at ctxt [concl] "Ill-formed discriminator formula"; |
53720 | 606 |
val ((fun_name, fun_T), fun_args) = strip_comb applied_fun |>> dest_Free; |
56152 | 607 |
|
59594 | 608 |
val fixeds = filter (Variable.is_fixed ctxt o fst o dest_Free) fun_args; |
609 |
val _ = null fixeds orelse error_at ctxt fixeds "Function argument(s) are fixed in context"; |
|
56152 | 610 |
|
59594 | 611 |
val bads = filter (Term.exists_subterm (is_free_in fun_names)) prems0; |
612 |
val _ = null bads orelse error_at ctxt bads "Corecursive call(s) in condition(s)"; |
|
56152 | 613 |
|
614 |
val _ = forall is_Free fun_args orelse |
|
59594 | 615 |
error_at ctxt [applied_fun] ("Non-variable function argument \"" ^ |
616 |
Syntax.string_of_term ctxt (find_first (not o is_Free) fun_args |> the) ^ |
|
617 |
"\" (pattern matching is not supported by primcorec(ursive))") |
|
56152 | 618 |
|
59594 | 619 |
val dups = duplicates (op =) fun_args; |
620 |
val _ = |
|
621 |
null dups orelse |
|
622 |
error_at ctxt [applied_fun] |
|
623 |
("Duplicate variable " ^ quote (Syntax.string_of_term ctxt (hd dups))); |
|
56152 | 624 |
|
58393 | 625 |
val (sequential, basic_ctr_specs) = |
626 |
the (AList.lookup (op =) (fun_names ~~ (sequentials ~~ basic_ctr_specss)) fun_name); |
|
53303
ae49b835ca01
moved files related to "primrec_new", "primcorec", and "datatype_compat" from bitbucket co-rec repository
blanchet
parents:
diff
changeset
|
627 |
|
54160 | 628 |
val discs = map #disc basic_ctr_specs; |
629 |
val ctrs = map #ctr basic_ctr_specs; |
|
53654
8b9ea4420f81
prove simp theorems for newly generated definitions
panny
parents:
53411
diff
changeset
|
630 |
val not_disc = head_of concl = @{term Not}; |
53401 | 631 |
val _ = not_disc andalso length ctrs <> 2 andalso |
59594 | 632 |
error_at ctxt [concl] "Negated discriminator for a type with \<noteq> 2 constructors"; |
54160 | 633 |
val disc' = find_subterm (member (op =) discs o head_of) concl; |
54209 | 634 |
val eq_ctr0 = concl |> perhaps (try HOLogic.dest_not) |> try (HOLogic.dest_eq #> snd) |
54923
ffed2452f5f6
instantiate schematics as projections to avoid HOU trouble
blanchet
parents:
54921
diff
changeset
|
635 |
|> (fn SOME t => let val n = find_index (curry (op =) t) ctrs in |
53303
ae49b835ca01
moved files related to "primrec_new", "primcorec", and "datatype_compat" from bitbucket co-rec repository
blanchet
parents:
diff
changeset
|
636 |
if n >= 0 then SOME n else NONE end | _ => NONE); |
56152 | 637 |
|
59594 | 638 |
val _ = is_none disc' orelse perhaps (try HOLogic.dest_not) concl = the disc' orelse |
639 |
error_at ctxt [concl] "Ill-formed discriminator formula"; |
|
640 |
val _ = is_some disc' orelse is_some eq_ctr0 orelse |
|
641 |
error_at ctxt [concl] "No discriminator in equation"; |
|
56152 | 642 |
|
53303
ae49b835ca01
moved files related to "primrec_new", "primcorec", and "datatype_compat" from bitbucket co-rec repository
blanchet
parents:
diff
changeset
|
643 |
val ctr_no' = |
54923
ffed2452f5f6
instantiate schematics as projections to avoid HOU trouble
blanchet
parents:
54921
diff
changeset
|
644 |
if is_none disc' then the eq_ctr0 else find_index (curry (op =) (head_of (the disc'))) discs; |
53303
ae49b835ca01
moved files related to "primrec_new", "primcorec", and "datatype_compat" from bitbucket co-rec repository
blanchet
parents:
diff
changeset
|
645 |
val ctr_no = if not_disc then 1 - ctr_no' else ctr_no'; |
54160 | 646 |
val {ctr, disc, ...} = nth basic_ctr_specs ctr_no; |
53654
8b9ea4420f81
prove simp theorems for newly generated definitions
panny
parents:
53411
diff
changeset
|
647 |
|
59594 | 648 |
val catch_all = (try (fst o dest_Free o the_single) prems0 = SOME Name.uu_); |
53720 | 649 |
val matchedss = AList.lookup (op =) matchedsss fun_name |> the_default []; |
59594 | 650 |
val prems = map (abstract (List.rev fun_args)) prems0; |
54905
2fdec6c29eb7
don't generate any proof obligation for implicit (de facto) exclusiveness
blanchet
parents:
54904
diff
changeset
|
651 |
val actual_prems = |
54901
0b8871677e0b
use same name for feature internally as in user interface, to facilitate grepping
blanchet
parents:
54900
diff
changeset
|
652 |
(if catch_all orelse sequential then maps s_not_conj matchedss else []) @ |
53654
8b9ea4420f81
prove simp theorems for newly generated definitions
panny
parents:
53411
diff
changeset
|
653 |
(if catch_all then [] else prems); |
53303
ae49b835ca01
moved files related to "primrec_new", "primcorec", and "datatype_compat" from bitbucket co-rec repository
blanchet
parents:
diff
changeset
|
654 |
|
53720 | 655 |
val matchedsss' = AList.delete (op =) fun_name matchedsss |
54905
2fdec6c29eb7
don't generate any proof obligation for implicit (de facto) exclusiveness
blanchet
parents:
54904
diff
changeset
|
656 |
|> cons (fun_name, if sequential then matchedss @ [prems] else matchedss @ [actual_prems]); |
53303
ae49b835ca01
moved files related to "primrec_new", "primcorec", and "datatype_compat" from bitbucket co-rec repository
blanchet
parents:
diff
changeset
|
657 |
|
53654
8b9ea4420f81
prove simp theorems for newly generated definitions
panny
parents:
53411
diff
changeset
|
658 |
val user_eqn = |
54905
2fdec6c29eb7
don't generate any proof obligation for implicit (de facto) exclusiveness
blanchet
parents:
54904
diff
changeset
|
659 |
(actual_prems, concl) |
54097
92c5bd3b342d
prove user-supplied equations for ctr and code reductions, preserving "let"s, "case"s etc.;
panny
parents:
54074
diff
changeset
|
660 |
|>> map HOLogic.mk_Trueprop ||> HOLogic.mk_Trueprop o abstract (List.rev fun_args) |
92c5bd3b342d
prove user-supplied equations for ctr and code reductions, preserving "let"s, "case"s etc.;
panny
parents:
54074
diff
changeset
|
661 |
|> curry Logic.list_all (map dest_Free fun_args) o Logic.list_implies; |
56152 | 662 |
|
59594 | 663 |
val _ = check_extra_variables ctxt fun_args fun_names user_eqn; |
53303
ae49b835ca01
moved files related to "primrec_new", "primcorec", and "datatype_compat" from bitbucket co-rec repository
blanchet
parents:
diff
changeset
|
664 |
in |
58393 | 665 |
(Disc {fun_name = fun_name, fun_T = fun_T, fun_args = fun_args, ctr = ctr, ctr_no = ctr_no, |
666 |
disc = disc, prems = actual_prems, auto_gen = catch_all, ctr_rhs_opt = ctr_rhs_opt, |
|
667 |
code_rhs_opt = code_rhs_opt, eqn_pos = eqn_pos, user_eqn = user_eqn}, |
|
668 |
matchedsss') |
|
53303
ae49b835ca01
moved files related to "primrec_new", "primcorec", and "datatype_compat" from bitbucket co-rec repository
blanchet
parents:
diff
changeset
|
669 |
end; |
ae49b835ca01
moved files related to "primrec_new", "primcorec", and "datatype_compat" from bitbucket co-rec repository
blanchet
parents:
diff
changeset
|
670 |
|
59594 | 671 |
fun dissect_coeqn_sel ctxt fun_names (basic_ctr_specss : basic_corec_ctr_spec list list) eqn_pos |
54951
e25b4d22082b
for code equations that coincide with ctr equations, make sure the usr's input is preserved for both
blanchet
parents:
54948
diff
changeset
|
672 |
ctr_rhs_opt code_rhs_opt eqn0 of_spec_opt eqn = |
53303
ae49b835ca01
moved files related to "primrec_new", "primcorec", and "datatype_compat" from bitbucket co-rec repository
blanchet
parents:
diff
changeset
|
673 |
let |
ae49b835ca01
moved files related to "primrec_new", "primcorec", and "datatype_compat" from bitbucket co-rec repository
blanchet
parents:
diff
changeset
|
674 |
val (lhs, rhs) = HOLogic.dest_eq eqn |
59594 | 675 |
handle TERM _ => error_at ctxt [eqn] "Ill-formed equation (expected \"lhs = rhs\")"; |
53303
ae49b835ca01
moved files related to "primrec_new", "primcorec", and "datatype_compat" from bitbucket co-rec repository
blanchet
parents:
diff
changeset
|
676 |
val sel = head_of lhs; |
53720 | 677 |
val ((fun_name, fun_T), fun_args) = dest_comb lhs |> snd |> strip_comb |> apfst dest_Free |
59594 | 678 |
handle TERM _ => error_at ctxt [eqn] "Ill-formed selector argument in left-hand side"; |
56152 | 679 |
|
59594 | 680 |
val fixeds = filter (Variable.is_fixed ctxt o fst o dest_Free) fun_args; |
681 |
val _ = |
|
682 |
null fixeds orelse error ("Function argument " ^ |
|
683 |
quote (Syntax.string_of_term ctxt (hd fixeds)) ^ " is fixed in context"); |
|
56152 | 684 |
|
54160 | 685 |
val basic_ctr_specs = the (AList.lookup (op =) (fun_names ~~ basic_ctr_specss) fun_name) |
59594 | 686 |
handle Option.Option => error_at ctxt [eqn] "Ill-formed selector argument in left-hand side"; |
54160 | 687 |
val {ctr, ...} = |
54926
28b621fce2f9
more SML-ish (less Haskell-ish) naming convention
blanchet
parents:
54925
diff
changeset
|
688 |
(case of_spec_opt of |
54923
ffed2452f5f6
instantiate schematics as projections to avoid HOU trouble
blanchet
parents:
54921
diff
changeset
|
689 |
SOME of_spec => the (find_first (curry (op =) of_spec o #ctr) basic_ctr_specs) |
ffed2452f5f6
instantiate schematics as projections to avoid HOU trouble
blanchet
parents:
54921
diff
changeset
|
690 |
| NONE => filter (exists (curry (op =) sel) o #sels) basic_ctr_specs |> the_single |
59594 | 691 |
handle List.Empty => error_at ctxt [eqn] "Ambiguous selector (without \"of\")"); |
54979
d7593bfccf25
correctly extract code RHS, with loose bound variables
blanchet
parents:
54978
diff
changeset
|
692 |
val user_eqn = drop_all eqn0; |
56152 | 693 |
|
59594 | 694 |
val _ = check_extra_variables ctxt fun_args fun_names user_eqn; |
53303
ae49b835ca01
moved files related to "primrec_new", "primcorec", and "datatype_compat" from bitbucket co-rec repository
blanchet
parents:
diff
changeset
|
695 |
in |
58393 | 696 |
Sel {fun_name = fun_name, fun_T = fun_T, fun_args = fun_args, ctr = ctr, sel = sel, |
697 |
rhs_term = rhs, ctr_rhs_opt = ctr_rhs_opt, code_rhs_opt = code_rhs_opt, eqn_pos = eqn_pos, |
|
698 |
user_eqn = user_eqn} |
|
53303
ae49b835ca01
moved files related to "primrec_new", "primcorec", and "datatype_compat" from bitbucket co-rec repository
blanchet
parents:
diff
changeset
|
699 |
end; |
ae49b835ca01
moved files related to "primrec_new", "primcorec", and "datatype_compat" from bitbucket co-rec repository
blanchet
parents:
diff
changeset
|
700 |
|
59594 | 701 |
fun dissect_coeqn_ctr ctxt fun_names sequentials (basic_ctr_specss : basic_corec_ctr_spec list list) |
54951
e25b4d22082b
for code equations that coincide with ctr equations, make sure the usr's input is preserved for both
blanchet
parents:
54948
diff
changeset
|
702 |
eqn_pos eqn0 code_rhs_opt prems concl matchedsss = |
53910 | 703 |
let |
54065 | 704 |
val (lhs, rhs) = HOLogic.dest_eq concl; |
54097
92c5bd3b342d
prove user-supplied equations for ctr and code reductions, preserving "let"s, "case"s etc.;
panny
parents:
54074
diff
changeset
|
705 |
val (fun_name, fun_args) = strip_comb lhs |>> fst o dest_Free; |
56152 | 706 |
|
59594 | 707 |
val _ = check_extra_variables ctxt fun_args fun_names (drop_all eqn0); |
56152 | 708 |
|
58393 | 709 |
val basic_ctr_specs = the (AList.lookup (op =) (fun_names ~~ basic_ctr_specss) fun_name); |
55343 | 710 |
val (ctr, ctr_args) = strip_comb (unfold_lets_splits rhs); |
54923
ffed2452f5f6
instantiate schematics as projections to avoid HOU trouble
blanchet
parents:
54921
diff
changeset
|
711 |
val {disc, sels, ...} = the (find_first (curry (op =) ctr o #ctr) basic_ctr_specs) |
59594 | 712 |
handle Option.Option => error_at ctxt [ctr] "Not a constructor"; |
53341 | 713 |
|
54065 | 714 |
val disc_concl = betapply (disc, lhs); |
54976
b502f04c0442
repair 'exhaustive' feature for one-constructor types
blanchet
parents:
54975
diff
changeset
|
715 |
val (eqn_data_disc_opt, matchedsss') = |
59042 | 716 |
if null (tl basic_ctr_specs) andalso not (null sels) then |
54976
b502f04c0442
repair 'exhaustive' feature for one-constructor types
blanchet
parents:
54975
diff
changeset
|
717 |
(NONE, matchedsss) |
b502f04c0442
repair 'exhaustive' feature for one-constructor types
blanchet
parents:
54975
diff
changeset
|
718 |
else |
59594 | 719 |
apfst SOME (dissect_coeqn_disc ctxt fun_names sequentials basic_ctr_specss eqn_pos |
54926
28b621fce2f9
more SML-ish (less Haskell-ish) naming convention
blanchet
parents:
54925
diff
changeset
|
720 |
(SOME (abstract (List.rev fun_args) rhs)) code_rhs_opt prems disc_concl matchedsss); |
53303
ae49b835ca01
moved files related to "primrec_new", "primcorec", and "datatype_compat" from bitbucket co-rec repository
blanchet
parents:
diff
changeset
|
721 |
|
54159
eb5d58c99049
set stage for more flexible 'primrec' syntax for recursion through functions
blanchet
parents:
54157
diff
changeset
|
722 |
val sel_concls = sels ~~ ctr_args |
56152 | 723 |
|> map (fn (sel, ctr_arg) => HOLogic.mk_eq (betapply (sel, lhs), ctr_arg)) |
59595 | 724 |
handle ListPair.UnequalLengths => |
725 |
error_at ctxt [rhs] "Partially applied constructor in right-hand side"; |
|
53303
ae49b835ca01
moved files related to "primrec_new", "primcorec", and "datatype_compat" from bitbucket co-rec repository
blanchet
parents:
diff
changeset
|
726 |
|
54160 | 727 |
val eqns_data_sel = |
59594 | 728 |
map (dissect_coeqn_sel ctxt fun_names basic_ctr_specss eqn_pos |
54951
e25b4d22082b
for code equations that coincide with ctr equations, make sure the usr's input is preserved for both
blanchet
parents:
54948
diff
changeset
|
729 |
(SOME (abstract (List.rev fun_args) rhs)) code_rhs_opt eqn0 (SOME ctr)) sel_concls; |
53303
ae49b835ca01
moved files related to "primrec_new", "primcorec", and "datatype_compat" from bitbucket co-rec repository
blanchet
parents:
diff
changeset
|
730 |
in |
54926
28b621fce2f9
more SML-ish (less Haskell-ish) naming convention
blanchet
parents:
54925
diff
changeset
|
731 |
(the_list eqn_data_disc_opt @ eqns_data_sel, matchedsss') |
53303
ae49b835ca01
moved files related to "primrec_new", "primcorec", and "datatype_compat" from bitbucket co-rec repository
blanchet
parents:
diff
changeset
|
732 |
end; |
ae49b835ca01
moved files related to "primrec_new", "primcorec", and "datatype_compat" from bitbucket co-rec repository
blanchet
parents:
diff
changeset
|
733 |
|
59594 | 734 |
fun dissect_coeqn_code ctxt has_call fun_names basic_ctr_specss eqn_pos eqn0 concl matchedsss = |
54065 | 735 |
let |
59594 | 736 |
val (lhs, (rhs', rhs)) = HOLogic.dest_eq concl ||> `(expand_corec_code_rhs ctxt has_call []); |
54097
92c5bd3b342d
prove user-supplied equations for ctr and code reductions, preserving "let"s, "case"s etc.;
panny
parents:
54074
diff
changeset
|
737 |
val (fun_name, fun_args) = strip_comb lhs |>> fst o dest_Free; |
56152 | 738 |
|
59594 | 739 |
val _ = check_extra_variables ctxt fun_args fun_names concl; |
56152 | 740 |
|
58393 | 741 |
val basic_ctr_specs = the (AList.lookup (op =) (fun_names ~~ basic_ctr_specss) fun_name); |
54065 | 742 |
|
59594 | 743 |
val cond_ctrs = fold_rev_corec_code_rhs ctxt (fn cs => fn ctr => fn _ => |
55008
b5b2e193ca33
use 'disc_exhausts' property both from types on which 'case's take place and on return type
blanchet
parents:
55005
diff
changeset
|
744 |
if member (op = o apsnd #ctr) basic_ctr_specs ctr then cons (ctr, cs) |
59594 | 745 |
else error ("Not a constructor: " ^ quote (Syntax.string_of_term ctxt ctr))) [] rhs' [] |
54065 | 746 |
|> AList.group (op =); |
747 |
||
54068 | 748 |
val ctr_premss = (case cond_ctrs of [_] => [[]] | _ => map (s_dnf o snd) cond_ctrs); |
54065 | 749 |
val ctr_concls = cond_ctrs |> map (fn (ctr, _) => |
58393 | 750 |
binder_types (fastype_of ctr) |
59594 | 751 |
|> map_index (fn (n, T) => massage_corec_code_rhs ctxt (fn _ => fn ctr' => fn args => |
58393 | 752 |
if ctr' = ctr then nth args n else Const (@{const_name undefined}, T)) [] rhs') |
753 |
|> curry Term.list_comb ctr |
|
754 |
|> curry HOLogic.mk_eq lhs); |
|
54902
a9291e4d2366
internally allow different values for 'sequential' for different constructors
blanchet
parents:
54901
diff
changeset
|
755 |
|
59594 | 756 |
val bads = maps (filter (Term.exists_subterm (is_free_in fun_names))) ctr_premss; |
757 |
val _ = null bads orelse unexpected_corec_call ctxt [eqn0] rhs; |
|
758 |
||
54902
a9291e4d2366
internally allow different values for 'sequential' for different constructors
blanchet
parents:
54901
diff
changeset
|
759 |
val sequentials = replicate (length fun_names) false; |
54065 | 760 |
in |
59594 | 761 |
@{fold_map 2} (dissect_coeqn_ctr ctxt fun_names sequentials basic_ctr_specss eqn_pos eqn0 |
54097
92c5bd3b342d
prove user-supplied equations for ctr and code reductions, preserving "let"s, "case"s etc.;
panny
parents:
54074
diff
changeset
|
762 |
(SOME (abstract (List.rev fun_args) rhs))) |
92c5bd3b342d
prove user-supplied equations for ctr and code reductions, preserving "let"s, "case"s etc.;
panny
parents:
54074
diff
changeset
|
763 |
ctr_premss ctr_concls matchedsss |
54065 | 764 |
end; |
765 |
||
59594 | 766 |
fun dissect_coeqn ctxt has_call fun_names sequentials |
54951
e25b4d22082b
for code equations that coincide with ctr equations, make sure the usr's input is preserved for both
blanchet
parents:
54948
diff
changeset
|
767 |
(basic_ctr_specss : basic_corec_ctr_spec list list) (eqn_pos, eqn0) of_spec_opt matchedsss = |
53303
ae49b835ca01
moved files related to "primrec_new", "primcorec", and "datatype_compat" from bitbucket co-rec repository
blanchet
parents:
diff
changeset
|
768 |
let |
54979
d7593bfccf25
correctly extract code RHS, with loose bound variables
blanchet
parents:
54978
diff
changeset
|
769 |
val eqn = drop_all eqn0 |
59594 | 770 |
handle TERM _ => error_at ctxt [eqn0] "Ill-formed function equation"; |
54065 | 771 |
val (prems, concl) = Logic.strip_horn eqn |
57527 | 772 |
|> map_prod (map HOLogic.dest_Trueprop) HOLogic.dest_Trueprop |
59594 | 773 |
handle TERM _ => error_at ctxt [eqn] "Ill-formed function equation"; |
53303
ae49b835ca01
moved files related to "primrec_new", "primcorec", and "datatype_compat" from bitbucket co-rec repository
blanchet
parents:
diff
changeset
|
774 |
|
54065 | 775 |
val head = concl |
53303
ae49b835ca01
moved files related to "primrec_new", "primcorec", and "datatype_compat" from bitbucket co-rec repository
blanchet
parents:
diff
changeset
|
776 |
|> perhaps (try HOLogic.dest_not) |> perhaps (try (fst o HOLogic.dest_eq)) |
ae49b835ca01
moved files related to "primrec_new", "primcorec", and "datatype_compat" from bitbucket co-rec repository
blanchet
parents:
diff
changeset
|
777 |
|> head_of; |
ae49b835ca01
moved files related to "primrec_new", "primcorec", and "datatype_compat" from bitbucket co-rec repository
blanchet
parents:
diff
changeset
|
778 |
|
54926
28b621fce2f9
more SML-ish (less Haskell-ish) naming convention
blanchet
parents:
54925
diff
changeset
|
779 |
val rhs_opt = concl |> perhaps (try HOLogic.dest_not) |> try (snd o HOLogic.dest_eq); |
53303
ae49b835ca01
moved files related to "primrec_new", "primcorec", and "datatype_compat" from bitbucket co-rec repository
blanchet
parents:
diff
changeset
|
780 |
|
54160 | 781 |
val discs = maps (map #disc) basic_ctr_specss; |
782 |
val sels = maps (maps #sels) basic_ctr_specss; |
|
783 |
val ctrs = maps (map #ctr) basic_ctr_specss; |
|
53303
ae49b835ca01
moved files related to "primrec_new", "primcorec", and "datatype_compat" from bitbucket co-rec repository
blanchet
parents:
diff
changeset
|
784 |
in |
ae49b835ca01
moved files related to "primrec_new", "primcorec", and "datatype_compat" from bitbucket co-rec repository
blanchet
parents:
diff
changeset
|
785 |
if member (op =) discs head orelse |
58393 | 786 |
(is_some rhs_opt andalso |
787 |
member (op =) (map SOME fun_names) (try (fst o dest_Free) head) andalso |
|
788 |
member (op =) (filter (null o binder_types o fastype_of) ctrs) (the rhs_opt)) then |
|
59594 | 789 |
dissect_coeqn_disc ctxt fun_names sequentials basic_ctr_specss eqn_pos NONE NONE prems concl |
54951
e25b4d22082b
for code equations that coincide with ctr equations, make sure the usr's input is preserved for both
blanchet
parents:
54948
diff
changeset
|
790 |
matchedsss |
53303
ae49b835ca01
moved files related to "primrec_new", "primcorec", and "datatype_compat" from bitbucket co-rec repository
blanchet
parents:
diff
changeset
|
791 |
|>> single |
ae49b835ca01
moved files related to "primrec_new", "primcorec", and "datatype_compat" from bitbucket co-rec repository
blanchet
parents:
diff
changeset
|
792 |
else if member (op =) sels head then |
59594 | 793 |
(null prems orelse error_at ctxt [eqn] "Unexpected condition in selector formula"; |
794 |
([dissect_coeqn_sel ctxt fun_names basic_ctr_specss eqn_pos NONE NONE eqn0 of_spec_opt |
|
57550 | 795 |
concl], matchedsss)) |
59594 | 796 |
else if is_some rhs_opt andalso is_Free head andalso is_free_in fun_names head then |
55343 | 797 |
if member (op =) ctrs (head_of (unfold_lets_splits (the rhs_opt))) then |
59594 | 798 |
dissect_coeqn_ctr ctxt fun_names sequentials basic_ctr_specss eqn_pos eqn0 |
54979
d7593bfccf25
correctly extract code RHS, with loose bound variables
blanchet
parents:
54978
diff
changeset
|
799 |
(if null prems then |
d7593bfccf25
correctly extract code RHS, with loose bound variables
blanchet
parents:
54978
diff
changeset
|
800 |
SOME (snd (HOLogic.dest_eq (HOLogic.dest_Trueprop (Logic.strip_assums_concl eqn0)))) |
d7593bfccf25
correctly extract code RHS, with loose bound variables
blanchet
parents:
54978
diff
changeset
|
801 |
else |
d7593bfccf25
correctly extract code RHS, with loose bound variables
blanchet
parents:
54978
diff
changeset
|
802 |
NONE) |
54975 | 803 |
prems concl matchedsss |
54951
e25b4d22082b
for code equations that coincide with ctr equations, make sure the usr's input is preserved for both
blanchet
parents:
54948
diff
changeset
|
804 |
else if null prems then |
59594 | 805 |
dissect_coeqn_code ctxt has_call fun_names basic_ctr_specss eqn_pos eqn0 concl matchedsss |
54951
e25b4d22082b
for code equations that coincide with ctr equations, make sure the usr's input is preserved for both
blanchet
parents:
54948
diff
changeset
|
806 |
|>> flat |
e25b4d22082b
for code equations that coincide with ctr equations, make sure the usr's input is preserved for both
blanchet
parents:
54948
diff
changeset
|
807 |
else |
59594 | 808 |
error_at ctxt [eqn] "Cannot mix constructor and code views" |
53303
ae49b835ca01
moved files related to "primrec_new", "primcorec", and "datatype_compat" from bitbucket co-rec repository
blanchet
parents:
diff
changeset
|
809 |
else |
59594 | 810 |
error_at ctxt [eqn] "Ill-formed function equation" |
53303
ae49b835ca01
moved files related to "primrec_new", "primcorec", and "datatype_compat" from bitbucket co-rec repository
blanchet
parents:
diff
changeset
|
811 |
end; |
ae49b835ca01
moved files related to "primrec_new", "primcorec", and "datatype_compat" from bitbucket co-rec repository
blanchet
parents:
diff
changeset
|
812 |
|
54002 | 813 |
fun build_corec_arg_disc (ctr_specs : corec_ctr_spec list) |
54153
67487a607ce2
avoid 'co_' prefix with underscore meaning 'co', since it is our only possible identifier representation of '(co)'
blanchet
parents:
54145
diff
changeset
|
814 |
({fun_args, ctr_no, prems, ...} : coeqn_data_disc) = |
56858 | 815 |
if is_none (#pred (nth ctr_specs ctr_no)) then |
816 |
I |
|
817 |
else |
|
54068 | 818 |
s_conjs prems |
53654
8b9ea4420f81
prove simp theorems for newly generated definitions
panny
parents:
53411
diff
changeset
|
819 |
|> curry subst_bounds (List.rev fun_args) |
55969 | 820 |
|> abs_tuple_balanced fun_args |
53654
8b9ea4420f81
prove simp theorems for newly generated definitions
panny
parents:
53411
diff
changeset
|
821 |
|> K |> nth_map (the (#pred (nth ctr_specs ctr_no))); |
53303
ae49b835ca01
moved files related to "primrec_new", "primcorec", and "datatype_compat" from bitbucket co-rec repository
blanchet
parents:
diff
changeset
|
822 |
|
54153
67487a607ce2
avoid 'co_' prefix with underscore meaning 'co', since it is our only possible identifier representation of '(co)'
blanchet
parents:
54145
diff
changeset
|
823 |
fun build_corec_arg_no_call (sel_eqns : coeqn_data_sel list) sel = |
54923
ffed2452f5f6
instantiate schematics as projections to avoid HOU trouble
blanchet
parents:
54921
diff
changeset
|
824 |
find_first (curry (op =) sel o #sel) sel_eqns |
55969 | 825 |
|> try (fn SOME {fun_args, rhs_term, ...} => abs_tuple_balanced fun_args rhs_term) |
53720 | 826 |
|> the_default undef_const |
53411 | 827 |
|> K; |
53360 | 828 |
|
59594 | 829 |
fun build_corec_args_mutual_call ctxt has_call (sel_eqns : coeqn_data_sel list) sel = |
54923
ffed2452f5f6
instantiate schematics as projections to avoid HOU trouble
blanchet
parents:
54921
diff
changeset
|
830 |
(case find_first (curry (op =) sel o #sel) sel_eqns of |
54208 | 831 |
NONE => (I, I, I) |
832 |
| SOME {fun_args, rhs_term, ... } => |
|
53876 | 833 |
let |
54097
92c5bd3b342d
prove user-supplied equations for ctr and code reductions, preserving "let"s, "case"s etc.;
panny
parents:
54074
diff
changeset
|
834 |
val bound_Ts = List.rev (map fastype_of fun_args); |
54207
9296ebf40db0
tuned names (to make them independent from temporary naming convention used in characteristic theorems)
blanchet
parents:
54206
diff
changeset
|
835 |
fun rewrite_stop _ t = if has_call t then @{term False} else @{term True}; |
9296ebf40db0
tuned names (to make them independent from temporary naming convention used in characteristic theorems)
blanchet
parents:
54206
diff
changeset
|
836 |
fun rewrite_end _ t = if has_call t then undef_const else t; |
9296ebf40db0
tuned names (to make them independent from temporary naming convention used in characteristic theorems)
blanchet
parents:
54206
diff
changeset
|
837 |
fun rewrite_cont bound_Ts t = |
55969 | 838 |
if has_call t then mk_tuple1_balanced bound_Ts (snd (strip_comb t)) else undef_const; |
59594 | 839 |
fun massage f _ = massage_let_if_case ctxt has_call f bound_Ts rhs_term |
55969 | 840 |
|> abs_tuple_balanced fun_args; |
53876 | 841 |
in |
54207
9296ebf40db0
tuned names (to make them independent from temporary naming convention used in characteristic theorems)
blanchet
parents:
54206
diff
changeset
|
842 |
(massage rewrite_stop, massage rewrite_end, massage rewrite_cont) |
54208 | 843 |
end); |
53360 | 844 |
|
59594 | 845 |
fun build_corec_arg_nested_call ctxt has_call (sel_eqns : coeqn_data_sel list) sel = |
54923
ffed2452f5f6
instantiate schematics as projections to avoid HOU trouble
blanchet
parents:
54921
diff
changeset
|
846 |
(case find_first (curry (op =) sel o #sel) sel_eqns of |
54208 | 847 |
NONE => I |
848 |
| SOME {fun_args, rhs_term, ...} => |
|
53899 | 849 |
let |
55339
f09037306f25
properly massage 'if's / 'case's etc. under lambdas
blanchet
parents:
55100
diff
changeset
|
850 |
fun massage bound_Ts U T = |
f09037306f25
properly massage 'if's / 'case's etc. under lambdas
blanchet
parents:
55100
diff
changeset
|
851 |
let |
f09037306f25
properly massage 'if's / 'case's etc. under lambdas
blanchet
parents:
55100
diff
changeset
|
852 |
fun rewrite bound_Ts (Abs (v, V, b)) = Abs (v, V, rewrite (V :: bound_Ts) b) |
f09037306f25
properly massage 'if's / 'case's etc. under lambdas
blanchet
parents:
55100
diff
changeset
|
853 |
| rewrite bound_Ts (t as _ $ _) = |
f09037306f25
properly massage 'if's / 'case's etc. under lambdas
blanchet
parents:
55100
diff
changeset
|
854 |
let val (u, vs) = strip_comb t in |
f09037306f25
properly massage 'if's / 'case's etc. under lambdas
blanchet
parents:
55100
diff
changeset
|
855 |
if is_Free u andalso has_call u then |
55969 | 856 |
Inr_const U T $ mk_tuple1_balanced bound_Ts vs |
55414
eab03e9cee8a
renamed '{prod,sum,bool,unit}_case' to 'case_...'
blanchet
parents:
55400
diff
changeset
|
857 |
else if try (fst o dest_Const) u = SOME @{const_name case_prod} then |
55343 | 858 |
map (rewrite bound_Ts) vs |> chop 1 |
859 |
|>> HOLogic.mk_split o the_single |
|
860 |
|> Term.list_comb |
|
55339
f09037306f25
properly massage 'if's / 'case's etc. under lambdas
blanchet
parents:
55100
diff
changeset
|
861 |
else |
55343 | 862 |
Term.list_comb (rewrite bound_Ts u, map (rewrite bound_Ts) vs) |
55339
f09037306f25
properly massage 'if's / 'case's etc. under lambdas
blanchet
parents:
55100
diff
changeset
|
863 |
end |
f09037306f25
properly massage 'if's / 'case's etc. under lambdas
blanchet
parents:
55100
diff
changeset
|
864 |
| rewrite _ t = |
f09037306f25
properly massage 'if's / 'case's etc. under lambdas
blanchet
parents:
55100
diff
changeset
|
865 |
if is_Free t andalso has_call t then Inr_const U T $ HOLogic.unit else t; |
f09037306f25
properly massage 'if's / 'case's etc. under lambdas
blanchet
parents:
55100
diff
changeset
|
866 |
in |
f09037306f25
properly massage 'if's / 'case's etc. under lambdas
blanchet
parents:
55100
diff
changeset
|
867 |
rewrite bound_Ts |
f09037306f25
properly massage 'if's / 'case's etc. under lambdas
blanchet
parents:
55100
diff
changeset
|
868 |
end; |
f09037306f25
properly massage 'if's / 'case's etc. under lambdas
blanchet
parents:
55100
diff
changeset
|
869 |
|
54097
92c5bd3b342d
prove user-supplied equations for ctr and code reductions, preserving "let"s, "case"s etc.;
panny
parents:
54074
diff
changeset
|
870 |
val bound_Ts = List.rev (map fastype_of fun_args); |
55339
f09037306f25
properly massage 'if's / 'case's etc. under lambdas
blanchet
parents:
55100
diff
changeset
|
871 |
|
f09037306f25
properly massage 'if's / 'case's etc. under lambdas
blanchet
parents:
55100
diff
changeset
|
872 |
fun build t = |
54097
92c5bd3b342d
prove user-supplied equations for ctr and code reductions, preserving "let"s, "case"s etc.;
panny
parents:
54074
diff
changeset
|
873 |
rhs_term |
59594 | 874 |
|> massage_nested_corec_call ctxt has_call massage bound_Ts (range_type (fastype_of t)) |
55969 | 875 |
|> abs_tuple_balanced fun_args; |
53899 | 876 |
in |
55339
f09037306f25
properly massage 'if's / 'case's etc. under lambdas
blanchet
parents:
55100
diff
changeset
|
877 |
build |
54208 | 878 |
end); |
53360 | 879 |
|
59594 | 880 |
fun build_corec_args_sel ctxt has_call (all_sel_eqns : coeqn_data_sel list) |
54002 | 881 |
(ctr_spec : corec_ctr_spec) = |
54923
ffed2452f5f6
instantiate schematics as projections to avoid HOU trouble
blanchet
parents:
54921
diff
changeset
|
882 |
(case filter (curry (op =) (#ctr ctr_spec) o #ctr) all_sel_eqns of |
54208 | 883 |
[] => I |
884 |
| sel_eqns => |
|
885 |
let |
|
886 |
val sel_call_list = #sels ctr_spec ~~ #calls ctr_spec; |
|
887 |
val no_calls' = map_filter (try (apsnd (fn No_Corec n => n))) sel_call_list; |
|
888 |
val mutual_calls' = map_filter (try (apsnd (fn Mutual_Corec n => n))) sel_call_list; |
|
889 |
val nested_calls' = map_filter (try (apsnd (fn Nested_Corec n => n))) sel_call_list; |
|
890 |
in |
|
891 |
I |
|
892 |
#> fold (fn (sel, n) => nth_map n (build_corec_arg_no_call sel_eqns sel)) no_calls' |
|
893 |
#> fold (fn (sel, (q, g, h)) => |
|
59594 | 894 |
let val (fq, fg, fh) = build_corec_args_mutual_call ctxt has_call sel_eqns sel in |
54208 | 895 |
nth_map q fq o nth_map g fg o nth_map h fh end) mutual_calls' |
896 |
#> fold (fn (sel, n) => nth_map n |
|
59594 | 897 |
(build_corec_arg_nested_call ctxt has_call sel_eqns sel)) nested_calls' |
54208 | 898 |
end); |
53303
ae49b835ca01
moved files related to "primrec_new", "primcorec", and "datatype_compat" from bitbucket co-rec repository
blanchet
parents:
diff
changeset
|
899 |
|
59594 | 900 |
fun build_codefs ctxt bs mxs has_call arg_Tss (corec_specs : corec_spec list) |
54153
67487a607ce2
avoid 'co_' prefix with underscore meaning 'co', since it is our only possible identifier representation of '(co)'
blanchet
parents:
54145
diff
changeset
|
901 |
(disc_eqnss : coeqn_data_disc list list) (sel_eqnss : coeqn_data_sel list list) = |
53654
8b9ea4420f81
prove simp theorems for newly generated definitions
panny
parents:
53411
diff
changeset
|
902 |
let |
54160 | 903 |
val corecs = map #corec corec_specs; |
904 |
val ctr_specss = map #ctr_specs corec_specs; |
|
53360 | 905 |
val corec_args = hd corecs |
906 |
|> fst o split_last o binder_types o fastype_of |
|
59044 | 907 |
|> map (fn T => |
908 |
if range_type T = HOLogic.boolT then Abs (Name.uu_, domain_type T, @{term False}) |
|
54806
a0f024caa04c
pass auto-proved exhaustiveness properties to tactic;
panny
parents:
54628
diff
changeset
|
909 |
else Const (@{const_name undefined}, T)) |
53720 | 910 |
|> fold2 (fold o build_corec_arg_disc) ctr_specss disc_eqnss |
59594 | 911 |
|> fold2 (fold o build_corec_args_sel ctxt has_call) sel_eqnss ctr_specss; |
59041 | 912 |
|
53735 | 913 |
fun currys [] t = t |
55969 | 914 |
| currys Ts t = t $ mk_tuple1_balanced (List.rev Ts) (map Bound (length Ts - 1 downto 0)) |
53735 | 915 |
|> fold_rev (Term.abs o pair Name.uu) Ts; |
53401 | 916 |
|
54835 | 917 |
val excludess' = |
53720 | 918 |
disc_eqnss |
53822 | 919 |
|> map (map (fn x => (#fun_args x, #ctr_no x, #prems x, #auto_gen x)) |
53654
8b9ea4420f81
prove simp theorems for newly generated definitions
panny
parents:
53411
diff
changeset
|
920 |
#> fst o (fn xs => fold_map (fn x => fn ys => ((x, ys), ys @ [x])) xs []) |
8b9ea4420f81
prove simp theorems for newly generated definitions
panny
parents:
53411
diff
changeset
|
921 |
#> maps (uncurry (map o pair) |
53822 | 922 |
#> map (fn ((fun_args, c, x, a), (_, c', y, a')) => |
54068 | 923 |
((c, c', a orelse a'), (x, s_not (s_conjs y))) |
57527 | 924 |
||> map_prod (map HOLogic.mk_Trueprop) HOLogic.mk_Trueprop |
53654
8b9ea4420f81
prove simp theorems for newly generated definitions
panny
parents:
53411
diff
changeset
|
925 |
||> Logic.list_implies |
55342 | 926 |
||> curry Logic.list_all (map dest_Free fun_args)))); |
53303
ae49b835ca01
moved files related to "primrec_new", "primcorec", and "datatype_compat" from bitbucket co-rec repository
blanchet
parents:
diff
changeset
|
927 |
in |
55343 | 928 |
map (Term.list_comb o rpair corec_args) corecs |
53303
ae49b835ca01
moved files related to "primrec_new", "primcorec", and "datatype_compat" from bitbucket co-rec repository
blanchet
parents:
diff
changeset
|
929 |
|> map2 (fn Ts => fn t => if length Ts = 0 then t $ HOLogic.unit else t) arg_Tss |
ae49b835ca01
moved files related to "primrec_new", "primcorec", and "datatype_compat" from bitbucket co-rec repository
blanchet
parents:
diff
changeset
|
930 |
|> map2 currys arg_Tss |
59594 | 931 |
|> Syntax.check_terms ctxt |
58634
9f10d82e8188
added parameterized ML antiquotations @{map N}, @{fold N}, @{fold_map N}, @{split_list N};
wenzelm
parents:
58462
diff
changeset
|
932 |
|> @{map 3} (fn b => fn mx => fn t => ((b, mx), ((Binding.conceal (Thm.def_binding b), []), t))) |
54155 | 933 |
bs mxs |
54835 | 934 |
|> rpair excludess' |
53303
ae49b835ca01
moved files related to "primrec_new", "primcorec", and "datatype_compat" from bitbucket co-rec repository
blanchet
parents:
diff
changeset
|
935 |
end; |
ae49b835ca01
moved files related to "primrec_new", "primcorec", and "datatype_compat" from bitbucket co-rec repository
blanchet
parents:
diff
changeset
|
936 |
|
54905
2fdec6c29eb7
don't generate any proof obligation for implicit (de facto) exclusiveness
blanchet
parents:
54904
diff
changeset
|
937 |
fun mk_actual_disc_eqns fun_binding arg_Ts exhaustive ({ctr_specs, ...} : corec_spec) |
54153
67487a607ce2
avoid 'co_' prefix with underscore meaning 'co', since it is our only possible identifier representation of '(co)'
blanchet
parents:
54145
diff
changeset
|
938 |
(sel_eqns : coeqn_data_sel list) (disc_eqns : coeqn_data_disc list) = |
54910 | 939 |
let val num_disc_eqns = length disc_eqns in |
54912 | 940 |
if (exhaustive andalso num_disc_eqns <> 0) orelse num_disc_eqns <> length ctr_specs - 1 then |
54910 | 941 |
disc_eqns |
942 |
else |
|
943 |
let |
|
944 |
val n = 0 upto length ctr_specs |
|
55342 | 945 |
|> the o find_first (fn j => not (exists (curry (op =) j o #ctr_no) disc_eqns)); |
54958
4933165fd112
do not use wrong constructor in auto-generated proof goal
panny
parents:
54956
diff
changeset
|
946 |
val {ctr, disc, ...} = nth ctr_specs n; |
58393 | 947 |
val sel_eqn_opt = find_first (equal ctr o #ctr) sel_eqns; |
948 |
||
949 |
val fun_name = Binding.name_of fun_binding; |
|
950 |
val fun_T = arg_Ts ---> body_type (fastype_of (#ctr (hd ctr_specs))); |
|
54910 | 951 |
val fun_args = (try (#fun_args o hd) disc_eqns, try (#fun_args o hd) sel_eqns) |
952 |
|> the_default (map (curry Free Name.uu) arg_Ts) o merge_options; |
|
58393 | 953 |
val prems = maps (s_not_conj o #prems) disc_eqns; |
954 |
val ctr_rhs_opt = Option.map #ctr_rhs_opt sel_eqn_opt |> the_default NONE; |
|
955 |
val code_rhs_opt = Option.map #code_rhs_opt sel_eqn_opt |> the_default NONE; |
|
59276 | 956 |
val eqn_pos = Option.map (curry (op +) 1 o #eqn_pos) sel_eqn_opt |> the_default 100000; (* FIXME *) |
58393 | 957 |
|
958 |
val extra_disc_eqn = |
|
959 |
{fun_name = fun_name, fun_T = fun_T, fun_args = fun_args, ctr = ctr, ctr_no = n, |
|
960 |
disc = disc, prems = prems, auto_gen = true, ctr_rhs_opt = ctr_rhs_opt, |
|
961 |
code_rhs_opt = code_rhs_opt, eqn_pos = eqn_pos, user_eqn = undef_const}; |
|
54910 | 962 |
in |
963 |
chop n disc_eqns ||> cons extra_disc_eqn |> (op @) |
|
964 |
end |
|
965 |
end; |
|
53720 | 966 |
|
55100 | 967 |
fun find_corec_calls ctxt has_call (basic_ctr_specs : basic_corec_ctr_spec list) |
968 |
({ctr, sel, rhs_term, ...} : coeqn_data_sel) = |
|
54160 | 969 |
let |
54923
ffed2452f5f6
instantiate schematics as projections to avoid HOU trouble
blanchet
parents:
54921
diff
changeset
|
970 |
val sel_no = find_first (curry (op =) ctr o #ctr) basic_ctr_specs |
ffed2452f5f6
instantiate schematics as projections to avoid HOU trouble
blanchet
parents:
54921
diff
changeset
|
971 |
|> find_index (curry (op =) sel) o #sels o the; |
54160 | 972 |
in |
55341
3d2c97392e25
adapted tactic to correctly handle 'if ... then ...' and 'case ...' under lambdas
blanchet
parents:
55339
diff
changeset
|
973 |
K (if has_call rhs_term then fold_rev_let_if_case ctxt (K cons) [] rhs_term [] else []) |
3d2c97392e25
adapted tactic to correctly handle 'if ... then ...' and 'case ...' under lambdas
blanchet
parents:
55339
diff
changeset
|
974 |
|> nth_map sel_no |> AList.map_entry (op =) ctr |
54160 | 975 |
end; |
976 |
||
54900 | 977 |
fun applied_fun_of fun_name fun_T fun_args = |
55343 | 978 |
Term.list_comb (Free (fun_name, fun_T), map Bound (length fun_args - 1 downto 0)); |
54900 | 979 |
|
54921
862c36b6e57c
avoid schematic variable in goal, which sometimes gets instantiated by tactic
blanchet
parents:
54917
diff
changeset
|
980 |
fun is_trivial_implies thm = |
54967
78de75e3e52a
exhaustive rules like '(False ==> P) ==> P ==> P' are now filtered out as trivial
blanchet
parents:
54959
diff
changeset
|
981 |
uncurry (member (op aconv)) (Logic.strip_horn (Thm.prop_of thm)); |
54921
862c36b6e57c
avoid schematic variable in goal, which sometimes gets instantiated by tactic
blanchet
parents:
54917
diff
changeset
|
982 |
|
55009
d4b69107a86a
automatically solve proof obligations produced for code equations
blanchet
parents:
55008
diff
changeset
|
983 |
fun add_primcorec_ursive auto opts fixes specs of_specs_opt lthy = |
53303
ae49b835ca01
moved files related to "primrec_new", "primcorec", and "datatype_compat" from bitbucket co-rec repository
blanchet
parents:
diff
changeset
|
984 |
let |
54272
9d623cada37f
avoid subtle failure in the presence of top sort
blanchet
parents:
54271
diff
changeset
|
985 |
val thy = Proof_Context.theory_of lthy; |
9d623cada37f
avoid subtle failure in the presence of top sort
blanchet
parents:
54271
diff
changeset
|
986 |
|
53352 | 987 |
val (bs, mxs) = map_split (apfst fst) fixes; |
55969 | 988 |
val (arg_Ts, res_Ts) = map (strip_type o snd o fst #>> mk_tupleT_balanced) fixes |> split_list; |
53303
ae49b835ca01
moved files related to "primrec_new", "primcorec", and "datatype_compat" from bitbucket co-rec repository
blanchet
parents:
diff
changeset
|
989 |
|
56254 | 990 |
val _ = (case filter_out (fn (_, T) => Sign.of_sort thy (T, @{sort type})) (bs ~~ arg_Ts) of |
54272
9d623cada37f
avoid subtle failure in the presence of top sort
blanchet
parents:
54271
diff
changeset
|
991 |
[] => () |
59594 | 992 |
| (b, _) :: _ => error ("Type of " ^ Binding.print b ^ " contains top sort")); |
54272
9d623cada37f
avoid subtle failure in the presence of top sort
blanchet
parents:
54271
diff
changeset
|
993 |
|
54902
a9291e4d2366
internally allow different values for 'sequential' for different constructors
blanchet
parents:
54901
diff
changeset
|
994 |
val actual_nn = length bs; |
a9291e4d2366
internally allow different values for 'sequential' for different constructors
blanchet
parents:
54901
diff
changeset
|
995 |
|
59281 | 996 |
val plugins = get_first (fn Plugins_Option f => SOME (f lthy) | _ => NONE) (rev opts) |
997 |
|> the_default Plugin_Name.default_filter; |
|
998 |
val sequentials = replicate actual_nn (exists (can (fn Sequential_Option => ())) opts); |
|
999 |
val exhaustives = replicate actual_nn (exists (can (fn Exhaustive_Option => ())) opts); |
|
1000 |
val transfers = replicate actual_nn (exists (can (fn Transfer_Option => ())) opts); |
|
54591
c822230fd22b
prevent exception when equations for a function are missing;
panny
parents:
54279
diff
changeset
|
1001 |
|
54160 | 1002 |
val fun_names = map Binding.name_of bs; |
1003 |
val basic_ctr_specss = map (basic_corec_specs_of lthy) res_Ts; |
|
55772
367ec44763fd
correct most general type for mutual recursion when several identical types are involved
blanchet
parents:
55571
diff
changeset
|
1004 |
val frees = map (fst #>> Binding.name_of #> Free) fixes; |
59594 | 1005 |
val has_call = Term.exists_subterm (member (op =) frees); |
54160 | 1006 |
val eqns_data = |
58634
9f10d82e8188
added parameterized ML antiquotations @{map N}, @{fold N}, @{fold_map N}, @{split_list N};
wenzelm
parents:
58462
diff
changeset
|
1007 |
@{fold_map 2} (dissect_coeqn lthy has_call fun_names sequentials basic_ctr_specss) |
55871 | 1008 |
(tag_list 0 (map snd specs)) of_specs_opt [] |
54160 | 1009 |
|> flat o fst; |
1010 |
||
56152 | 1011 |
val _ = |
1012 |
let |
|
1013 |
val missing = fun_names |
|
1014 |
|> filter (map (fn Disc x => #fun_name x | Sel x => #fun_name x) eqns_data |
|
59275
77cd4992edcd
Add plugin to generate transfer theorem for primrec and primcorec
desharna
parents:
59058
diff
changeset
|
1015 |
|> not oo member (op =)); |
56152 | 1016 |
in |
59594 | 1017 |
null missing orelse error ("Missing equations for " ^ commas missing) |
56152 | 1018 |
end; |
1019 |
||
54160 | 1020 |
val callssss = |
1021 |
map_filter (try (fn Sel x => x)) eqns_data |
|
59058
a78612c67ec0
renamed "pairself" to "apply2", in accordance to @{apply 2};
wenzelm
parents:
59044
diff
changeset
|
1022 |
|> partition_eq (op = o apply2 #fun_name) |
54160 | 1023 |
|> fst o finds (fn (x, ({fun_name, ...} :: _)) => x = fun_name) fun_names |
54161 | 1024 |
|> map (flat o snd) |
54243 | 1025 |
|> map2 (fold o find_corec_calls lthy has_call) basic_ctr_specss |
54160 | 1026 |
|> map2 (curry (op |>)) (map (map (fn {ctr, sels, ...} => |
1027 |
(ctr, map (K []) sels))) basic_ctr_specss); |
|
1028 |
||
58283
71d74e641538
preserve case names in '(co)induct' theorems generated by prim(co)rec'
blanchet
parents:
58223
diff
changeset
|
1029 |
val (corec_specs', _, coinduct_thm, coinduct_strong_thm, coinduct_thms, coinduct_strong_thms, |
71d74e641538
preserve case names in '(co)induct' theorems generated by prim(co)rec'
blanchet
parents:
58223
diff
changeset
|
1030 |
(coinduct_attrs, common_coinduct_attrs), n2m, lthy') = |
55772
367ec44763fd
correct most general type for mutual recursion when several identical types are involved
blanchet
parents:
55571
diff
changeset
|
1031 |
corec_specs_of bs arg_Ts res_Ts frees callssss lthy; |
54948 | 1032 |
val corec_specs = take actual_nn corec_specs'; |
54178 | 1033 |
val ctr_specss = map #ctr_specs corec_specs; |
53303
ae49b835ca01
moved files related to "primrec_new", "primcorec", and "datatype_compat" from bitbucket co-rec repository
blanchet
parents:
diff
changeset
|
1034 |
|
53720 | 1035 |
val disc_eqnss' = map_filter (try (fn Disc x => x)) eqns_data |
59058
a78612c67ec0
renamed "pairself" to "apply2", in accordance to @{apply 2};
wenzelm
parents:
59044
diff
changeset
|
1036 |
|> partition_eq (op = o apply2 #fun_name) |
53720 | 1037 |
|> fst o finds (fn (x, ({fun_name, ...} :: _)) => x = fun_name) fun_names |
59058
a78612c67ec0
renamed "pairself" to "apply2", in accordance to @{apply 2};
wenzelm
parents:
59044
diff
changeset
|
1038 |
|> map (sort (op < o apply2 #ctr_no |> make_ord) o flat o snd); |
56152 | 1039 |
|
53720 | 1040 |
val _ = disc_eqnss' |> map (fn x => |
59058
a78612c67ec0
renamed "pairself" to "apply2", in accordance to @{apply 2};
wenzelm
parents:
59044
diff
changeset
|
1041 |
let val d = duplicates (op = o apply2 #ctr_no) x in |
a78612c67ec0
renamed "pairself" to "apply2", in accordance to @{apply 2};
wenzelm
parents:
59044
diff
changeset
|
1042 |
null d orelse |
59594 | 1043 |
(if forall (is_some o #ctr_rhs_opt) x then |
1044 |
error_at lthy |
|
1045 |
(maps (fn t => filter (curry (op =) (#ctr_no t) o #ctr_no) x) d |
|
1046 |
|> map (the o #ctr_rhs_opt)) |
|
1047 |
"Multiple equations for same constructor" |
|
1048 |
else |
|
1049 |
error_at lthy |
|
1050 |
(maps (fn t => filter (curry (op =) (#ctr_no t) o #ctr_no) x) d |> map #user_eqn) |
|
1051 |
"Excess discriminator formula in definition") |
|
59058
a78612c67ec0
renamed "pairself" to "apply2", in accordance to @{apply 2};
wenzelm
parents:
59044
diff
changeset
|
1052 |
end); |
53654
8b9ea4420f81
prove simp theorems for newly generated definitions
panny
parents:
53411
diff
changeset
|
1053 |
|
8b9ea4420f81
prove simp theorems for newly generated definitions
panny
parents:
53411
diff
changeset
|
1054 |
val sel_eqnss = map_filter (try (fn Sel x => x)) eqns_data |
59058
a78612c67ec0
renamed "pairself" to "apply2", in accordance to @{apply 2};
wenzelm
parents:
59044
diff
changeset
|
1055 |
|> partition_eq (op = o apply2 #fun_name) |
53720 | 1056 |
|> fst o finds (fn (x, ({fun_name, ...} :: _)) => x = fun_name) fun_names |
53654
8b9ea4420f81
prove simp theorems for newly generated definitions
panny
parents:
53411
diff
changeset
|
1057 |
|> map (flat o snd); |
8b9ea4420f81
prove simp theorems for newly generated definitions
panny
parents:
53411
diff
changeset
|
1058 |
|
53360 | 1059 |
val arg_Tss = map (binder_types o snd o fst) fixes; |
58634
9f10d82e8188
added parameterized ML antiquotations @{map N}, @{fold N}, @{fold_map N}, @{split_list N};
wenzelm
parents:
58462
diff
changeset
|
1060 |
val disc_eqnss = @{map 6} mk_actual_disc_eqns bs arg_Tss exhaustives corec_specs sel_eqnss |
54905
2fdec6c29eb7
don't generate any proof obligation for implicit (de facto) exclusiveness
blanchet
parents:
54904
diff
changeset
|
1061 |
disc_eqnss'; |
54835 | 1062 |
val (defs, excludess') = |
54153
67487a607ce2
avoid 'co_' prefix with underscore meaning 'co', since it is our only possible identifier representation of '(co)'
blanchet
parents:
54145
diff
changeset
|
1063 |
build_codefs lthy' bs mxs has_call arg_Tss corec_specs disc_eqnss sel_eqnss; |
53654
8b9ea4420f81
prove simp theorems for newly generated definitions
panny
parents:
53411
diff
changeset
|
1064 |
|
55009
d4b69107a86a
automatically solve proof obligations produced for code equations
blanchet
parents:
55008
diff
changeset
|
1065 |
val tac_opts = |
d4b69107a86a
automatically solve proof obligations produced for code equations
blanchet
parents:
55008
diff
changeset
|
1066 |
map (fn {code_rhs_opt, ...} :: _ => |
d4b69107a86a
automatically solve proof obligations produced for code equations
blanchet
parents:
55008
diff
changeset
|
1067 |
if auto orelse is_some code_rhs_opt then SOME (auto_tac o #context) else NONE) disc_eqnss; |
d4b69107a86a
automatically solve proof obligations produced for code equations
blanchet
parents:
55008
diff
changeset
|
1068 |
|
d4b69107a86a
automatically solve proof obligations produced for code equations
blanchet
parents:
55008
diff
changeset
|
1069 |
fun exclude_tac tac_opt sequential (c, c', a) = |
54901
0b8871677e0b
use same name for feature internally as in user interface, to facilitate grepping
blanchet
parents:
54900
diff
changeset
|
1070 |
if a orelse c = c' orelse sequential then |
0b8871677e0b
use same name for feature internally as in user interface, to facilitate grepping
blanchet
parents:
54900
diff
changeset
|
1071 |
SOME (K (HEADGOAL (mk_primcorec_assumption_tac lthy []))) |
0b8871677e0b
use same name for feature internally as in user interface, to facilitate grepping
blanchet
parents:
54900
diff
changeset
|
1072 |
else |
54926
28b621fce2f9
more SML-ish (less Haskell-ish) naming convention
blanchet
parents:
54925
diff
changeset
|
1073 |
tac_opt; |
53822 | 1074 |
|
58634
9f10d82e8188
added parameterized ML antiquotations @{map N}, @{fold N}, @{fold_map N}, @{split_list N};
wenzelm
parents:
58462
diff
changeset
|
1075 |
val excludess'' = @{map 3} (fn tac_opt => fn sequential => map (fn (j, goal) => |
59596
c067eba942e7
no quick_and_dirty for goals that may fail + tuned messages
blanchet
parents:
59595
diff
changeset
|
1076 |
(j, (Option.map (Goal.prove (*no sorry*) lthy [] [] goal #> Thm.close_derivation) |
55342 | 1077 |
(exclude_tac tac_opt sequential j), goal)))) |
55009
d4b69107a86a
automatically solve proof obligations produced for code equations
blanchet
parents:
55008
diff
changeset
|
1078 |
tac_opts sequentials excludess'; |
56152 | 1079 |
|
54835 | 1080 |
val taut_thmss = map (map (apsnd (the o fst)) o filter (is_some o fst o snd)) excludess''; |
55009
d4b69107a86a
automatically solve proof obligations produced for code equations
blanchet
parents:
55008
diff
changeset
|
1081 |
val (goal_idxss, exclude_goalss) = excludess'' |
53654
8b9ea4420f81
prove simp theorems for newly generated definitions
panny
parents:
53411
diff
changeset
|
1082 |
|> map (map (apsnd (rpair [] o snd)) o filter (is_none o fst o snd)) |
8b9ea4420f81
prove simp theorems for newly generated definitions
panny
parents:
53411
diff
changeset
|
1083 |
|> split_list o map split_list; |
8b9ea4420f81
prove simp theorems for newly generated definitions
panny
parents:
53411
diff
changeset
|
1084 |
|
54921
862c36b6e57c
avoid schematic variable in goal, which sometimes gets instantiated by tactic
blanchet
parents:
54917
diff
changeset
|
1085 |
fun list_all_fun_args extras = |
54910 | 1086 |
map2 (fn [] => I |
54921
862c36b6e57c
avoid schematic variable in goal, which sometimes gets instantiated by tactic
blanchet
parents:
54917
diff
changeset
|
1087 |
| {fun_args, ...} :: _ => map (curry Logic.list_all (extras @ map dest_Free fun_args))) |
54903
c664bd02bf94
internally allow different values for 'exhaustive' for different constructors
blanchet
parents:
54902
diff
changeset
|
1088 |
disc_eqnss; |
54844 | 1089 |
|
54905
2fdec6c29eb7
don't generate any proof obligation for implicit (de facto) exclusiveness
blanchet
parents:
54904
diff
changeset
|
1090 |
val syntactic_exhaustives = |
54926
28b621fce2f9
more SML-ish (less Haskell-ish) naming convention
blanchet
parents:
54925
diff
changeset
|
1091 |
map (fn disc_eqns => forall (null o #prems orf is_some o #code_rhs_opt) disc_eqns |
54913 | 1092 |
orelse exists #auto_gen disc_eqns) |
54905
2fdec6c29eb7
don't generate any proof obligation for implicit (de facto) exclusiveness
blanchet
parents:
54904
diff
changeset
|
1093 |
disc_eqnss; |
2fdec6c29eb7
don't generate any proof obligation for implicit (de facto) exclusiveness
blanchet
parents:
54904
diff
changeset
|
1094 |
val de_facto_exhaustives = |
2fdec6c29eb7
don't generate any proof obligation for implicit (de facto) exclusiveness
blanchet
parents:
54904
diff
changeset
|
1095 |
map2 (fn b => fn b' => b orelse b') exhaustives syntactic_exhaustives; |
2fdec6c29eb7
don't generate any proof obligation for implicit (de facto) exclusiveness
blanchet
parents:
54904
diff
changeset
|
1096 |
|
54903
c664bd02bf94
internally allow different values for 'exhaustive' for different constructors
blanchet
parents:
54902
diff
changeset
|
1097 |
val nchotomy_goalss = |
54904 | 1098 |
map2 (fn false => K [] | true => single o HOLogic.mk_Trueprop o mk_dnf o map #prems) |
1099 |
de_facto_exhaustives disc_eqnss |
|
54921
862c36b6e57c
avoid schematic variable in goal, which sometimes gets instantiated by tactic
blanchet
parents:
54917
diff
changeset
|
1100 |
|> list_all_fun_args [] |
54903
c664bd02bf94
internally allow different values for 'exhaustive' for different constructors
blanchet
parents:
54902
diff
changeset
|
1101 |
val nchotomy_taut_thmss = |
58634
9f10d82e8188
added parameterized ML antiquotations @{map N}, @{fold N}, @{fold_map N}, @{split_list N};
wenzelm
parents:
58462
diff
changeset
|
1102 |
@{map 5} (fn tac_opt => fn {exhaust_discs = res_exhaust_discs, ...} => |
55008
b5b2e193ca33
use 'disc_exhausts' property both from types on which 'case's take place and on return type
blanchet
parents:
55005
diff
changeset
|
1103 |
fn {code_rhs_opt, ...} :: _ => fn [] => K [] |
b5b2e193ca33
use 'disc_exhausts' property both from types on which 'case's take place and on return type
blanchet
parents:
55005
diff
changeset
|
1104 |
| [goal] => fn true => |
b5b2e193ca33
use 'disc_exhausts' property both from types on which 'case's take place and on return type
blanchet
parents:
55005
diff
changeset
|
1105 |
let |
57983
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57895
diff
changeset
|
1106 |
val (_, _, arg_exhaust_discs, _, _) = |
55400 | 1107 |
case_thms_of_term lthy (the_default Term.dummy code_rhs_opt); |
55008
b5b2e193ca33
use 'disc_exhausts' property both from types on which 'case's take place and on return type
blanchet
parents:
55005
diff
changeset
|
1108 |
in |
59596
c067eba942e7
no quick_and_dirty for goals that may fail + tuned messages
blanchet
parents:
59595
diff
changeset
|
1109 |
[Goal.prove (*no sorry*) lthy [] [] goal (fn {context = ctxt, ...} => |
57983
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57895
diff
changeset
|
1110 |
mk_primcorec_nchotomy_tac ctxt (res_exhaust_discs @ arg_exhaust_discs)) |
55008
b5b2e193ca33
use 'disc_exhausts' property both from types on which 'case's take place and on return type
blanchet
parents:
55005
diff
changeset
|
1111 |
|> Thm.close_derivation] |
b5b2e193ca33
use 'disc_exhausts' property both from types on which 'case's take place and on return type
blanchet
parents:
55005
diff
changeset
|
1112 |
end |
b5b2e193ca33
use 'disc_exhausts' property both from types on which 'case's take place and on return type
blanchet
parents:
55005
diff
changeset
|
1113 |
| false => |
b5b2e193ca33
use 'disc_exhausts' property both from types on which 'case's take place and on return type
blanchet
parents:
55005
diff
changeset
|
1114 |
(case tac_opt of |
b5b2e193ca33
use 'disc_exhausts' property both from types on which 'case's take place and on return type
blanchet
parents:
55005
diff
changeset
|
1115 |
SOME tac => [Goal.prove_sorry lthy [] [] goal tac |> Thm.close_derivation] |
b5b2e193ca33
use 'disc_exhausts' property both from types on which 'case's take place and on return type
blanchet
parents:
55005
diff
changeset
|
1116 |
| NONE => [])) |
55400 | 1117 |
tac_opts corec_specs disc_eqnss nchotomy_goalss syntactic_exhaustives; |
55008
b5b2e193ca33
use 'disc_exhausts' property both from types on which 'case's take place and on return type
blanchet
parents:
55005
diff
changeset
|
1118 |
|
b5b2e193ca33
use 'disc_exhausts' property both from types on which 'case's take place and on return type
blanchet
parents:
55005
diff
changeset
|
1119 |
val syntactic_exhaustives = |
b5b2e193ca33
use 'disc_exhausts' property both from types on which 'case's take place and on return type
blanchet
parents:
55005
diff
changeset
|
1120 |
map (fn disc_eqns => forall (null o #prems orf is_some o #code_rhs_opt) disc_eqns |
b5b2e193ca33
use 'disc_exhausts' property both from types on which 'case's take place and on return type
blanchet
parents:
55005
diff
changeset
|
1121 |
orelse exists #auto_gen disc_eqns) |
b5b2e193ca33
use 'disc_exhausts' property both from types on which 'case's take place and on return type
blanchet
parents:
55005
diff
changeset
|
1122 |
disc_eqnss; |
b5b2e193ca33
use 'disc_exhausts' property both from types on which 'case's take place and on return type
blanchet
parents:
55005
diff
changeset
|
1123 |
|
55009
d4b69107a86a
automatically solve proof obligations produced for code equations
blanchet
parents:
55008
diff
changeset
|
1124 |
val nchotomy_goalss = |
d4b69107a86a
automatically solve proof obligations produced for code equations
blanchet
parents:
55008
diff
changeset
|
1125 |
map2 (fn (NONE, false) => map (rpair []) | _ => K []) (tac_opts ~~ syntactic_exhaustives) |
d4b69107a86a
automatically solve proof obligations produced for code equations
blanchet
parents:
55008
diff
changeset
|
1126 |
nchotomy_goalss; |
d4b69107a86a
automatically solve proof obligations produced for code equations
blanchet
parents:
55008
diff
changeset
|
1127 |
|
d4b69107a86a
automatically solve proof obligations produced for code equations
blanchet
parents:
55008
diff
changeset
|
1128 |
val goalss = nchotomy_goalss @ exclude_goalss; |
54844 | 1129 |
|
55462 | 1130 |
fun prove thmss'' def_infos lthy = |
53654
8b9ea4420f81
prove simp theorems for newly generated definitions
panny
parents:
53411
diff
changeset
|
1131 |
let |
55462 | 1132 |
val def_thms = map (snd o snd) def_infos; |
59275
77cd4992edcd
Add plugin to generate transfer theorem for primrec and primcorec
desharna
parents:
59058
diff
changeset
|
1133 |
val ts = map fst def_infos; |
53654
8b9ea4420f81
prove simp theorems for newly generated definitions
panny
parents:
53411
diff
changeset
|
1134 |
|
54972
5747fdd4ad3b
fix 'primcorec' (as opposed to 'primcorecursive') with 'exhaustive')
blanchet
parents:
54970
diff
changeset
|
1135 |
val (nchotomy_thmss, exclude_thmss) = |
55009
d4b69107a86a
automatically solve proof obligations produced for code equations
blanchet
parents:
55008
diff
changeset
|
1136 |
(map2 append (take actual_nn thmss'') nchotomy_taut_thmss, drop actual_nn thmss''); |
54613 | 1137 |
|
54927
a5a2598f0651
proper name generation to avoid clash with 'P' in user specification
blanchet
parents:
54926
diff
changeset
|
1138 |
val ps = |
a5a2598f0651
proper name generation to avoid clash with 'P' in user specification
blanchet
parents:
54926
diff
changeset
|
1139 |
Variable.variant_frees lthy (maps (maps #fun_args) disc_eqnss) [("P", HOLogic.boolT)]; |
a5a2598f0651
proper name generation to avoid clash with 'P' in user specification
blanchet
parents:
54926
diff
changeset
|
1140 |
|
54903
c664bd02bf94
internally allow different values for 'exhaustive' for different constructors
blanchet
parents:
54902
diff
changeset
|
1141 |
val exhaust_thmss = |
c664bd02bf94
internally allow different values for 'exhaustive' for different constructors
blanchet
parents:
54902
diff
changeset
|
1142 |
map2 (fn false => K [] |
54921
862c36b6e57c
avoid schematic variable in goal, which sometimes gets instantiated by tactic
blanchet
parents:
54917
diff
changeset
|
1143 |
| true => fn disc_eqns as {fun_args, ...} :: _ => |
862c36b6e57c
avoid schematic variable in goal, which sometimes gets instantiated by tactic
blanchet
parents:
54917
diff
changeset
|
1144 |
let |
862c36b6e57c
avoid schematic variable in goal, which sometimes gets instantiated by tactic
blanchet
parents:
54917
diff
changeset
|
1145 |
val p = Bound (length fun_args); |
862c36b6e57c
avoid schematic variable in goal, which sometimes gets instantiated by tactic
blanchet
parents:
54917
diff
changeset
|
1146 |
fun mk_imp_p Qs = Logic.list_implies (Qs, HOLogic.mk_Trueprop p); |
862c36b6e57c
avoid schematic variable in goal, which sometimes gets instantiated by tactic
blanchet
parents:
54917
diff
changeset
|
1147 |
in |
862c36b6e57c
avoid schematic variable in goal, which sometimes gets instantiated by tactic
blanchet
parents:
54917
diff
changeset
|
1148 |
[mk_imp_p (map (mk_imp_p o map HOLogic.mk_Trueprop o #prems) disc_eqns)] |
862c36b6e57c
avoid schematic variable in goal, which sometimes gets instantiated by tactic
blanchet
parents:
54917
diff
changeset
|
1149 |
end) |
54904 | 1150 |
de_facto_exhaustives disc_eqnss |
54927
a5a2598f0651
proper name generation to avoid clash with 'P' in user specification
blanchet
parents:
54926
diff
changeset
|
1151 |
|> list_all_fun_args ps |
58634
9f10d82e8188
added parameterized ML antiquotations @{map N}, @{fold N}, @{fold_map N}, @{split_list N};
wenzelm
parents:
58462
diff
changeset
|
1152 |
|> @{map 3} (fn disc_eqns as {fun_args, ...} :: _ => fn [] => K [] |
54903
c664bd02bf94
internally allow different values for 'exhaustive' for different constructors
blanchet
parents:
54902
diff
changeset
|
1153 |
| [nchotomy_thm] => fn [goal] => |
54923
ffed2452f5f6
instantiate schematics as projections to avoid HOU trouble
blanchet
parents:
54921
diff
changeset
|
1154 |
[mk_primcorec_exhaust_tac lthy ("" (* for "P" *) :: map (fst o dest_Free) fun_args) |
ffed2452f5f6
instantiate schematics as projections to avoid HOU trouble
blanchet
parents:
54921
diff
changeset
|
1155 |
(length disc_eqns) nchotomy_thm |
54951
e25b4d22082b
for code equations that coincide with ctr equations, make sure the usr's input is preserved for both
blanchet
parents:
54948
diff
changeset
|
1156 |
|> K |> Goal.prove_sorry lthy [] [] goal |
54903
c664bd02bf94
internally allow different values for 'exhaustive' for different constructors
blanchet
parents:
54902
diff
changeset
|
1157 |
|> Thm.close_derivation]) |
c664bd02bf94
internally allow different values for 'exhaustive' for different constructors
blanchet
parents:
54902
diff
changeset
|
1158 |
disc_eqnss nchotomy_thmss; |
54921
862c36b6e57c
avoid schematic variable in goal, which sometimes gets instantiated by tactic
blanchet
parents:
54917
diff
changeset
|
1159 |
val nontriv_exhaust_thmss = map (filter_out is_trivial_implies) exhaust_thmss; |
54844 | 1160 |
|
54835 | 1161 |
val excludess' = map (op ~~) (goal_idxss ~~ exclude_thmss); |
1162 |
fun mk_excludesss excludes n = |
|
54973 | 1163 |
fold (fn ((c, c', _), thm) => nth_map c (nth_map c' (K [thm]))) |
54974
d1c76303244e
use correct default for exclude rules to avoid weird tactic failures
blanchet
parents:
54973
diff
changeset
|
1164 |
excludes (map (fn k => replicate k [asm_rl] @ replicate (n - k) []) (0 upto n - 1)); |
54973 | 1165 |
val excludessss = |
1166 |
map2 (fn excludes => mk_excludesss excludes o length o #ctr_specs) |
|
1167 |
(map2 append excludess' taut_thmss) corec_specs; |
|
53654
8b9ea4420f81
prove simp theorems for newly generated definitions
panny
parents:
53411
diff
changeset
|
1168 |
|
54835 | 1169 |
fun prove_disc ({ctr_specs, ...} : corec_spec) excludesss |
54948 | 1170 |
({fun_name, fun_T, fun_args, ctr_no, prems, eqn_pos, ...} : coeqn_data_disc) = |
54272
9d623cada37f
avoid subtle failure in the presence of top sort
blanchet
parents:
54271
diff
changeset
|
1171 |
if Term.aconv_untyped (#disc (nth ctr_specs ctr_no), @{term "\<lambda>x. x = x"}) then |
9d623cada37f
avoid subtle failure in the presence of top sort
blanchet
parents:
54271
diff
changeset
|
1172 |
[] |
9d623cada37f
avoid subtle failure in the presence of top sort
blanchet
parents:
54271
diff
changeset
|
1173 |
else |
53720 | 1174 |
let |
57983
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57895
diff
changeset
|
1175 |
val {disc, corec_disc, ...} = nth ctr_specs ctr_no; |
53720 | 1176 |
val k = 1 + ctr_no; |
1177 |
val m = length prems; |
|
54900 | 1178 |
val goal = |
1179 |
applied_fun_of fun_name fun_T fun_args |
|
1180 |
|> curry betapply disc |
|
53720 | 1181 |
|> HOLogic.mk_Trueprop |
1182 |
|> curry Logic.list_implies (map HOLogic.mk_Trueprop prems) |
|
1183 |
|> curry Logic.list_all (map dest_Free fun_args); |
|
1184 |
in |
|
54900 | 1185 |
if prems = [@{term False}] then |
1186 |
[] |
|
1187 |
else |
|
57983
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57895
diff
changeset
|
1188 |
mk_primcorec_disc_tac lthy def_thms corec_disc k m excludesss |
54951
e25b4d22082b
for code equations that coincide with ctr equations, make sure the usr's input is preserved for both
blanchet
parents:
54948
diff
changeset
|
1189 |
|> K |> Goal.prove_sorry lthy [] [] goal |
54900 | 1190 |
|> Thm.close_derivation |
1191 |
|> pair (#disc (nth ctr_specs ctr_no)) |
|
54948 | 1192 |
|> pair eqn_pos |
54900 | 1193 |
|> single |
53720 | 1194 |
end; |
1195 |
||
57399 | 1196 |
fun prove_sel ({sel_defs, fp_nesting_maps, fp_nesting_map_ident0s, fp_nesting_map_comps, |
57397 | 1197 |
ctr_specs, ...} : corec_spec) (disc_eqns : coeqn_data_disc list) excludesss |
56858 | 1198 |
({fun_name, fun_T, fun_args, ctr, sel, rhs_term, code_rhs_opt, eqn_pos, ...} |
1199 |
: coeqn_data_sel) = |
|
53654
8b9ea4420f81
prove simp theorems for newly generated definitions
panny
parents:
53411
diff
changeset
|
1200 |
let |
58393 | 1201 |
val ctr_spec = the (find_first (curry (op =) ctr o #ctr) ctr_specs); |
54923
ffed2452f5f6
instantiate schematics as projections to avoid HOU trouble
blanchet
parents:
54921
diff
changeset
|
1202 |
val ctr_no = find_index (curry (op =) ctr o #ctr) ctr_specs; |
54067 | 1203 |
val prems = the_default (maps (s_not_conj o #prems) disc_eqns) |
54923
ffed2452f5f6
instantiate schematics as projections to avoid HOU trouble
blanchet
parents:
54921
diff
changeset
|
1204 |
(find_first (curry (op =) ctr_no o #ctr_no) disc_eqns |> Option.map #prems); |
57983
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57895
diff
changeset
|
1205 |
val corec_sel = find_index (curry (op =) sel) (#sels ctr_spec) |
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57895
diff
changeset
|
1206 |
|> nth (#corec_sels ctr_spec); |
53654
8b9ea4420f81
prove simp theorems for newly generated definitions
panny
parents:
53411
diff
changeset
|
1207 |
val k = 1 + ctr_no; |
8b9ea4420f81
prove simp theorems for newly generated definitions
panny
parents:
53411
diff
changeset
|
1208 |
val m = length prems; |
54900 | 1209 |
val goal = |
1210 |
applied_fun_of fun_name fun_T fun_args |
|
53720 | 1211 |
|> curry betapply sel |
1212 |
|> rpair (abstract (List.rev fun_args) rhs_term) |
|
1213 |
|> HOLogic.mk_Trueprop o HOLogic.mk_eq |
|
53654
8b9ea4420f81
prove simp theorems for newly generated definitions
panny
parents:
53411
diff
changeset
|
1214 |
|> curry Logic.list_implies (map HOLogic.mk_Trueprop prems) |
53720 | 1215 |
|> curry Logic.list_all (map dest_Free fun_args); |
57983
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57895
diff
changeset
|
1216 |
val (distincts, _, _, split_sels, split_sel_asms) = case_thms_of_term lthy rhs_term; |
53654
8b9ea4420f81
prove simp theorems for newly generated definitions
panny
parents:
53411
diff
changeset
|
1217 |
in |
57983
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57895
diff
changeset
|
1218 |
mk_primcorec_sel_tac lthy def_thms distincts split_sels split_sel_asms fp_nesting_maps |
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57895
diff
changeset
|
1219 |
fp_nesting_map_ident0s fp_nesting_map_comps corec_sel k m excludesss |
54951
e25b4d22082b
for code equations that coincide with ctr equations, make sure the usr's input is preserved for both
blanchet
parents:
54948
diff
changeset
|
1220 |
|> K |> Goal.prove_sorry lthy [] [] goal |
54176 | 1221 |
|> Thm.close_derivation |
56858 | 1222 |
|> `(is_some code_rhs_opt ? fold_thms lthy sel_defs) (*mildly too aggressive*) |
53720 | 1223 |
|> pair sel |
54948 | 1224 |
|> pair eqn_pos |
53654
8b9ea4420f81
prove simp theorems for newly generated definitions
panny
parents:
53411
diff
changeset
|
1225 |
end; |
8b9ea4420f81
prove simp theorems for newly generated definitions
panny
parents:
53411
diff
changeset
|
1226 |
|
56858 | 1227 |
fun prove_ctr disc_alist sel_alist ({sel_defs, ...} : corec_spec) |
1228 |
(disc_eqns : coeqn_data_disc list) (sel_eqns : coeqn_data_sel list) |
|
1229 |
({ctr, disc, sels, collapse, ...} : corec_ctr_spec) = |
|
54097
92c5bd3b342d
prove user-supplied equations for ctr and code reductions, preserving "let"s, "case"s etc.;
panny
parents:
54074
diff
changeset
|
1230 |
(* don't try to prove theorems when some sel_eqns are missing *) |
54923
ffed2452f5f6
instantiate schematics as projections to avoid HOU trouble
blanchet
parents:
54921
diff
changeset
|
1231 |
if not (exists (curry (op =) ctr o #ctr) disc_eqns) |
ffed2452f5f6
instantiate schematics as projections to avoid HOU trouble
blanchet
parents:
54921
diff
changeset
|
1232 |
andalso not (exists (curry (op =) ctr o #ctr) sel_eqns) |
54097
92c5bd3b342d
prove user-supplied equations for ctr and code reductions, preserving "let"s, "case"s etc.;
panny
parents:
54074
diff
changeset
|
1233 |
orelse |
54923
ffed2452f5f6
instantiate schematics as projections to avoid HOU trouble
blanchet
parents:
54921
diff
changeset
|
1234 |
filter (curry (op =) ctr o #ctr) sel_eqns |
55008
b5b2e193ca33
use 'disc_exhausts' property both from types on which 'case's take place and on return type
blanchet
parents:
55005
diff
changeset
|
1235 |
|> fst o finds (op = o apsnd #sel) sels |
54951
e25b4d22082b
for code equations that coincide with ctr equations, make sure the usr's input is preserved for both
blanchet
parents:
54948
diff
changeset
|
1236 |
|> exists (null o snd) then |
e25b4d22082b
for code equations that coincide with ctr equations, make sure the usr's input is preserved for both
blanchet
parents:
54948
diff
changeset
|
1237 |
[] |
e25b4d22082b
for code equations that coincide with ctr equations, make sure the usr's input is preserved for both
blanchet
parents:
54948
diff
changeset
|
1238 |
else |
53720 | 1239 |
let |
56858 | 1240 |
val (fun_name, fun_T, fun_args, prems, ctr_rhs_opt, code_rhs_opt, eqn_pos) = |
54923
ffed2452f5f6
instantiate schematics as projections to avoid HOU trouble
blanchet
parents:
54921
diff
changeset
|
1241 |
(find_first (curry (op =) ctr o #ctr) disc_eqns, |
ffed2452f5f6
instantiate schematics as projections to avoid HOU trouble
blanchet
parents:
54921
diff
changeset
|
1242 |
find_first (curry (op =) ctr o #ctr) sel_eqns) |
54097
92c5bd3b342d
prove user-supplied equations for ctr and code reductions, preserving "let"s, "case"s etc.;
panny
parents:
54074
diff
changeset
|
1243 |
|>> Option.map (fn x => (#fun_name x, #fun_T x, #fun_args x, #prems x, |
56858 | 1244 |
#ctr_rhs_opt x, #code_rhs_opt x, #eqn_pos x)) |
1245 |
||> Option.map (fn x => (#fun_name x, #fun_T x, #fun_args x, [], |
|
1246 |
#ctr_rhs_opt x, #code_rhs_opt x, #eqn_pos x)) |
|
53722
e176d6d3345f
generate more theorems (e.g. for types with only one constructor)
panny
parents:
53720
diff
changeset
|
1247 |
|> the o merge_options; |
53720 | 1248 |
val m = length prems; |
54900 | 1249 |
val goal = |
56858 | 1250 |
(case ctr_rhs_opt of |
54926
28b621fce2f9
more SML-ish (less Haskell-ish) naming convention
blanchet
parents:
54925
diff
changeset
|
1251 |
SOME rhs => rhs |
28b621fce2f9
more SML-ish (less Haskell-ish) naming convention
blanchet
parents:
54925
diff
changeset
|
1252 |
| NONE => |
28b621fce2f9
more SML-ish (less Haskell-ish) naming convention
blanchet
parents:
54925
diff
changeset
|
1253 |
filter (curry (op =) ctr o #ctr) sel_eqns |
55008
b5b2e193ca33
use 'disc_exhausts' property both from types on which 'case's take place and on return type
blanchet
parents:
55005
diff
changeset
|
1254 |
|> fst o finds (op = o apsnd #sel) sels |
54926
28b621fce2f9
more SML-ish (less Haskell-ish) naming convention
blanchet
parents:
54925
diff
changeset
|
1255 |
|> map (snd #> (fn [x] => (List.rev (#fun_args x), #rhs_term x)) #-> abstract) |
55343 | 1256 |
|> curry Term.list_comb ctr) |
54900 | 1257 |
|> curry mk_Trueprop_eq (applied_fun_of fun_name fun_T fun_args) |
53720 | 1258 |
|> curry Logic.list_implies (map HOLogic.mk_Trueprop prems) |
1259 |
|> curry Logic.list_all (map dest_Free fun_args); |
|
54926
28b621fce2f9
more SML-ish (less Haskell-ish) naming convention
blanchet
parents:
54925
diff
changeset
|
1260 |
val disc_thm_opt = AList.lookup (op =) disc_alist disc; |
56858 | 1261 |
val sel_thms = map (snd o snd) (filter (member (op =) sels o fst) sel_alist); |
53720 | 1262 |
in |
56858 | 1263 |
if prems = [@{term False}] then |
1264 |
[] |
|
1265 |
else |
|
54954 | 1266 |
mk_primcorec_ctr_tac lthy m collapse disc_thm_opt sel_thms |
54951
e25b4d22082b
for code equations that coincide with ctr equations, make sure the usr's input is preserved for both
blanchet
parents:
54948
diff
changeset
|
1267 |
|> K |> Goal.prove_sorry lthy [] [] goal |
56858 | 1268 |
|> is_some code_rhs_opt ? fold_thms lthy sel_defs (*mildly too aggressive*) |
54176 | 1269 |
|> Thm.close_derivation |
54097
92c5bd3b342d
prove user-supplied equations for ctr and code reductions, preserving "let"s, "case"s etc.;
panny
parents:
54074
diff
changeset
|
1270 |
|> pair ctr |
54948 | 1271 |
|> pair eqn_pos |
54097
92c5bd3b342d
prove user-supplied equations for ctr and code reductions, preserving "let"s, "case"s etc.;
panny
parents:
54074
diff
changeset
|
1272 |
|> single |
53876 | 1273 |
end; |
53720 | 1274 |
|
55100 | 1275 |
fun prove_code exhaustive (disc_eqns : coeqn_data_disc list) |
1276 |
(sel_eqns : coeqn_data_sel list) nchotomys ctr_alist ctr_specs = |
|
54098 | 1277 |
let |
54926
28b621fce2f9
more SML-ish (less Haskell-ish) naming convention
blanchet
parents:
54925
diff
changeset
|
1278 |
val fun_data_opt = |
54097
92c5bd3b342d
prove user-supplied equations for ctr and code reductions, preserving "let"s, "case"s etc.;
panny
parents:
54074
diff
changeset
|
1279 |
(find_first (member (op =) (map #ctr ctr_specs) o #ctr) disc_eqns, |
92c5bd3b342d
prove user-supplied equations for ctr and code reductions, preserving "let"s, "case"s etc.;
panny
parents:
54074
diff
changeset
|
1280 |
find_first (member (op =) (map #ctr ctr_specs) o #ctr) sel_eqns) |
54926
28b621fce2f9
more SML-ish (less Haskell-ish) naming convention
blanchet
parents:
54925
diff
changeset
|
1281 |
|>> Option.map (fn x => (#fun_name x, #fun_T x, #fun_args x, #code_rhs_opt x)) |
28b621fce2f9
more SML-ish (less Haskell-ish) naming convention
blanchet
parents:
54925
diff
changeset
|
1282 |
||> Option.map (fn x => (#fun_name x, #fun_T x, #fun_args x, #code_rhs_opt x)) |
54591
c822230fd22b
prevent exception when equations for a function are missing;
panny
parents:
54279
diff
changeset
|
1283 |
|> merge_options; |
c822230fd22b
prevent exception when equations for a function are missing;
panny
parents:
54279
diff
changeset
|
1284 |
in |
54926
28b621fce2f9
more SML-ish (less Haskell-ish) naming convention
blanchet
parents:
54925
diff
changeset
|
1285 |
(case fun_data_opt of |
54591
c822230fd22b
prevent exception when equations for a function are missing;
panny
parents:
54279
diff
changeset
|
1286 |
NONE => [] |
54926
28b621fce2f9
more SML-ish (less Haskell-ish) naming convention
blanchet
parents:
54925
diff
changeset
|
1287 |
| SOME (fun_name, fun_T, fun_args, rhs_opt) => |
54591
c822230fd22b
prevent exception when equations for a function are missing;
panny
parents:
54279
diff
changeset
|
1288 |
let |
c822230fd22b
prevent exception when equations for a function are missing;
panny
parents:
54279
diff
changeset
|
1289 |
val bound_Ts = List.rev (map fastype_of fun_args); |
54173 | 1290 |
|
54900 | 1291 |
val lhs = applied_fun_of fun_name fun_T fun_args; |
54926
28b621fce2f9
more SML-ish (less Haskell-ish) naming convention
blanchet
parents:
54925
diff
changeset
|
1292 |
val rhs_info_opt = |
28b621fce2f9
more SML-ish (less Haskell-ish) naming convention
blanchet
parents:
54925
diff
changeset
|
1293 |
(case rhs_opt of |
54591
c822230fd22b
prevent exception when equations for a function are missing;
panny
parents:
54279
diff
changeset
|
1294 |
SOME rhs => |
c822230fd22b
prevent exception when equations for a function are missing;
panny
parents:
54279
diff
changeset
|
1295 |
let |
c822230fd22b
prevent exception when equations for a function are missing;
panny
parents:
54279
diff
changeset
|
1296 |
val raw_rhs = expand_corec_code_rhs lthy has_call bound_Ts rhs; |
c822230fd22b
prevent exception when equations for a function are missing;
panny
parents:
54279
diff
changeset
|
1297 |
val cond_ctrs = |
c822230fd22b
prevent exception when equations for a function are missing;
panny
parents:
54279
diff
changeset
|
1298 |
fold_rev_corec_code_rhs lthy (K oo (cons oo pair)) bound_Ts raw_rhs []; |
54978
afc156c7e4f7
cope gracefully with missing ctr equations by plugging in 'False ==> ...'
blanchet
parents:
54976
diff
changeset
|
1299 |
val ctr_thms = |
afc156c7e4f7
cope gracefully with missing ctr equations by plugging in 'False ==> ...'
blanchet
parents:
54976
diff
changeset
|
1300 |
map (the_default FalseE o AList.lookup (op =) ctr_alist o snd) cond_ctrs; |
54905
2fdec6c29eb7
don't generate any proof obligation for implicit (de facto) exclusiveness
blanchet
parents:
54904
diff
changeset
|
1301 |
in SOME (false, rhs, raw_rhs, ctr_thms) end |
54591
c822230fd22b
prevent exception when equations for a function are missing;
panny
parents:
54279
diff
changeset
|
1302 |
| NONE => |
54097
92c5bd3b342d
prove user-supplied equations for ctr and code reductions, preserving "let"s, "case"s etc.;
panny
parents:
54074
diff
changeset
|
1303 |
let |
55100 | 1304 |
fun prove_code_ctr ({ctr, sels, ...} : corec_ctr_spec) = |
56858 | 1305 |
if not (exists (curry (op =) ctr o fst) ctr_alist) then |
1306 |
NONE |
|
1307 |
else |
|
54591
c822230fd22b
prevent exception when equations for a function are missing;
panny
parents:
54279
diff
changeset
|
1308 |
let |
54923
ffed2452f5f6
instantiate schematics as projections to avoid HOU trouble
blanchet
parents:
54921
diff
changeset
|
1309 |
val prems = find_first (curry (op =) ctr o #ctr) disc_eqns |
54591
c822230fd22b
prevent exception when equations for a function are missing;
panny
parents:
54279
diff
changeset
|
1310 |
|> Option.map #prems |> the_default []; |
c822230fd22b
prevent exception when equations for a function are missing;
panny
parents:
54279
diff
changeset
|
1311 |
val t = |
54923
ffed2452f5f6
instantiate schematics as projections to avoid HOU trouble
blanchet
parents:
54921
diff
changeset
|
1312 |
filter (curry (op =) ctr o #ctr) sel_eqns |
55008
b5b2e193ca33
use 'disc_exhausts' property both from types on which 'case's take place and on return type
blanchet
parents:
55005
diff
changeset
|
1313 |
|> fst o finds (op = o apsnd #sel) sels |
54591
c822230fd22b
prevent exception when equations for a function are missing;
panny
parents:
54279
diff
changeset
|
1314 |
|> map (snd #> (fn [x] => (List.rev (#fun_args x), #rhs_term x)) |
c822230fd22b
prevent exception when equations for a function are missing;
panny
parents:
54279
diff
changeset
|
1315 |
#-> abstract) |
55343 | 1316 |
|> curry Term.list_comb ctr; |
54591
c822230fd22b
prevent exception when equations for a function are missing;
panny
parents:
54279
diff
changeset
|
1317 |
in |
c822230fd22b
prevent exception when equations for a function are missing;
panny
parents:
54279
diff
changeset
|
1318 |
SOME (prems, t) |
c822230fd22b
prevent exception when equations for a function are missing;
panny
parents:
54279
diff
changeset
|
1319 |
end; |
54926
28b621fce2f9
more SML-ish (less Haskell-ish) naming convention
blanchet
parents:
54925
diff
changeset
|
1320 |
val ctr_conds_argss_opt = map prove_code_ctr ctr_specs; |
54905
2fdec6c29eb7
don't generate any proof obligation for implicit (de facto) exclusiveness
blanchet
parents:
54904
diff
changeset
|
1321 |
val exhaustive_code = |
2fdec6c29eb7
don't generate any proof obligation for implicit (de facto) exclusiveness
blanchet
parents:
54904
diff
changeset
|
1322 |
exhaustive |
54948 | 1323 |
orelse exists (is_some andf (null o fst o the)) ctr_conds_argss_opt |
54926
28b621fce2f9
more SML-ish (less Haskell-ish) naming convention
blanchet
parents:
54925
diff
changeset
|
1324 |
orelse forall is_some ctr_conds_argss_opt |
54905
2fdec6c29eb7
don't generate any proof obligation for implicit (de facto) exclusiveness
blanchet
parents:
54904
diff
changeset
|
1325 |
andalso exists #auto_gen disc_eqns; |
2fdec6c29eb7
don't generate any proof obligation for implicit (de facto) exclusiveness
blanchet
parents:
54904
diff
changeset
|
1326 |
val rhs = |
2fdec6c29eb7
don't generate any proof obligation for implicit (de facto) exclusiveness
blanchet
parents:
54904
diff
changeset
|
1327 |
(if exhaustive_code then |
54926
28b621fce2f9
more SML-ish (less Haskell-ish) naming convention
blanchet
parents:
54925
diff
changeset
|
1328 |
split_last (map_filter I ctr_conds_argss_opt) ||> snd |
54905
2fdec6c29eb7
don't generate any proof obligation for implicit (de facto) exclusiveness
blanchet
parents:
54904
diff
changeset
|
1329 |
else |
2fdec6c29eb7
don't generate any proof obligation for implicit (de facto) exclusiveness
blanchet
parents:
54904
diff
changeset
|
1330 |
Const (@{const_name Code.abort}, @{typ String.literal} --> |
55966 | 1331 |
(HOLogic.unitT --> body_type fun_T) --> body_type fun_T) $ |
54905
2fdec6c29eb7
don't generate any proof obligation for implicit (de facto) exclusiveness
blanchet
parents:
54904
diff
changeset
|
1332 |
HOLogic.mk_literal fun_name $ |
55966 | 1333 |
absdummy HOLogic.unitT (incr_boundvars 1 lhs) |
54926
28b621fce2f9
more SML-ish (less Haskell-ish) naming convention
blanchet
parents:
54925
diff
changeset
|
1334 |
|> pair (map_filter I ctr_conds_argss_opt)) |
54905
2fdec6c29eb7
don't generate any proof obligation for implicit (de facto) exclusiveness
blanchet
parents:
54904
diff
changeset
|
1335 |
|-> fold_rev (fn (prems, u) => mk_If (s_conjs prems) u) |
54591
c822230fd22b
prevent exception when equations for a function are missing;
panny
parents:
54279
diff
changeset
|
1336 |
in |
54905
2fdec6c29eb7
don't generate any proof obligation for implicit (de facto) exclusiveness
blanchet
parents:
54904
diff
changeset
|
1337 |
SOME (exhaustive_code, rhs, rhs, map snd ctr_alist) |
54591
c822230fd22b
prevent exception when equations for a function are missing;
panny
parents:
54279
diff
changeset
|
1338 |
end); |
c822230fd22b
prevent exception when equations for a function are missing;
panny
parents:
54279
diff
changeset
|
1339 |
in |
54926
28b621fce2f9
more SML-ish (less Haskell-ish) naming convention
blanchet
parents:
54925
diff
changeset
|
1340 |
(case rhs_info_opt of |
54591
c822230fd22b
prevent exception when equations for a function are missing;
panny
parents:
54279
diff
changeset
|
1341 |
NONE => [] |
54905
2fdec6c29eb7
don't generate any proof obligation for implicit (de facto) exclusiveness
blanchet
parents:
54904
diff
changeset
|
1342 |
| SOME (exhaustive_code, rhs, raw_rhs, ctr_thms) => |
54591
c822230fd22b
prevent exception when equations for a function are missing;
panny
parents:
54279
diff
changeset
|
1343 |
let |
59582 | 1344 |
val ms = map (Logic.count_prems o Thm.prop_of) ctr_thms; |
54900 | 1345 |
val (raw_goal, goal) = (raw_rhs, rhs) |
59058
a78612c67ec0
renamed "pairself" to "apply2", in accordance to @{apply 2};
wenzelm
parents:
59044
diff
changeset
|
1346 |
|> apply2 (curry mk_Trueprop_eq (applied_fun_of fun_name fun_T fun_args) |
54591
c822230fd22b
prevent exception when equations for a function are missing;
panny
parents:
54279
diff
changeset
|
1347 |
#> curry Logic.list_all (map dest_Free fun_args)); |
57983
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57895
diff
changeset
|
1348 |
val (distincts, discIs, _, split_sels, split_sel_asms) = |
55400 | 1349 |
case_thms_of_term lthy raw_rhs; |
54098 | 1350 |
|
57983
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57895
diff
changeset
|
1351 |
val raw_code_thm = mk_primcorec_raw_code_tac lthy distincts discIs split_sels |
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57895
diff
changeset
|
1352 |
split_sel_asms ms ctr_thms |
54905
2fdec6c29eb7
don't generate any proof obligation for implicit (de facto) exclusiveness
blanchet
parents:
54904
diff
changeset
|
1353 |
(if exhaustive_code then try the_single nchotomys else NONE) |
54951
e25b4d22082b
for code equations that coincide with ctr equations, make sure the usr's input is preserved for both
blanchet
parents:
54948
diff
changeset
|
1354 |
|> K |> Goal.prove_sorry lthy [] [] raw_goal |
54591
c822230fd22b
prevent exception when equations for a function are missing;
panny
parents:
54279
diff
changeset
|
1355 |
|> Thm.close_derivation; |
c822230fd22b
prevent exception when equations for a function are missing;
panny
parents:
54279
diff
changeset
|
1356 |
in |
57983
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57895
diff
changeset
|
1357 |
mk_primcorec_code_tac lthy distincts split_sels raw_code_thm |
54951
e25b4d22082b
for code equations that coincide with ctr equations, make sure the usr's input is preserved for both
blanchet
parents:
54948
diff
changeset
|
1358 |
|> K |> Goal.prove_sorry lthy [] [] goal |
54591
c822230fd22b
prevent exception when equations for a function are missing;
panny
parents:
54279
diff
changeset
|
1359 |
|> Thm.close_derivation |
c822230fd22b
prevent exception when equations for a function are missing;
panny
parents:
54279
diff
changeset
|
1360 |
|> single |
c822230fd22b
prevent exception when equations for a function are missing;
panny
parents:
54279
diff
changeset
|
1361 |
end) |
54173 | 1362 |
end) |
1363 |
end; |
|
54097
92c5bd3b342d
prove user-supplied equations for ctr and code reductions, preserving "let"s, "case"s etc.;
panny
parents:
54074
diff
changeset
|
1364 |
|
58634
9f10d82e8188
added parameterized ML antiquotations @{map N}, @{fold N}, @{fold_map N}, @{split_list N};
wenzelm
parents:
58462
diff
changeset
|
1365 |
val disc_alistss = @{map 3} (map oo prove_disc) corec_specs excludessss disc_eqnss; |
54948 | 1366 |
val disc_alists = map (map snd o flat) disc_alistss; |
58634
9f10d82e8188
added parameterized ML antiquotations @{map N}, @{fold N}, @{fold_map N}, @{split_list N};
wenzelm
parents:
58462
diff
changeset
|
1367 |
val sel_alists = @{map 4} (map ooo prove_sel) corec_specs disc_eqnss excludessss sel_eqnss; |
55870 | 1368 |
val disc_thmss = map (map snd o sort_list_duplicates o flat) disc_alistss; |
54948 | 1369 |
val disc_thmsss' = map (map (map (snd o snd))) disc_alistss; |
56858 | 1370 |
val sel_thmss = map (map (fst o snd) o sort_list_duplicates) sel_alists; |
54097
92c5bd3b342d
prove user-supplied equations for ctr and code reductions, preserving "let"s, "case"s etc.;
panny
parents:
54074
diff
changeset
|
1371 |
|
54959
30ded82ff806
fixed 'disc_iff' tactic in the case where different equations use different variable names for the function arguments
blanchet
parents:
54958
diff
changeset
|
1372 |
fun prove_disc_iff ({ctr_specs, ...} : corec_spec) exhaust_thms disc_thmss' |
30ded82ff806
fixed 'disc_iff' tactic in the case where different equations use different variable names for the function arguments
blanchet
parents:
54958
diff
changeset
|
1373 |
(({fun_args = exhaust_fun_args, ...} : coeqn_data_disc) :: _) disc_thms |
54948 | 1374 |
({fun_name, fun_T, fun_args, ctr_no, prems, eqn_pos, ...} : coeqn_data_disc) = |
55870 | 1375 |
if null exhaust_thms orelse null disc_thms then |
54900 | 1376 |
[] |
1377 |
else |
|
1378 |
let |
|
57983
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57895
diff
changeset
|
1379 |
val {disc, distinct_discss, ...} = nth ctr_specs ctr_no; |
54900 | 1380 |
val goal = |
1381 |
mk_Trueprop_eq (applied_fun_of fun_name fun_T fun_args |> curry betapply disc, |
|
1382 |
mk_conjs prems) |
|
1383 |
|> curry Logic.list_all (map dest_Free fun_args); |
|
1384 |
in |
|
54969 | 1385 |
mk_primcorec_disc_iff_tac lthy (map (fst o dest_Free) exhaust_fun_args) |
57983
6edc3529bb4e
reordered some (co)datatype property names for more consistency
blanchet
parents:
57895
diff
changeset
|
1386 |
(the_single exhaust_thms) disc_thms disc_thmss' (flat distinct_discss) |
54969 | 1387 |
|> K |> Goal.prove_sorry lthy [] [] goal |
1388 |
|> Thm.close_derivation |
|
55859 | 1389 |
|> fold (fn rule => perhaps (try (fn thm => Meson.first_order_resolve thm rule))) |
54969 | 1390 |
@{thms eqTrueE eq_False[THEN iffD1] notnotD} |
1391 |
|> pair eqn_pos |
|
1392 |
|> single |
|
54900 | 1393 |
end; |
1394 |
||
58634
9f10d82e8188
added parameterized ML antiquotations @{map N}, @{fold N}, @{fold_map N}, @{split_list N};
wenzelm
parents:
58462
diff
changeset
|
1395 |
val disc_iff_thmss = @{map 6} (flat ooo map2 oooo prove_disc_iff) corec_specs exhaust_thmss |
54959
30ded82ff806
fixed 'disc_iff' tactic in the case where different equations use different variable names for the function arguments
blanchet
parents:
54958
diff
changeset
|
1396 |
disc_thmsss' disc_eqnss disc_thmsss' disc_eqnss |
55870 | 1397 |
|> map sort_list_duplicates; |
54900 | 1398 |
|
58634
9f10d82e8188
added parameterized ML antiquotations @{map N}, @{fold N}, @{fold_map N}, @{split_list N};
wenzelm
parents:
58462
diff
changeset
|
1399 |
val ctr_alists = @{map 6} (fn disc_alist => maps oooo prove_ctr disc_alist) disc_alists |
56858 | 1400 |
(map (map snd) sel_alists) corec_specs disc_eqnss sel_eqnss ctr_specss; |
59043 | 1401 |
val ctr_thmss0 = map (map snd) ctr_alists; |
59058
a78612c67ec0
renamed "pairself" to "apply2", in accordance to @{apply 2};
wenzelm
parents:
59044
diff
changeset
|
1402 |
val ctr_thmss = map (map (snd o snd) o sort (int_ord o apply2 fst)) ctr_alists; |
54097
92c5bd3b342d
prove user-supplied equations for ctr and code reductions, preserving "let"s, "case"s etc.;
panny
parents:
54074
diff
changeset
|
1403 |
|
58634
9f10d82e8188
added parameterized ML antiquotations @{map N}, @{fold N}, @{fold_map N}, @{split_list N};
wenzelm
parents:
58462
diff
changeset
|
1404 |
val code_thmss = |
59043 | 1405 |
@{map 6} prove_code exhaustives disc_eqnss sel_eqnss nchotomy_thmss ctr_thmss0 ctr_specss; |
53791 | 1406 |
|
54968
baa2baf29eff
use 'disc_iff' as simp rules whenever possible + clean up '= True', '= False', etc.
blanchet
parents:
54967
diff
changeset
|
1407 |
val disc_iff_or_disc_thmss = |
baa2baf29eff
use 'disc_iff' as simp rules whenever possible + clean up '= True', '= False', etc.
blanchet
parents:
54967
diff
changeset
|
1408 |
map2 (fn [] => I | disc_iffs => K disc_iffs) disc_iff_thmss disc_thmss; |
baa2baf29eff
use 'disc_iff' as simp rules whenever possible + clean up '= True', '= False', etc.
blanchet
parents:
54967
diff
changeset
|
1409 |
val simp_thmss = map2 append disc_iff_or_disc_thmss sel_thmss; |
53795 | 1410 |
|
53797 | 1411 |
val common_name = mk_common_name fun_names; |
1412 |
||
59283 | 1413 |
val code_attrs = if plugins code_plugin then [Code.add_default_eqn_attrib] else []; |
1414 |
||
55860 | 1415 |
val anonymous_notes = |
1416 |
[(flat disc_iff_or_disc_thmss, simp_attrs)] |
|
1417 |
|> map (fn (thms, attrs) => ((Binding.empty, attrs), [(thms, [])])); |
|
1418 |
||
58283
71d74e641538
preserve case names in '(co)induct' theorems generated by prim(co)rec'
blanchet
parents:
58223
diff
changeset
|
1419 |
val common_notes = |
71d74e641538
preserve case names in '(co)induct' theorems generated by prim(co)rec'
blanchet
parents:
58223
diff
changeset
|
1420 |
[(coinductN, if n2m then [coinduct_thm] else [], common_coinduct_attrs), |
58286 | 1421 |
(coinduct_strongN, if n2m then [coinduct_strong_thm] else [], common_coinduct_attrs)] |
58283
71d74e641538
preserve case names in '(co)induct' theorems generated by prim(co)rec'
blanchet
parents:
58223
diff
changeset
|
1422 |
|> filter_out (null o #2) |
71d74e641538
preserve case names in '(co)induct' theorems generated by prim(co)rec'
blanchet
parents:
58223
diff
changeset
|
1423 |
|> map (fn (thmN, thms, attrs) => |
71d74e641538
preserve case names in '(co)induct' theorems generated by prim(co)rec'
blanchet
parents:
58223
diff
changeset
|
1424 |
((Binding.qualify true common_name (Binding.name thmN), attrs), [(thms, [])])); |
71d74e641538
preserve case names in '(co)induct' theorems generated by prim(co)rec'
blanchet
parents:
58223
diff
changeset
|
1425 |
|
53791 | 1426 |
val notes = |
58283
71d74e641538
preserve case names in '(co)induct' theorems generated by prim(co)rec'
blanchet
parents:
58223
diff
changeset
|
1427 |
[(coinductN, map (if n2m then single else K []) coinduct_thms, coinduct_attrs), |
71d74e641538
preserve case names in '(co)induct' theorems generated by prim(co)rec'
blanchet
parents:
58223
diff
changeset
|
1428 |
(coinduct_strongN, map (if n2m then single else K []) coinduct_strong_thms, |
71d74e641538
preserve case names in '(co)induct' theorems generated by prim(co)rec'
blanchet
parents:
58223
diff
changeset
|
1429 |
coinduct_attrs), |
59283 | 1430 |
(codeN, code_thmss, code_attrs @ nitpicksimp_attrs), |
53797 | 1431 |
(ctrN, ctr_thmss, []), |
55860 | 1432 |
(discN, disc_thmss, []), |
54900 | 1433 |
(disc_iffN, disc_iff_thmss, []), |
54835 | 1434 |
(excludeN, exclude_thmss, []), |
54909 | 1435 |
(exhaustN, nontriv_exhaust_thmss, []), |
53795 | 1436 |
(selN, sel_thmss, simp_attrs), |
58283
71d74e641538
preserve case names in '(co)induct' theorems generated by prim(co)rec'
blanchet
parents:
58223
diff
changeset
|
1437 |
(simpsN, simp_thmss, [])] |
53791 | 1438 |
|> maps (fn (thmN, thmss, attrs) => |
1439 |
map2 (fn fun_name => fn thms => |
|
1440 |
((Binding.qualify true fun_name (Binding.name thmN), attrs), [(thms, [])])) |
|
53830
ed2eb7df2aac
don't note more induction principles than there are functions + tuning
blanchet
parents:
53822
diff
changeset
|
1441 |
fun_names (take actual_nn thmss)) |
53791 | 1442 |
|> filter_out (null o fst o hd o snd); |
53654
8b9ea4420f81
prove simp theorems for newly generated definitions
panny
parents:
53411
diff
changeset
|
1443 |
in |
55462 | 1444 |
lthy |
1445 |
|> Spec_Rules.add Spec_Rules.Equational (map fst def_infos, flat sel_thmss) |
|
1446 |
|> Spec_Rules.add Spec_Rules.Equational (map fst def_infos, flat ctr_thmss) |
|
1447 |
|> Spec_Rules.add Spec_Rules.Equational (map fst def_infos, flat code_thmss) |
|
58283
71d74e641538
preserve case names in '(co)induct' theorems generated by prim(co)rec'
blanchet
parents:
58223
diff
changeset
|
1448 |
|> Local_Theory.notes (anonymous_notes @ common_notes @ notes) |
55462 | 1449 |
|> snd |
59275
77cd4992edcd
Add plugin to generate transfer theorem for primrec and primcorec
desharna
parents:
59058
diff
changeset
|
1450 |
|> (fn lthy => |
77cd4992edcd
Add plugin to generate transfer theorem for primrec and primcorec
desharna
parents:
59058
diff
changeset
|
1451 |
let |
77cd4992edcd
Add plugin to generate transfer theorem for primrec and primcorec
desharna
parents:
59058
diff
changeset
|
1452 |
val phi = Local_Theory.target_morphism lthy; |
77cd4992edcd
Add plugin to generate transfer theorem for primrec and primcorec
desharna
parents:
59058
diff
changeset
|
1453 |
val Ts = take actual_nn (map #T corec_specs); |
59281 | 1454 |
val fp_rec_sugar = |
1455 |
{transfers = transfers, fun_names = fun_names, funs = map (Morphism.term phi) ts, |
|
1456 |
fun_defs = Morphism.fact phi def_thms, fpTs = Ts}; |
|
59275
77cd4992edcd
Add plugin to generate transfer theorem for primrec and primcorec
desharna
parents:
59058
diff
changeset
|
1457 |
in |
59281 | 1458 |
interpret_gfp_rec_sugar plugins fp_rec_sugar lthy |
59275
77cd4992edcd
Add plugin to generate transfer theorem for primrec and primcorec
desharna
parents:
59058
diff
changeset
|
1459 |
end) |
53654
8b9ea4420f81
prove simp theorems for newly generated definitions
panny
parents:
53411
diff
changeset
|
1460 |
end; |
59281 | 1461 |
|
53822 | 1462 |
fun after_qed thmss' = fold_map Local_Theory.define defs #-> prove thmss'; |
53303
ae49b835ca01
moved files related to "primrec_new", "primcorec", and "datatype_compat" from bitbucket co-rec repository
blanchet
parents:
diff
changeset
|
1463 |
in |
54177 | 1464 |
(goalss, after_qed, lthy') |
53822 | 1465 |
end; |
53303
ae49b835ca01
moved files related to "primrec_new", "primcorec", and "datatype_compat" from bitbucket co-rec repository
blanchet
parents:
diff
changeset
|
1466 |
|
56945 | 1467 |
fun add_primcorec_ursive_cmd auto opts (raw_fixes, raw_specs_of) lthy = |
53303
ae49b835ca01
moved files related to "primrec_new", "primcorec", and "datatype_compat" from bitbucket co-rec repository
blanchet
parents:
diff
changeset
|
1468 |
let |
54926
28b621fce2f9
more SML-ish (less Haskell-ish) naming convention
blanchet
parents:
54925
diff
changeset
|
1469 |
val (raw_specs, of_specs_opt) = |
56945 | 1470 |
split_list raw_specs_of ||> map (Option.map (Syntax.read_term lthy)); |
1471 |
val (fixes, specs) = fst (Specification.read_spec raw_fixes raw_specs lthy); |
|
53303
ae49b835ca01
moved files related to "primrec_new", "primcorec", and "datatype_compat" from bitbucket co-rec repository
blanchet
parents:
diff
changeset
|
1472 |
in |
55009
d4b69107a86a
automatically solve proof obligations produced for code equations
blanchet
parents:
55008
diff
changeset
|
1473 |
add_primcorec_ursive auto opts fixes specs of_specs_opt lthy |
59594 | 1474 |
end; |
53822 | 1475 |
|
54177 | 1476 |
val add_primcorecursive_cmd = (fn (goalss, after_qed, lthy) => |
1477 |
lthy |
|
1478 |
|> Proof.theorem NONE after_qed goalss |
|
54883
dd04a8b654fc
proper context for norm_hhf and derived operations;
wenzelm
parents:
54844
diff
changeset
|
1479 |
|> Proof.refine (Method.primitive_text (K I)) |
55009
d4b69107a86a
automatically solve proof obligations produced for code equations
blanchet
parents:
55008
diff
changeset
|
1480 |
|> Seq.hd) ooo add_primcorec_ursive_cmd false; |
54177 | 1481 |
|
1482 |
val add_primcorec_cmd = (fn (goalss, after_qed, lthy) => |
|
1483 |
lthy |
|
1484 |
|> after_qed (map (fn [] => [] |
|
54972
5747fdd4ad3b
fix 'primcorec' (as opposed to 'primcorecursive') with 'exhaustive')
blanchet
parents:
54970
diff
changeset
|
1485 |
| _ => error "\"auto\" failed -- use \"primcorecursive\" instead of \"primcorec\"") |
55009
d4b69107a86a
automatically solve proof obligations produced for code equations
blanchet
parents:
55008
diff
changeset
|
1486 |
goalss)) ooo add_primcorec_ursive_cmd true; |
53303
ae49b835ca01
moved files related to "primrec_new", "primcorec", and "datatype_compat" from bitbucket co-rec repository
blanchet
parents:
diff
changeset
|
1487 |
|
59281 | 1488 |
val corec_option_parser = Parse.group (K "option") |
1489 |
(Plugin_Name.parse_filter >> Plugins_Option |
|
1490 |
|| Parse.reserved "sequential" >> K Sequential_Option |
|
59279 | 1491 |
|| Parse.reserved "exhaustive" >> K Exhaustive_Option |
1492 |
|| Parse.reserved "transfer" >> K Transfer_Option); |
|
55529 | 1493 |
|
58394
f0c51576964a
more honest 'primcorec' -- don't parse a theorem name that is then ignored
blanchet
parents:
58393
diff
changeset
|
1494 |
(* FIXME: should use "Parse_Spec.spec" instead of "Parse.prop" and honor binding *) |
55529 | 1495 |
val where_alt_specs_of_parser = Parse.where_ |-- Parse.!!! (Parse.enum1 "|" |
58394
f0c51576964a
more honest 'primcorec' -- don't parse a theorem name that is then ignored
blanchet
parents:
58393
diff
changeset
|
1496 |
((Parse.prop >> pair Attrib.empty_binding) -- Scan.option (Parse.reserved "of" |-- Parse.const))); |
55529 | 1497 |
|
1498 |
val _ = Outer_Syntax.local_theory_to_proof @{command_spec "primcorecursive"} |
|
1499 |
"define primitive corecursive functions" |
|
1500 |
((Scan.optional (@{keyword "("} |-- |
|
59281 | 1501 |
Parse.!!! (Parse.list1 corec_option_parser) --| @{keyword ")"}) []) -- |
55529 | 1502 |
(Parse.fixes -- where_alt_specs_of_parser) >> uncurry add_primcorecursive_cmd); |
1503 |
||
1504 |
val _ = Outer_Syntax.local_theory @{command_spec "primcorec"} |
|
1505 |
"define primitive corecursive functions" |
|
59281 | 1506 |
((Scan.optional (@{keyword "("} |-- Parse.!!! (Parse.list1 corec_option_parser) |
1507 |
--| @{keyword ")"}) []) -- |
|
55529 | 1508 |
(Parse.fixes -- where_alt_specs_of_parser) >> uncurry add_primcorec_cmd); |
1509 |
||
59281 | 1510 |
val _ = Theory.setup (gfp_rec_sugar_interpretation Transfer_BNF.transfer_plugin |
1511 |
gfp_rec_sugar_transfer_interpretation); |
|
59275
77cd4992edcd
Add plugin to generate transfer theorem for primrec and primcorec
desharna
parents:
59058
diff
changeset
|
1512 |
|
53303
ae49b835ca01
moved files related to "primrec_new", "primcorec", and "datatype_compat" from bitbucket co-rec repository
blanchet
parents:
diff
changeset
|
1513 |
end; |