| author | wenzelm | 
| Wed, 07 Oct 2015 13:53:44 +0200 | |
| changeset 61355 | 31829cf53f5d | 
| parent 60754 | 02924903a6fd | 
| child 61694 | 6571c78c9667 | 
| permissions | -rw-r--r-- | 
| 30439 | 1  | 
(* Title: HOL/Decision_Procs/cooper_tac.ML  | 
| 29788 | 2  | 
Author: Amine Chaieb, TU Muenchen  | 
3  | 
*)  | 
|
4  | 
||
| 31240 | 5  | 
signature COOPER_TAC =  | 
6  | 
sig  | 
|
7  | 
val linz_tac: Proof.context -> bool -> int -> tactic  | 
|
8  | 
end  | 
|
9  | 
||
10  | 
structure Cooper_Tac: COOPER_TAC =  | 
|
| 23274 | 11  | 
struct  | 
12  | 
||
| 
51717
 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 
wenzelm 
parents: 
47432 
diff
changeset
 | 
13  | 
val cooper_ss = simpset_of @{context};
 | 
| 23274 | 14  | 
|
| 31240 | 15  | 
fun prepare_for_linz q fm =  | 
| 23274 | 16  | 
let  | 
17  | 
val ps = Logic.strip_params fm  | 
|
18  | 
val hs = map HOLogic.dest_Trueprop (Logic.strip_assums_hyp fm)  | 
|
19  | 
val c = HOLogic.dest_Trueprop (Logic.strip_assums_concl fm)  | 
|
20  | 
fun mk_all ((s, T), (P,n)) =  | 
|
| 
42083
 
e1209fc7ecdc
added Term.is_open and Term.is_dependent convenience, to cover common situations of loose bounds;
 
wenzelm 
parents: 
38558 
diff
changeset
 | 
21  | 
if Term.is_dependent P then  | 
| 23274 | 22  | 
(HOLogic.all_const T $ Abs (s, T, P), n)  | 
23  | 
else (incr_boundvars ~1 P, n-1)  | 
|
24  | 
fun mk_all2 (v, t) = HOLogic.all_const (fastype_of v) $ lambda v t;  | 
|
| 
27651
 
16a26996c30e
moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
 
haftmann 
parents: 
26075 
diff
changeset
 | 
25  | 
val rhs = hs  | 
| 23274 | 26  | 
val np = length ps  | 
| 
33004
 
715566791eb0
always qualify NJ's old List.foldl/foldr in Isabelle/ML;
 
wenzelm 
parents: 
32960 
diff
changeset
 | 
27  | 
val (fm',np) = List.foldr (fn ((x, T), (fm,n)) => mk_all ((x, T), (fm,n)))  | 
| 
 
715566791eb0
always qualify NJ's old List.foldl/foldr in Isabelle/ML;
 
wenzelm 
parents: 
32960 
diff
changeset
 | 
28  | 
(List.foldr HOLogic.mk_imp c rhs, np) ps  | 
| 55987 | 29  | 
    val (vs, _) = List.partition (fn t => q orelse (type_of t) = @{typ nat})
 | 
| 44121 | 30  | 
(Misc_Legacy.term_frees fm' @ Misc_Legacy.term_vars fm');  | 
| 
33004
 
715566791eb0
always qualify NJ's old List.foldl/foldr in Isabelle/ML;
 
wenzelm 
parents: 
32960 
diff
changeset
 | 
31  | 
val fm2 = List.foldr mk_all2 fm' vs  | 
| 23274 | 32  | 
in (fm2, np + length vs, length rhs) end;  | 
33  | 
||
34  | 
(*Object quantifier to meta --*)  | 
|
| 55987 | 35  | 
fun spec_step n th = if n = 0 then th else (spec_step (n - 1) th) RS spec;  | 
| 23274 | 36  | 
|
37  | 
(* object implication to meta---*)  | 
|
| 55987 | 38  | 
fun mp_step n th = if n = 0 then th else (mp_step (n - 1) th) RS mp;  | 
| 23274 | 39  | 
|
40  | 
||
| 
54742
 
7a86358a3c0b
proper context for basic Simplifier operations: rewrite_rule, rewrite_goals_rule, rewrite_goals_tac etc.;
 
wenzelm 
parents: 
52131 
diff
changeset
 | 
41  | 
fun linz_tac ctxt q = Object_Logic.atomize_prems_tac ctxt THEN' SUBGOAL (fn (g, i) =>  | 
| 23274 | 42  | 
let  | 
43  | 
(* Transform the term*)  | 
|
| 55987 | 44  | 
val (t, np, nh) = prepare_for_linz q g;  | 
| 23274 | 45  | 
(* Some simpsets for dealing with mod div abs and nat*)  | 
| 
51717
 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 
wenzelm 
parents: 
47432 
diff
changeset
 | 
46  | 
val mod_div_simpset =  | 
| 
 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 
wenzelm 
parents: 
47432 
diff
changeset
 | 
47  | 
put_simpset HOL_basic_ss ctxt  | 
| 55987 | 48  | 
      addsimps @{thms refl mod_add_eq [symmetric] mod_add_left_eq [symmetric]
 | 
49  | 
mod_add_right_eq [symmetric]  | 
|
50  | 
div_add1_eq [symmetric] zdiv_zadd1_eq [symmetric]  | 
|
51  | 
mod_self  | 
|
52  | 
div_by_0 mod_by_0 div_0 mod_0  | 
|
53  | 
div_by_1 mod_by_1 div_1 mod_1  | 
|
54  | 
Suc_eq_plus1}  | 
|
| 
57514
 
bdc2c6b40bf2
prefer ac_simps collections over separate name bindings for add and mult
 
haftmann 
parents: 
56245 
diff
changeset
 | 
55  | 
      addsimps @{thms ac_simps}
 | 
| 43594 | 56  | 
      addsimprocs [@{simproc cancel_div_mod_nat}, @{simproc cancel_div_mod_int}]
 | 
| 
51717
 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 
wenzelm 
parents: 
47432 
diff
changeset
 | 
57  | 
val simpset0 =  | 
| 
 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 
wenzelm 
parents: 
47432 
diff
changeset
 | 
58  | 
put_simpset HOL_basic_ss ctxt  | 
| 55987 | 59  | 
      addsimps @{thms mod_div_equality' Suc_eq_plus1 simp_thms}
 | 
60  | 
      |> fold Splitter.add_split @{thms split_zdiv split_zmod split_div' split_min split_max}
 | 
|
| 23274 | 61  | 
(* Simp rules for changing (n::int) to int n *)  | 
| 
51717
 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 
wenzelm 
parents: 
47432 
diff
changeset
 | 
62  | 
val simpset1 =  | 
| 
 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 
wenzelm 
parents: 
47432 
diff
changeset
 | 
63  | 
put_simpset HOL_basic_ss ctxt  | 
| 55987 | 64  | 
      addsimps @{thms zdvd_int} @
 | 
65  | 
        map (fn r => r RS sym) @{thms int_numeral int_int_eq zle_int zless_int zadd_int zmult_int}
 | 
|
66  | 
      |> Splitter.add_split @{thm zdiff_int_split}
 | 
|
| 23274 | 67  | 
(*simp rules for elimination of int n*)  | 
68  | 
||
| 
51717
 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 
wenzelm 
parents: 
47432 
diff
changeset
 | 
69  | 
val simpset2 =  | 
| 
 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 
wenzelm 
parents: 
47432 
diff
changeset
 | 
70  | 
put_simpset HOL_basic_ss ctxt  | 
| 
47108
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
45654 
diff
changeset
 | 
71  | 
      addsimps [@{thm nat_0_le}, @{thm all_nat}, @{thm ex_nat}, @{thm zero_le_numeral}, @{thm order_refl}(* FIXME: necessary? *), @{thm int_0}, @{thm int_1}]
 | 
| 55987 | 72  | 
      |> fold Simplifier.add_cong @{thms conj_le_cong imp_le_cong}
 | 
| 23274 | 73  | 
(* simp rules for elimination of abs *)  | 
| 
51717
 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 
wenzelm 
parents: 
47432 
diff
changeset
 | 
74  | 
    val simpset3 = put_simpset HOL_basic_ss ctxt |> Splitter.add_split @{thm abs_split}
 | 
| 59629 | 75  | 
val ct = Thm.cterm_of ctxt (HOLogic.mk_Trueprop t)  | 
| 23274 | 76  | 
(* Theorem for the nat --> int transformation *)  | 
77  | 
val pre_thm = Seq.hd (EVERY  | 
|
78  | 
[simp_tac mod_div_simpset 1, simp_tac simpset0 1,  | 
|
79  | 
TRY (simp_tac simpset1 1), TRY (simp_tac simpset2 1),  | 
|
| 
51717
 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 
wenzelm 
parents: 
47432 
diff
changeset
 | 
80  | 
TRY (simp_tac simpset3 1), TRY (simp_tac (put_simpset cooper_ss ctxt) 1)]  | 
| 36945 | 81  | 
(Thm.trivial ct))  | 
| 
58963
 
26bf09b95dda
proper context for assume_tac (atac remains as fall-back without context);
 
wenzelm 
parents: 
57514 
diff
changeset
 | 
82  | 
fun assm_tac i = REPEAT_DETERM_N nh (assume_tac ctxt i)  | 
| 23274 | 83  | 
(* The result of the quantifier elimination *)  | 
| 55987 | 84  | 
val (th, tac) =  | 
| 59582 | 85  | 
(case Thm.prop_of pre_thm of  | 
| 56245 | 86  | 
        Const (@{const_name Pure.imp}, _) $ (Const (@{const_name Trueprop}, _) $ t1) $ _ =>
 | 
| 55987 | 87  | 
let  | 
| 60325 | 88  | 
val pth = linzqe_oracle (ctxt, Envir.eta_long [] t1)  | 
| 55987 | 89  | 
in  | 
90  | 
((pth RS iffD2) RS pre_thm,  | 
|
| 60754 | 91  | 
assm_tac (i + 1) THEN (if q then I else TRY) (resolve_tac ctxt [TrueI] i))  | 
| 55987 | 92  | 
end  | 
93  | 
| _ => (pre_thm, assm_tac i))  | 
|
| 60754 | 94  | 
in resolve_tac ctxt [mp_step nh (spec_step np th)] i THEN tac end);  | 
| 23274 | 95  | 
|
| 
23590
 
ad95084a5c63
renamed ObjectLogic.atomize_tac to ObjectLogic.atomize_prems_tac;
 
wenzelm 
parents: 
23469 
diff
changeset
 | 
96  | 
end  |