author | wenzelm |
Sat, 30 Dec 2006 16:08:06 +0100 | |
changeset 21966 | edab0ecfbd7c |
parent 21588 | cd0dc678a205 |
child 22634 | 399e4b4835da |
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 |
|
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
64 |
(** Attribute **) |
14399
dc677b35e54f
New lemmas about inversion of restricted functions.
ballarin
parents:
13936
diff
changeset
|
65 |
|
20168
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
66 |
fun add_struct_thm s = |
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
67 |
Thm.declaration_attribute (fn thm => fn ctxt => |
21505 | 68 |
AlgebraData.map (fn structs => |
20168
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
69 |
if AList.defined struct_eq structs s |
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
70 |
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
|
71 |
else (s, [thm])::structs) ctxt); |
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
72 |
fun del_struct s = |
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
73 |
Thm.declaration_attribute (fn _ => fn ctxt => |
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
74 |
AlgebraData.map (AList.delete struct_eq s) ctxt); |
13854 | 75 |
|
20168
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
76 |
val attribute = Attrib.syntax |
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
77 |
(Scan.lift ((Args.add >> K true || Args.del >> K false) --| Args.colon || |
21505 | 78 |
Scan.succeed true) -- Scan.lift Args.name -- |
20168
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
79 |
Scan.repeat Args.term |
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
80 |
>> (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
|
81 |
|
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
82 |
|
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
83 |
(** Setup **) |
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 |
val setup = |
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
86 |
AlgebraData.init #> |
21588 | 87 |
Method.add_methods [("algebra", Method.ctxt_args (Method.SIMPLE_METHOD' o algebra_tac), |
88 |
"normalisation of algebraic structure")] #> |
|
20168
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
89 |
Attrib.add_attributes [("algebra", attribute, "theorems controlling algebra method")]; |
ed7bced29e1b
Reimplemented algebra method; now controlled by attribute.
ballarin
parents:
20129
diff
changeset
|
90 |
|
21505 | 91 |
end; |