author | Cezary Kaliszyk <kaliszyk@in.tum.de> |
Tue, 01 Dec 2009 19:01:51 +0100 | |
changeset 474 | 5e1f4c8ab3de |
parent 460 | 3f8c7183ddac |
child 496 | 8f1bf5266ebc |
child 503 | d2c9a72e52e0 |
permissions | -rw-r--r-- |
264
d0581fbc096c
split quotient.ML into two files
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
1 |
signature QUOTIENT_INFO = |
d0581fbc096c
split quotient.ML into two files
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
2 |
sig |
d0581fbc096c
split quotient.ML into two files
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
3 |
type maps_info = {mapfun: string, relfun: string} |
d0581fbc096c
split quotient.ML into two files
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
4 |
val maps_lookup: theory -> string -> maps_info option |
d0581fbc096c
split quotient.ML into two files
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
5 |
val maps_update_thy: string -> maps_info -> theory -> theory |
d0581fbc096c
split quotient.ML into two files
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
6 |
val maps_update: string -> maps_info -> Proof.context -> Proof.context |
d0581fbc096c
split quotient.ML into two files
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
7 |
|
d0581fbc096c
split quotient.ML into two files
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
8 |
type quotient_info = {qtyp: typ, rtyp: typ, rel: term, equiv_thm: thm} |
310
fec6301a1989
added a container for quotient constants (does not work yet though)
Christian Urban <urbanc@in.tum.de>
parents:
306
diff
changeset
|
9 |
val print_quotinfo: Proof.context -> unit |
311
77fc6f3c0343
changed the quotdata to be a symtab table (needs fixing)
Christian Urban <urbanc@in.tum.de>
parents:
310
diff
changeset
|
10 |
val quotdata_lookup_thy: theory -> string -> quotient_info option |
77fc6f3c0343
changed the quotdata to be a symtab table (needs fixing)
Christian Urban <urbanc@in.tum.de>
parents:
310
diff
changeset
|
11 |
val quotdata_lookup: Proof.context -> string -> quotient_info option |
77fc6f3c0343
changed the quotdata to be a symtab table (needs fixing)
Christian Urban <urbanc@in.tum.de>
parents:
310
diff
changeset
|
12 |
val quotdata_update_thy: string -> (typ * typ * term * thm) -> theory -> theory |
77fc6f3c0343
changed the quotdata to be a symtab table (needs fixing)
Christian Urban <urbanc@in.tum.de>
parents:
310
diff
changeset
|
13 |
val quotdata_update: string -> (typ * typ * term * thm) -> Proof.context -> Proof.context |
460
3f8c7183ddac
added facilities to get all stored quotient data (equiv thms etc)
Christian Urban <urbanc@in.tum.de>
parents:
450
diff
changeset
|
14 |
val quotdata_dest: theory -> quotient_info list |
268
4d58c02289ca
simplified the quotient_def code; type of the defined constant must now be given; for-part eliminated
Christian Urban <urbanc@in.tum.de>
parents:
264
diff
changeset
|
15 |
|
310
fec6301a1989
added a container for quotient constants (does not work yet though)
Christian Urban <urbanc@in.tum.de>
parents:
306
diff
changeset
|
16 |
type qconsts_info = {qconst: term, rconst: term} |
318
746b17e1d6d8
fixed the storage of qconst definitions
Christian Urban <urbanc@in.tum.de>
parents:
314
diff
changeset
|
17 |
val qconsts_transfer: morphism -> qconsts_info -> qconsts_info |
310
fec6301a1989
added a container for quotient constants (does not work yet though)
Christian Urban <urbanc@in.tum.de>
parents:
306
diff
changeset
|
18 |
val qconsts_lookup: theory -> string -> qconsts_info option |
fec6301a1989
added a container for quotient constants (does not work yet though)
Christian Urban <urbanc@in.tum.de>
parents:
306
diff
changeset
|
19 |
val qconsts_update_thy: string -> qconsts_info -> theory -> theory |
321
f46dc0ca08c3
simplified get_fun so that it uses directly rty and qty, instead of qenv
Christian Urban <urbanc@in.tum.de>
parents:
320
diff
changeset
|
20 |
val qconsts_update_gen: string -> qconsts_info -> Context.generic -> Context.generic |
310
fec6301a1989
added a container for quotient constants (does not work yet though)
Christian Urban <urbanc@in.tum.de>
parents:
306
diff
changeset
|
21 |
val print_qconstinfo: Proof.context -> unit |
450
2dc708ddb93a
introduced a global list of respectfulness lemmas; the attribute is [quot_rsp]
Christian Urban <urbanc@in.tum.de>
parents:
406
diff
changeset
|
22 |
|
2dc708ddb93a
introduced a global list of respectfulness lemmas; the attribute is [quot_rsp]
Christian Urban <urbanc@in.tum.de>
parents:
406
diff
changeset
|
23 |
val rsp_rules_get: Proof.context -> thm list |
264
d0581fbc096c
split quotient.ML into two files
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
24 |
end; |
d0581fbc096c
split quotient.ML into two files
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
25 |
|
d0581fbc096c
split quotient.ML into two files
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
26 |
structure Quotient_Info: QUOTIENT_INFO = |
d0581fbc096c
split quotient.ML into two files
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
27 |
struct |
d0581fbc096c
split quotient.ML into two files
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
28 |
|
268
4d58c02289ca
simplified the quotient_def code; type of the defined constant must now be given; for-part eliminated
Christian Urban <urbanc@in.tum.de>
parents:
264
diff
changeset
|
29 |
|
264
d0581fbc096c
split quotient.ML into two files
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
30 |
(* data containers *) |
d0581fbc096c
split quotient.ML into two files
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
31 |
(*******************) |
d0581fbc096c
split quotient.ML into two files
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
32 |
|
d0581fbc096c
split quotient.ML into two files
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
33 |
(* info about map- and rel-functions *) |
d0581fbc096c
split quotient.ML into two files
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
34 |
type maps_info = {mapfun: string, relfun: string} |
d0581fbc096c
split quotient.ML into two files
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
35 |
|
306
e7279efbe3dd
updated to new Theory_Data and to new Isabelle
Christian Urban <urbanc@in.tum.de>
parents:
268
diff
changeset
|
36 |
structure MapsData = Theory_Data |
264
d0581fbc096c
split quotient.ML into two files
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
37 |
(type T = maps_info Symtab.table |
d0581fbc096c
split quotient.ML into two files
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
38 |
val empty = Symtab.empty |
d0581fbc096c
split quotient.ML into two files
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
39 |
val extend = I |
306
e7279efbe3dd
updated to new Theory_Data and to new Isabelle
Christian Urban <urbanc@in.tum.de>
parents:
268
diff
changeset
|
40 |
val merge = Symtab.merge (K true)) |
264
d0581fbc096c
split quotient.ML into two files
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
41 |
|
d0581fbc096c
split quotient.ML into two files
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
42 |
val maps_lookup = Symtab.lookup o MapsData.get |
d0581fbc096c
split quotient.ML into two files
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
43 |
|
d0581fbc096c
split quotient.ML into two files
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
44 |
fun maps_update_thy k minfo = MapsData.map (Symtab.update (k, minfo)) |
d0581fbc096c
split quotient.ML into two files
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
45 |
fun maps_update k minfo = ProofContext.theory (maps_update_thy k minfo) |
d0581fbc096c
split quotient.ML into two files
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
46 |
|
d0581fbc096c
split quotient.ML into two files
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
47 |
fun maps_attribute_aux s minfo = Thm.declaration_attribute |
d0581fbc096c
split quotient.ML into two files
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
48 |
(fn thm => Context.mapping (maps_update_thy s minfo) (maps_update s minfo)) |
d0581fbc096c
split quotient.ML into two files
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
49 |
|
d0581fbc096c
split quotient.ML into two files
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
50 |
(* attribute to be used in declare statements *) |
d0581fbc096c
split quotient.ML into two files
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
51 |
fun maps_attribute (ctxt, (tystr, (mapstr, relstr))) = |
d0581fbc096c
split quotient.ML into two files
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
52 |
let |
d0581fbc096c
split quotient.ML into two files
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
53 |
val thy = ProofContext.theory_of ctxt |
d0581fbc096c
split quotient.ML into two files
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
54 |
val tyname = Sign.intern_type thy tystr |
d0581fbc096c
split quotient.ML into two files
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
55 |
val mapname = Sign.intern_const thy mapstr |
d0581fbc096c
split quotient.ML into two files
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
56 |
val relname = Sign.intern_const thy relstr |
d0581fbc096c
split quotient.ML into two files
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
57 |
in |
d0581fbc096c
split quotient.ML into two files
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
58 |
maps_attribute_aux tyname {mapfun = mapname, relfun = relname} |
d0581fbc096c
split quotient.ML into two files
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
59 |
end |
d0581fbc096c
split quotient.ML into two files
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
60 |
|
d0581fbc096c
split quotient.ML into two files
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
61 |
val maps_attr_parser = |
d0581fbc096c
split quotient.ML into two files
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
62 |
Args.context -- Scan.lift |
d0581fbc096c
split quotient.ML into two files
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
63 |
((Args.name --| OuterParse.$$$ "=") -- |
d0581fbc096c
split quotient.ML into two files
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
64 |
(OuterParse.$$$ "(" |-- Args.name --| OuterParse.$$$ "," -- |
d0581fbc096c
split quotient.ML into two files
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
65 |
Args.name --| OuterParse.$$$ ")")) |
d0581fbc096c
split quotient.ML into two files
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
66 |
|
d0581fbc096c
split quotient.ML into two files
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
67 |
val _ = Context.>> (Context.map_theory |
d0581fbc096c
split quotient.ML into two files
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
68 |
(Attrib.setup @{binding "map"} (maps_attr_parser >> maps_attribute) |
d0581fbc096c
split quotient.ML into two files
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
69 |
"declaration of map information")) |
d0581fbc096c
split quotient.ML into two files
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
70 |
|
d0581fbc096c
split quotient.ML into two files
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
71 |
|
329 | 72 |
(* info about quotient types *) |
264
d0581fbc096c
split quotient.ML into two files
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
73 |
type quotient_info = {qtyp: typ, rtyp: typ, rel: term, equiv_thm: thm} |
d0581fbc096c
split quotient.ML into two files
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
74 |
|
306
e7279efbe3dd
updated to new Theory_Data and to new Isabelle
Christian Urban <urbanc@in.tum.de>
parents:
268
diff
changeset
|
75 |
structure QuotData = Theory_Data |
311
77fc6f3c0343
changed the quotdata to be a symtab table (needs fixing)
Christian Urban <urbanc@in.tum.de>
parents:
310
diff
changeset
|
76 |
(type T = quotient_info Symtab.table |
77fc6f3c0343
changed the quotdata to be a symtab table (needs fixing)
Christian Urban <urbanc@in.tum.de>
parents:
310
diff
changeset
|
77 |
val empty = Symtab.empty |
264
d0581fbc096c
split quotient.ML into two files
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
78 |
val extend = I |
311
77fc6f3c0343
changed the quotdata to be a symtab table (needs fixing)
Christian Urban <urbanc@in.tum.de>
parents:
310
diff
changeset
|
79 |
val merge = Symtab.merge (K true)) |
264
d0581fbc096c
split quotient.ML into two files
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
80 |
|
320
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
parents:
318
diff
changeset
|
81 |
fun quotdata_lookup_thy thy str = |
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
parents:
318
diff
changeset
|
82 |
Symtab.lookup (QuotData.get thy) (Sign.intern_type thy str) |
7d3d86beacd6
started regularize of rtrm/qtrm version; looks quite promising
Christian Urban <urbanc@in.tum.de>
parents:
318
diff
changeset
|
83 |
|
311
77fc6f3c0343
changed the quotdata to be a symtab table (needs fixing)
Christian Urban <urbanc@in.tum.de>
parents:
310
diff
changeset
|
84 |
val quotdata_lookup = quotdata_lookup_thy o ProofContext.theory_of |
264
d0581fbc096c
split quotient.ML into two files
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
85 |
|
314 | 86 |
fun quotdata_update_thy qty_name (qty, rty, rel, equiv_thm) = |
311
77fc6f3c0343
changed the quotdata to be a symtab table (needs fixing)
Christian Urban <urbanc@in.tum.de>
parents:
310
diff
changeset
|
87 |
QuotData.map (Symtab.update (qty_name, {qtyp = qty, rtyp = rty, rel = rel, equiv_thm = equiv_thm})) |
264
d0581fbc096c
split quotient.ML into two files
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
88 |
|
311
77fc6f3c0343
changed the quotdata to be a symtab table (needs fixing)
Christian Urban <urbanc@in.tum.de>
parents:
310
diff
changeset
|
89 |
fun quotdata_update qty_name (qty, rty, rel, equiv_thm) = |
77fc6f3c0343
changed the quotdata to be a symtab table (needs fixing)
Christian Urban <urbanc@in.tum.de>
parents:
310
diff
changeset
|
90 |
ProofContext.theory (quotdata_update_thy qty_name (qty, rty, rel, equiv_thm)) |
264
d0581fbc096c
split quotient.ML into two files
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
91 |
|
460
3f8c7183ddac
added facilities to get all stored quotient data (equiv thms etc)
Christian Urban <urbanc@in.tum.de>
parents:
450
diff
changeset
|
92 |
fun quotdata_dest thy = |
3f8c7183ddac
added facilities to get all stored quotient data (equiv thms etc)
Christian Urban <urbanc@in.tum.de>
parents:
450
diff
changeset
|
93 |
map snd (Symtab.dest (QuotData.get thy)) |
3f8c7183ddac
added facilities to get all stored quotient data (equiv thms etc)
Christian Urban <urbanc@in.tum.de>
parents:
450
diff
changeset
|
94 |
|
310
fec6301a1989
added a container for quotient constants (does not work yet though)
Christian Urban <urbanc@in.tum.de>
parents:
306
diff
changeset
|
95 |
fun print_quotinfo ctxt = |
264
d0581fbc096c
split quotient.ML into two files
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
96 |
let |
d0581fbc096c
split quotient.ML into two files
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
97 |
fun prt_quot {qtyp, rtyp, rel, equiv_thm} = |
d0581fbc096c
split quotient.ML into two files
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
98 |
Pretty.block (Library.separate (Pretty.brk 2) |
324 | 99 |
[Pretty.str "quotient type:", |
264
d0581fbc096c
split quotient.ML into two files
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
100 |
Syntax.pretty_typ ctxt qtyp, |
324 | 101 |
Pretty.str "raw type:", |
264
d0581fbc096c
split quotient.ML into two files
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
102 |
Syntax.pretty_typ ctxt rtyp, |
324 | 103 |
Pretty.str "relation:", |
264
d0581fbc096c
split quotient.ML into two files
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
104 |
Syntax.pretty_term ctxt rel, |
324 | 105 |
Pretty.str "equiv. thm:", |
264
d0581fbc096c
split quotient.ML into two files
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
106 |
Syntax.pretty_term ctxt (prop_of equiv_thm)]) |
d0581fbc096c
split quotient.ML into two files
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
107 |
in |
d0581fbc096c
split quotient.ML into two files
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
108 |
QuotData.get (ProofContext.theory_of ctxt) |
311
77fc6f3c0343
changed the quotdata to be a symtab table (needs fixing)
Christian Urban <urbanc@in.tum.de>
parents:
310
diff
changeset
|
109 |
|> Symtab.dest |
77fc6f3c0343
changed the quotdata to be a symtab table (needs fixing)
Christian Urban <urbanc@in.tum.de>
parents:
310
diff
changeset
|
110 |
|> map (prt_quot o snd) |
264
d0581fbc096c
split quotient.ML into two files
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
111 |
|> Pretty.big_list "quotients:" |
d0581fbc096c
split quotient.ML into two files
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
112 |
|> Pretty.writeln |
d0581fbc096c
split quotient.ML into two files
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
113 |
end |
d0581fbc096c
split quotient.ML into two files
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
114 |
|
d0581fbc096c
split quotient.ML into two files
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
115 |
val _ = |
d0581fbc096c
split quotient.ML into two files
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
116 |
OuterSyntax.improper_command "print_quotients" "print out all quotients" |
310
fec6301a1989
added a container for quotient constants (does not work yet though)
Christian Urban <urbanc@in.tum.de>
parents:
306
diff
changeset
|
117 |
OuterKeyword.diag (Scan.succeed (Toplevel.keep (print_quotinfo o Toplevel.context_of))) |
264
d0581fbc096c
split quotient.ML into two files
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
118 |
|
268
4d58c02289ca
simplified the quotient_def code; type of the defined constant must now be given; for-part eliminated
Christian Urban <urbanc@in.tum.de>
parents:
264
diff
changeset
|
119 |
|
450
2dc708ddb93a
introduced a global list of respectfulness lemmas; the attribute is [quot_rsp]
Christian Urban <urbanc@in.tum.de>
parents:
406
diff
changeset
|
120 |
(* info about quotient constants *) |
310
fec6301a1989
added a container for quotient constants (does not work yet though)
Christian Urban <urbanc@in.tum.de>
parents:
306
diff
changeset
|
121 |
type qconsts_info = {qconst: term, rconst: term} |
fec6301a1989
added a container for quotient constants (does not work yet though)
Christian Urban <urbanc@in.tum.de>
parents:
306
diff
changeset
|
122 |
|
fec6301a1989
added a container for quotient constants (does not work yet though)
Christian Urban <urbanc@in.tum.de>
parents:
306
diff
changeset
|
123 |
structure QConstsData = Theory_Data |
fec6301a1989
added a container for quotient constants (does not work yet though)
Christian Urban <urbanc@in.tum.de>
parents:
306
diff
changeset
|
124 |
(type T = qconsts_info Symtab.table |
fec6301a1989
added a container for quotient constants (does not work yet though)
Christian Urban <urbanc@in.tum.de>
parents:
306
diff
changeset
|
125 |
val empty = Symtab.empty |
fec6301a1989
added a container for quotient constants (does not work yet though)
Christian Urban <urbanc@in.tum.de>
parents:
306
diff
changeset
|
126 |
val extend = I |
fec6301a1989
added a container for quotient constants (does not work yet though)
Christian Urban <urbanc@in.tum.de>
parents:
306
diff
changeset
|
127 |
val merge = Symtab.merge (K true)) |
fec6301a1989
added a container for quotient constants (does not work yet though)
Christian Urban <urbanc@in.tum.de>
parents:
306
diff
changeset
|
128 |
|
318
746b17e1d6d8
fixed the storage of qconst definitions
Christian Urban <urbanc@in.tum.de>
parents:
314
diff
changeset
|
129 |
fun qconsts_transfer phi {qconst, rconst} = |
746b17e1d6d8
fixed the storage of qconst definitions
Christian Urban <urbanc@in.tum.de>
parents:
314
diff
changeset
|
130 |
{qconst = Morphism.term phi qconst, |
746b17e1d6d8
fixed the storage of qconst definitions
Christian Urban <urbanc@in.tum.de>
parents:
314
diff
changeset
|
131 |
rconst = Morphism.term phi rconst} |
746b17e1d6d8
fixed the storage of qconst definitions
Christian Urban <urbanc@in.tum.de>
parents:
314
diff
changeset
|
132 |
|
310
fec6301a1989
added a container for quotient constants (does not work yet though)
Christian Urban <urbanc@in.tum.de>
parents:
306
diff
changeset
|
133 |
val qconsts_lookup = Symtab.lookup o QConstsData.get |
fec6301a1989
added a container for quotient constants (does not work yet though)
Christian Urban <urbanc@in.tum.de>
parents:
306
diff
changeset
|
134 |
|
fec6301a1989
added a container for quotient constants (does not work yet though)
Christian Urban <urbanc@in.tum.de>
parents:
306
diff
changeset
|
135 |
fun qconsts_update_thy k qcinfo = QConstsData.map (Symtab.update (k, qcinfo)) |
324 | 136 |
fun qconsts_update_gen k qcinfo = Context.mapping (qconsts_update_thy k qcinfo) I |
310
fec6301a1989
added a container for quotient constants (does not work yet though)
Christian Urban <urbanc@in.tum.de>
parents:
306
diff
changeset
|
137 |
|
fec6301a1989
added a container for quotient constants (does not work yet though)
Christian Urban <urbanc@in.tum.de>
parents:
306
diff
changeset
|
138 |
fun print_qconstinfo ctxt = |
fec6301a1989
added a container for quotient constants (does not work yet though)
Christian Urban <urbanc@in.tum.de>
parents:
306
diff
changeset
|
139 |
let |
fec6301a1989
added a container for quotient constants (does not work yet though)
Christian Urban <urbanc@in.tum.de>
parents:
306
diff
changeset
|
140 |
fun prt_qconst {qconst, rconst} = |
318
746b17e1d6d8
fixed the storage of qconst definitions
Christian Urban <urbanc@in.tum.de>
parents:
314
diff
changeset
|
141 |
Pretty.block (separate (Pretty.brk 1) |
310
fec6301a1989
added a container for quotient constants (does not work yet though)
Christian Urban <urbanc@in.tum.de>
parents:
306
diff
changeset
|
142 |
[Syntax.pretty_term ctxt qconst, |
318
746b17e1d6d8
fixed the storage of qconst definitions
Christian Urban <urbanc@in.tum.de>
parents:
314
diff
changeset
|
143 |
Pretty.str ":=", |
310
fec6301a1989
added a container for quotient constants (does not work yet though)
Christian Urban <urbanc@in.tum.de>
parents:
306
diff
changeset
|
144 |
Syntax.pretty_term ctxt rconst]) |
fec6301a1989
added a container for quotient constants (does not work yet though)
Christian Urban <urbanc@in.tum.de>
parents:
306
diff
changeset
|
145 |
in |
fec6301a1989
added a container for quotient constants (does not work yet though)
Christian Urban <urbanc@in.tum.de>
parents:
306
diff
changeset
|
146 |
QConstsData.get (ProofContext.theory_of ctxt) |
fec6301a1989
added a container for quotient constants (does not work yet though)
Christian Urban <urbanc@in.tum.de>
parents:
306
diff
changeset
|
147 |
|> Symtab.dest |
fec6301a1989
added a container for quotient constants (does not work yet though)
Christian Urban <urbanc@in.tum.de>
parents:
306
diff
changeset
|
148 |
|> map (prt_qconst o snd) |
fec6301a1989
added a container for quotient constants (does not work yet though)
Christian Urban <urbanc@in.tum.de>
parents:
306
diff
changeset
|
149 |
|> Pretty.big_list "quotient constants:" |
fec6301a1989
added a container for quotient constants (does not work yet though)
Christian Urban <urbanc@in.tum.de>
parents:
306
diff
changeset
|
150 |
|> Pretty.writeln |
fec6301a1989
added a container for quotient constants (does not work yet though)
Christian Urban <urbanc@in.tum.de>
parents:
306
diff
changeset
|
151 |
end |
fec6301a1989
added a container for quotient constants (does not work yet though)
Christian Urban <urbanc@in.tum.de>
parents:
306
diff
changeset
|
152 |
|
fec6301a1989
added a container for quotient constants (does not work yet though)
Christian Urban <urbanc@in.tum.de>
parents:
306
diff
changeset
|
153 |
val _ = |
fec6301a1989
added a container for quotient constants (does not work yet though)
Christian Urban <urbanc@in.tum.de>
parents:
306
diff
changeset
|
154 |
OuterSyntax.improper_command "print_quotconsts" "print out all quotient constants" |
fec6301a1989
added a container for quotient constants (does not work yet though)
Christian Urban <urbanc@in.tum.de>
parents:
306
diff
changeset
|
155 |
OuterKeyword.diag (Scan.succeed (Toplevel.keep (print_qconstinfo o Toplevel.context_of))) |
fec6301a1989
added a container for quotient constants (does not work yet though)
Christian Urban <urbanc@in.tum.de>
parents:
306
diff
changeset
|
156 |
|
450
2dc708ddb93a
introduced a global list of respectfulness lemmas; the attribute is [quot_rsp]
Christian Urban <urbanc@in.tum.de>
parents:
406
diff
changeset
|
157 |
(* respectfulness lemmas *) |
2dc708ddb93a
introduced a global list of respectfulness lemmas; the attribute is [quot_rsp]
Christian Urban <urbanc@in.tum.de>
parents:
406
diff
changeset
|
158 |
structure RspRules = Named_Thms |
2dc708ddb93a
introduced a global list of respectfulness lemmas; the attribute is [quot_rsp]
Christian Urban <urbanc@in.tum.de>
parents:
406
diff
changeset
|
159 |
(val name = "quot_rsp" |
2dc708ddb93a
introduced a global list of respectfulness lemmas; the attribute is [quot_rsp]
Christian Urban <urbanc@in.tum.de>
parents:
406
diff
changeset
|
160 |
val description = "Respectfulness theorems.") |
2dc708ddb93a
introduced a global list of respectfulness lemmas; the attribute is [quot_rsp]
Christian Urban <urbanc@in.tum.de>
parents:
406
diff
changeset
|
161 |
|
2dc708ddb93a
introduced a global list of respectfulness lemmas; the attribute is [quot_rsp]
Christian Urban <urbanc@in.tum.de>
parents:
406
diff
changeset
|
162 |
val rsp_rules_get = RspRules.get |
2dc708ddb93a
introduced a global list of respectfulness lemmas; the attribute is [quot_rsp]
Christian Urban <urbanc@in.tum.de>
parents:
406
diff
changeset
|
163 |
|
2dc708ddb93a
introduced a global list of respectfulness lemmas; the attribute is [quot_rsp]
Christian Urban <urbanc@in.tum.de>
parents:
406
diff
changeset
|
164 |
val _ = Context.>> (Context.map_theory RspRules.setup) |
2dc708ddb93a
introduced a global list of respectfulness lemmas; the attribute is [quot_rsp]
Christian Urban <urbanc@in.tum.de>
parents:
406
diff
changeset
|
165 |
|
264
d0581fbc096c
split quotient.ML into two files
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
166 |
end; (* structure *) |
d0581fbc096c
split quotient.ML into two files
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
167 |
|
314 | 168 |
open Quotient_Info |