author | wenzelm |
Tue, 11 Dec 2001 16:00:26 +0100 | |
changeset 12466 | 5f4182667032 |
parent 12203 | 571d9c288640 |
child 13462 | 56610e2ba220 |
permissions | -rw-r--r-- |
516 | 1 |
(* Title: ZF/Datatype.ML |
0 | 2 |
ID: $Id$ |
516 | 3 |
Author: Lawrence C Paulson, Cambridge University Computer Laboratory |
0 | 4 |
Copyright 1993 University of Cambridge |
5 |
||
120 | 6 |
(Co)Datatype Definitions for Zermelo-Fraenkel Set Theory |
0 | 7 |
*) |
8 |
||
9 |
||
6053
8a1059aa01f0
new inductive, datatype and primrec packages, etc.
paulson
parents:
1461
diff
changeset
|
10 |
(*Typechecking rules for most datatypes involving univ*) |
8a1059aa01f0
new inductive, datatype and primrec packages, etc.
paulson
parents:
1461
diff
changeset
|
11 |
structure Data_Arg = |
8a1059aa01f0
new inductive, datatype and primrec packages, etc.
paulson
parents:
1461
diff
changeset
|
12 |
struct |
8a1059aa01f0
new inductive, datatype and primrec packages, etc.
paulson
parents:
1461
diff
changeset
|
13 |
val intrs = |
8a1059aa01f0
new inductive, datatype and primrec packages, etc.
paulson
parents:
1461
diff
changeset
|
14 |
[SigmaI, InlI, InrI, |
8a1059aa01f0
new inductive, datatype and primrec packages, etc.
paulson
parents:
1461
diff
changeset
|
15 |
Pair_in_univ, Inl_in_univ, Inr_in_univ, |
8a1059aa01f0
new inductive, datatype and primrec packages, etc.
paulson
parents:
1461
diff
changeset
|
16 |
zero_in_univ, A_into_univ, nat_into_univ, UnCI]; |
0 | 17 |
|
6112 | 18 |
|
19 |
val elims = [make_elim InlD, make_elim InrD, (*for mutual recursion*) |
|
12134 | 20 |
SigmaE, sumE]; (*allows * and + in spec*) |
516 | 21 |
end; |
22 |
||
23 |
||
6053
8a1059aa01f0
new inductive, datatype and primrec packages, etc.
paulson
parents:
1461
diff
changeset
|
24 |
structure Data_Package = |
12183 | 25 |
Add_datatype_def_Fun |
26 |
(structure Fp=Lfp and Pr=Standard_Prod and CP=Standard_CP |
|
27 |
and Su=Standard_Sum |
|
28 |
and Ind_Package = Ind_Package |
|
29 |
and Datatype_Arg = Data_Arg |
|
30 |
val coind = false); |
|
516 | 31 |
|
32 |
||
6053
8a1059aa01f0
new inductive, datatype and primrec packages, etc.
paulson
parents:
1461
diff
changeset
|
33 |
(*Typechecking rules for most codatatypes involving quniv*) |
8a1059aa01f0
new inductive, datatype and primrec packages, etc.
paulson
parents:
1461
diff
changeset
|
34 |
structure CoData_Arg = |
8a1059aa01f0
new inductive, datatype and primrec packages, etc.
paulson
parents:
1461
diff
changeset
|
35 |
struct |
8a1059aa01f0
new inductive, datatype and primrec packages, etc.
paulson
parents:
1461
diff
changeset
|
36 |
val intrs = |
8a1059aa01f0
new inductive, datatype and primrec packages, etc.
paulson
parents:
1461
diff
changeset
|
37 |
[QSigmaI, QInlI, QInrI, |
8a1059aa01f0
new inductive, datatype and primrec packages, etc.
paulson
parents:
1461
diff
changeset
|
38 |
QPair_in_quniv, QInl_in_quniv, QInr_in_quniv, |
8a1059aa01f0
new inductive, datatype and primrec packages, etc.
paulson
parents:
1461
diff
changeset
|
39 |
zero_in_quniv, A_into_quniv, nat_into_quniv, UnCI]; |
516 | 40 |
|
6112 | 41 |
val elims = [make_elim QInlD, make_elim QInrD, (*for mutual recursion*) |
12134 | 42 |
QSigmaE, qsumE]; (*allows * and + in spec*) |
6053
8a1059aa01f0
new inductive, datatype and primrec packages, etc.
paulson
parents:
1461
diff
changeset
|
43 |
end; |
516 | 44 |
|
6053
8a1059aa01f0
new inductive, datatype and primrec packages, etc.
paulson
parents:
1461
diff
changeset
|
45 |
structure CoData_Package = |
12183 | 46 |
Add_datatype_def_Fun |
47 |
(structure Fp=Gfp and Pr=Quine_Prod and CP=Quine_CP |
|
48 |
and Su=Quine_Sum |
|
49 |
and Ind_Package = CoInd_Package |
|
50 |
and Datatype_Arg = CoData_Arg |
|
51 |
val coind = true); |
|
516 | 52 |
|
6141 | 53 |
|
54 |
||
55 |
(*Simproc for freeness reasoning: compare datatype constructors for equality*) |
|
56 |
structure DataFree = |
|
57 |
struct |
|
58 |
val trace = ref false; |
|
59 |
||
60 |
fun mk_new ([],[]) = Const("True",FOLogic.oT) |
|
61 |
| mk_new (largs,rargs) = |
|
12134 | 62 |
fold_bal FOLogic.mk_conj |
63 |
(map FOLogic.mk_eq (ListPair.zip (largs,rargs))); |
|
6141 | 64 |
|
12175 | 65 |
val datatype_ss = simpset_of (the_context ()); |
6141 | 66 |
|
67 |
fun proc sg _ old = |
|
68 |
let val _ = if !trace then writeln ("data_free: OLD = " ^ |
|
12134 | 69 |
string_of_cterm (cterm_of sg old)) |
70 |
else () |
|
6141 | 71 |
val (lhs,rhs) = FOLogic.dest_eq old |
72 |
val (lhead, largs) = strip_comb lhs |
|
73 |
and (rhead, rargs) = strip_comb rhs |
|
12203 | 74 |
val lname = #1 (dest_Const lhead) handle TERM _ => raise Match; |
75 |
val rname = #1 (dest_Const rhead) handle TERM _ => raise Match; |
|
6141 | 76 |
val lcon_info = the (Symtab.lookup (ConstructorsData.get_sg sg, lname)) |
12203 | 77 |
handle Library.OPTION => raise Match; |
78 |
val rcon_info = the (Symtab.lookup (ConstructorsData.get_sg sg, rname)) |
|
79 |
handle Library.OPTION => raise Match; |
|
6141 | 80 |
val new = |
12134 | 81 |
if #big_rec_name lcon_info = #big_rec_name rcon_info |
82 |
andalso not (null (#free_iffs lcon_info)) then |
|
83 |
if lname = rname then mk_new (largs, rargs) |
|
84 |
else Const("False",FOLogic.oT) |
|
85 |
else raise Match |
|
6141 | 86 |
val _ = if !trace then |
12134 | 87 |
writeln ("NEW = " ^ string_of_cterm (Thm.cterm_of sg new)) |
88 |
else (); |
|
89 |
val goal = Logic.mk_equals (old, new) |
|
90 |
val thm = Tactic.prove sg [] [] goal (fn _ => rtac iff_reflection 1 THEN |
|
12175 | 91 |
simp_tac (datatype_ss addsimps #free_iffs lcon_info) 1) |
12203 | 92 |
handle ERROR_MESSAGE msg => |
93 |
(warning (msg ^ "\ndata_free simproc:\nfailed to prove " ^ Sign.string_of_term sg goal); |
|
94 |
raise Match) |
|
6141 | 95 |
in Some thm end |
12203 | 96 |
handle Match => None; |
6141 | 97 |
|
98 |
||
99 |
val conv = |
|
100 |
Simplifier.mk_simproc "data_free" |
|
101 |
[Thm.read_cterm (sign_of ZF.thy) ("(x::i) = y", FOLogic.oT)] |
|
102 |
proc; |
|
103 |
end; |
|
104 |
||
105 |
||
106 |
Addsimprocs [DataFree.conv]; |