| author | wenzelm | 
| Thu, 27 Mar 2008 16:24:10 +0100 | |
| changeset 26437 | 5906619c8c6b | 
| parent 26075 | 815f3ccc0b45 | 
| child 27651 | 16a26996c30e | 
| permissions | -rw-r--r-- | 
| 23274 | 1  | 
structure LinZTac =  | 
2  | 
struct  | 
|
3  | 
||
4  | 
val trace = ref false;  | 
|
5  | 
fun trace_msg s = if !trace then tracing s else ();  | 
|
6  | 
||
7  | 
val cooper_ss = @{simpset};
 | 
|
8  | 
||
9  | 
val nT = HOLogic.natT;  | 
|
| 
26075
 
815f3ccc0b45
added lemma lists {normalize,succ,pred,minus,add,mult}_bin_simps
 
huffman 
parents: 
25985 
diff
changeset
 | 
10  | 
val binarith = @{thms normalize_bin_simps};
 | 
| 23318 | 11  | 
val comp_arith = binarith @ simp_thms  | 
| 23274 | 12  | 
|
13  | 
val zdvd_int = thm "zdvd_int";  | 
|
14  | 
val zdiff_int_split = thm "zdiff_int_split";  | 
|
15  | 
val all_nat = thm "all_nat";  | 
|
16  | 
val ex_nat = thm "ex_nat";  | 
|
17  | 
val number_of1 = thm "number_of1";  | 
|
18  | 
val number_of2 = thm "number_of2";  | 
|
19  | 
val split_zdiv = thm "split_zdiv";  | 
|
20  | 
val split_zmod = thm "split_zmod";  | 
|
21  | 
val mod_div_equality' = thm "mod_div_equality'";  | 
|
22  | 
val split_div' = thm "split_div'";  | 
|
23  | 
val Suc_plus1 = thm "Suc_plus1";  | 
|
24  | 
val imp_le_cong = thm "imp_le_cong";  | 
|
25  | 
val conj_le_cong = thm "conj_le_cong";  | 
|
| 23469 | 26  | 
val nat_mod_add_eq = @{thm mod_add1_eq} RS sym;
 | 
27  | 
val nat_mod_add_left_eq = @{thm mod_add_left_eq} RS sym;
 | 
|
28  | 
val nat_mod_add_right_eq = @{thm mod_add_right_eq} RS sym;
 | 
|
| 23274 | 29  | 
val int_mod_add_eq = @{thm "zmod_zadd1_eq"} RS sym;
 | 
30  | 
val int_mod_add_left_eq = @{thm "zmod_zadd_left_eq"} RS sym;
 | 
|
31  | 
val int_mod_add_right_eq = @{thm "zmod_zadd_right_eq"} RS sym;
 | 
|
32  | 
val nat_div_add_eq = @{thm "div_add1_eq"} RS sym;
 | 
|
33  | 
val int_div_add_eq = @{thm "zdiv_zadd1_eq"} RS sym;
 | 
|
34  | 
val ZDIVISION_BY_ZERO_MOD = @{thm "DIVISION_BY_ZERO"} RS conjunct2;
 | 
|
35  | 
val ZDIVISION_BY_ZERO_DIV = @{thm "DIVISION_BY_ZERO"} RS conjunct1;
 | 
|
36  | 
||
37  | 
(*  | 
|
| 25985 | 38  | 
val fn_rews = List.concat (map thms ["allpairs.simps","iupt.simps","decr.simps", "decrnum.simps","disjuncts.simps","simpnum.simps", "simpfm.simps","numadd.simps","nummul.simps","numneg_def","numsub","simp_num_pair_def","not.simps","prep.simps","qelim.simps","minusinf.simps","plusinf.simps","rsplit0.simps","rlfm.simps","\<Upsilon>.simps","\<upsilon>.simps","linrqe_def", "ferrack_def", "Let_def", "numsub_def", "numneg_def","DJ_def", "imp_def", "evaldjf_def", "djf_def", "split_def", "eq_def", "disj_def", "simp_num_pair_def", "conj_def", "lt_def", "neq_def","gt_def"]);  | 
| 23274 | 39  | 
*)  | 
40  | 
fun prepare_for_linz q fm =  | 
|
41  | 
let  | 
|
42  | 
val ps = Logic.strip_params fm  | 
|
43  | 
val hs = map HOLogic.dest_Trueprop (Logic.strip_assums_hyp fm)  | 
|
44  | 
val c = HOLogic.dest_Trueprop (Logic.strip_assums_concl fm)  | 
|
45  | 
fun mk_all ((s, T), (P,n)) =  | 
|
46  | 
if 0 mem loose_bnos P then  | 
|
47  | 
(HOLogic.all_const T $ Abs (s, T, P), n)  | 
|
48  | 
else (incr_boundvars ~1 P, n-1)  | 
|
49  | 
fun mk_all2 (v, t) = HOLogic.all_const (fastype_of v) $ lambda v t;  | 
|
50  | 
val rhs = hs  | 
|
51  | 
(* val (rhs,irhs) = List.partition (relevant (rev ps)) hs *)  | 
|
52  | 
val np = length ps  | 
|
53  | 
val (fm',np) = foldr (fn ((x, T), (fm,n)) => mk_all ((x, T), (fm,n)))  | 
|
54  | 
(foldr HOLogic.mk_imp c rhs, np) ps  | 
|
55  | 
val (vs, _) = List.partition (fn t => q orelse (type_of t) = nT)  | 
|
56  | 
(term_frees fm' @ term_vars fm');  | 
|
57  | 
val fm2 = foldr mk_all2 fm' vs  | 
|
58  | 
in (fm2, np + length vs, length rhs) end;  | 
|
59  | 
||
60  | 
(*Object quantifier to meta --*)  | 
|
61  | 
fun spec_step n th = if (n=0) then th else (spec_step (n-1) th) RS spec ;  | 
|
62  | 
||
63  | 
(* object implication to meta---*)  | 
|
64  | 
fun mp_step n th = if (n=0) then th else (mp_step (n-1) th) RS mp;  | 
|
65  | 
||
66  | 
||
| 
23590
 
ad95084a5c63
renamed ObjectLogic.atomize_tac to ObjectLogic.atomize_prems_tac;
 
wenzelm 
parents: 
23469 
diff
changeset
 | 
67  | 
fun linz_tac ctxt q i = ObjectLogic.atomize_prems_tac i THEN (fn st =>  | 
| 23274 | 68  | 
let  | 
69  | 
val g = List.nth (prems_of st, i - 1)  | 
|
70  | 
val thy = ProofContext.theory_of ctxt  | 
|
71  | 
(* Transform the term*)  | 
|
72  | 
val (t,np,nh) = prepare_for_linz q g  | 
|
73  | 
(* Some simpsets for dealing with mod div abs and nat*)  | 
|
74  | 
val mod_div_simpset = HOL_basic_ss  | 
|
75  | 
addsimps [refl,nat_mod_add_eq, nat_mod_add_left_eq,  | 
|
76  | 
nat_mod_add_right_eq, int_mod_add_eq,  | 
|
77  | 
int_mod_add_right_eq, int_mod_add_left_eq,  | 
|
78  | 
nat_div_add_eq, int_div_add_eq,  | 
|
| 23469 | 79  | 
				  @{thm mod_self}, @{thm "zmod_self"},
 | 
80  | 
				  @{thm DIVISION_BY_ZERO_MOD}, @{thm DIVISION_BY_ZERO_DIV},
 | 
|
| 23274 | 81  | 
ZDIVISION_BY_ZERO_MOD,ZDIVISION_BY_ZERO_DIV,  | 
82  | 
				  @{thm "zdiv_zero"}, @{thm "zmod_zero"}, @{thm "div_0"}, @{thm "mod_0"},
 | 
|
83  | 
				  @{thm "zdiv_1"}, @{thm "zmod_1"}, @{thm "div_1"}, @{thm "mod_1"},
 | 
|
84  | 
Suc_plus1]  | 
|
| 23880 | 85  | 
			addsimps @{thms add_ac}
 | 
| 23274 | 86  | 
addsimprocs [cancel_div_mod_proc]  | 
87  | 
val simpset0 = HOL_basic_ss  | 
|
88  | 
addsimps [mod_div_equality', Suc_plus1]  | 
|
89  | 
addsimps comp_arith  | 
|
90  | 
      addsplits [split_zdiv, split_zmod, split_div', @{thm "split_min"}, @{thm "split_max"}]
 | 
|
91  | 
(* Simp rules for changing (n::int) to int n *)  | 
|
92  | 
val simpset1 = HOL_basic_ss  | 
|
93  | 
addsimps [nat_number_of_def, zdvd_int] @ map (fn r => r RS sym)  | 
|
| 23364 | 94  | 
        [@{thm int_int_eq}, @{thm zle_int}, @{thm zless_int}, @{thm zadd_int}, @{thm zmult_int}]
 | 
| 23274 | 95  | 
addsplits [zdiff_int_split]  | 
96  | 
(*simp rules for elimination of int n*)  | 
|
97  | 
||
98  | 
val simpset2 = HOL_basic_ss  | 
|
| 23364 | 99  | 
      addsimps [@{thm nat_0_le}, @{thm all_nat}, @{thm ex_nat}, @{thm number_of1}, @{thm number_of2}, @{thm int_0}, @{thm int_1}]
 | 
100  | 
      addcongs [@{thm conj_le_cong}, @{thm imp_le_cong}]
 | 
|
| 23274 | 101  | 
(* simp rules for elimination of abs *)  | 
| 23364 | 102  | 
    val simpset3 = HOL_basic_ss addsplits [@{thm abs_split}]
 | 
| 23274 | 103  | 
val ct = cterm_of thy (HOLogic.mk_Trueprop t)  | 
104  | 
(* Theorem for the nat --> int transformation *)  | 
|
105  | 
val pre_thm = Seq.hd (EVERY  | 
|
106  | 
[simp_tac mod_div_simpset 1, simp_tac simpset0 1,  | 
|
107  | 
TRY (simp_tac simpset1 1), TRY (simp_tac simpset2 1),  | 
|
108  | 
TRY (simp_tac simpset3 1), TRY (simp_tac cooper_ss 1)]  | 
|
109  | 
(trivial ct))  | 
|
110  | 
fun assm_tac i = REPEAT_DETERM_N nh (assume_tac i)  | 
|
111  | 
(* The result of the quantifier elimination *)  | 
|
112  | 
val (th, tac) = case (prop_of pre_thm) of  | 
|
113  | 
        Const ("==>", _) $ (Const ("Trueprop", _) $ t1) $ _ =>
 | 
|
114  | 
let val pth = linzqe_oracle thy (Pattern.eta_long [] t1)  | 
|
115  | 
in  | 
|
116  | 
((pth RS iffD2) RS pre_thm,  | 
|
117  | 
assm_tac (i + 1) THEN (if q then I else TRY) (rtac TrueI i))  | 
|
118  | 
end  | 
|
119  | 
| _ => (pre_thm, assm_tac i)  | 
|
120  | 
in (rtac (((mp_step nh) o (spec_step np)) th) i  | 
|
121  | 
THEN tac) st  | 
|
122  | 
end handle Subscript => no_tac st);  | 
|
123  | 
||
124  | 
fun linz_args meth =  | 
|
125  | 
let val parse_flag =  | 
|
126  | 
Args.$$$ "no_quantify" >> (K (K false));  | 
|
127  | 
in  | 
|
128  | 
Method.simple_args  | 
|
129  | 
  (Scan.optional (Args.$$$ "(" |-- Scan.repeat1 parse_flag --| Args.$$$ ")") [] >>
 | 
|
130  | 
curry (Library.foldl op |>) true)  | 
|
131  | 
(fn q => fn ctxt => meth ctxt q 1)  | 
|
132  | 
end;  | 
|
133  | 
||
134  | 
fun linz_method ctxt q i = Method.METHOD (fn facts =>  | 
|
135  | 
Method.insert_tac facts 1 THEN linz_tac ctxt q i);  | 
|
136  | 
||
137  | 
val setup =  | 
|
138  | 
  Method.add_method ("cooper",
 | 
|
139  | 
linz_args linz_method,  | 
|
140  | 
"decision procedure for linear integer arithmetic");  | 
|
141  | 
||
| 
23590
 
ad95084a5c63
renamed ObjectLogic.atomize_tac to ObjectLogic.atomize_prems_tac;
 
wenzelm 
parents: 
23469 
diff
changeset
 | 
142  | 
end  |