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