author | wenzelm |
Thu, 23 Nov 2006 22:38:29 +0100 | |
changeset 21505 | 13d4dba99337 |
parent 20547 | 796ae7fa1049 |
child 21588 | cd0dc678a205 |
permissions | -rw-r--r-- |
13854 | 1 |
(* |
2 |
Id: $Id$ |
|
3 |
Author: Clemens Ballarin |
|
21505 | 4 |
|
5 |
Normalisation method for locales ring and cring. |
|
13854 | 6 |
*) |
7 |
||
20168
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
8 |
signature ALGEBRA = |
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
9 |
sig |
21505 | 10 |
val print_structures: Proof.context -> unit |
20547 | 11 |
val setup: theory -> theory |
20168
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
12 |
end; |
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
13 |
|
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
14 |
structure Algebra: ALGEBRA = |
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
15 |
struct |
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
16 |
|
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
17 |
|
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
18 |
(** Theory and context data **) |
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
19 |
|
20547 | 20 |
fun struct_eq ((s1: string, ts1), (s2, ts2)) = |
20348 | 21 |
(s1 = s2) andalso eq_list (op aconv) (ts1, ts2); |
13854 | 22 |
|
20168
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
23 |
structure AlgebraData = GenericDataFun |
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
24 |
(struct |
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
25 |
val name = "Algebra/algebra"; |
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
26 |
type T = ((string * term list) * thm list) list; |
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
27 |
(* Algebraic structures: |
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
28 |
identifier of the structure, list of operations and simp rules, |
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
29 |
identifier and operations identify the structure uniquely. *) |
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
30 |
val empty = []; |
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
31 |
val extend = I; |
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
32 |
fun merge _ (structs1, structs2) = gen_merge_lists |
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
33 |
(fn ((s1, _), (s2, _)) => struct_eq (s1, s2)) structs1 structs2; |
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
34 |
fun print generic structs = |
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
35 |
let |
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
36 |
val ctxt = Context.proof_of generic; |
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
37 |
val pretty_term = Pretty.quote o ProofContext.pretty_term ctxt; |
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
38 |
fun pretty_struct ((s, ts), _) = Pretty.block |
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
39 |
[Pretty.str s, Pretty.str ":", Pretty.brk 1, |
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
40 |
Pretty.enclose "(" ")" (Pretty.breaks (map pretty_term ts))]; |
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
41 |
in |
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
42 |
Pretty.big_list "Algebraic structures:" (map pretty_struct structs) |> |
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
43 |
Pretty.writeln |
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
44 |
end |
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
45 |
end); |
13854 | 46 |
|
21505 | 47 |
val print_structures = AlgebraData.print o Context.Proof; |
13854 | 48 |
|
20168
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
49 |
|
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
50 |
(** Method **) |
13854 | 51 |
|
20168
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
52 |
fun struct_tac ((s, ts), simps) = |
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
53 |
let |
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
54 |
val ops = map (fst o Term.strip_comb) ts; |
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
55 |
fun ord (Const (a, _)) = find_index (fn (Const (b, _)) => a=b | _ => false) ops |
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
56 |
| ord (Free (a, _)) = find_index (fn (Free (b, _)) => a=b | _ => false) ops; |
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
57 |
fun less (a, b) = (Term.term_lpo ord (a, b) = LESS); |
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
58 |
in asm_full_simp_tac (HOL_ss settermless less addsimps simps) end; |
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
59 |
|
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
60 |
fun algebra_tac ctxt = |
21505 | 61 |
EVERY' (map (fn s => TRY o struct_tac s) (AlgebraData.get (Context.Proof ctxt))); |
20168
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
62 |
|
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
63 |
val method = |
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
64 |
Method.ctxt_args (fn ctxt => Method.SIMPLE_METHOD' HEADGOAL (algebra_tac ctxt)) |
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
65 |
|
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
66 |
|
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
67 |
(** Attribute **) |
14399
dc677b35e54f
New lemmas about inversion of restricted functions.
ballarin
parents:
13936
diff
changeset
|
68 |
|
20168
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
69 |
fun add_struct_thm s = |
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
70 |
Thm.declaration_attribute (fn thm => fn ctxt => |
21505 | 71 |
AlgebraData.map (fn structs => |
20168
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
72 |
if AList.defined struct_eq structs s |
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
73 |
then AList.map_entry struct_eq s (fn thms => thm :: thms) structs |
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
74 |
else (s, [thm])::structs) ctxt); |
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
75 |
fun del_struct s = |
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
76 |
Thm.declaration_attribute (fn _ => fn ctxt => |
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
77 |
AlgebraData.map (AList.delete struct_eq s) ctxt); |
13854 | 78 |
|
20168
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
79 |
val attribute = Attrib.syntax |
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
80 |
(Scan.lift ((Args.add >> K true || Args.del >> K false) --| Args.colon || |
21505 | 81 |
Scan.succeed true) -- Scan.lift Args.name -- |
20168
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
82 |
Scan.repeat Args.term |
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
83 |
>> (fn ((b, n), ts) => if b then add_struct_thm (n, ts) else del_struct (n, ts))); |
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
84 |
|
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
85 |
|
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
86 |
(** Setup **) |
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
87 |
|
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
88 |
val setup = |
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
89 |
AlgebraData.init #> |
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
90 |
Method.add_methods [("algebra", method, "normalisation of algebraic structure")] #> |
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
91 |
Attrib.add_attributes [("algebra", attribute, "theorems controlling algebra method")]; |
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
92 |
|
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
93 |
|
21505 | 94 |
end; |