author | wenzelm |
Mon, 12 Apr 2021 14:14:47 +0200 | |
changeset 73563 | 55b66a45bc94 |
parent 69597 | ff784d5a5bfb |
child 74397 | e80c4cde6064 |
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 |
||
69597 | 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 |
69597 | 29 |
val (vs, _) = List.partition (fn t => q orelse (type_of t) = \<^typ>\<open>nat\<close>) |
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 |
64593
50c715579715
reoriented congruence rules in non-explosive direction
haftmann
parents:
64244
diff
changeset
|
48 |
addsimps @{thms refl mod_add_eq mod_add_left_eq |
50c715579715
reoriented congruence rules in non-explosive direction
haftmann
parents:
64244
diff
changeset
|
49 |
mod_add_right_eq |
68632 | 50 |
div_add1_eq [symmetric] div_add1_eq [symmetric] |
55987 | 51 |
mod_self |
52 |
div_by_0 mod_by_0 div_0 mod_0 |
|
64244 | 53 |
div_by_1 mod_by_1 div_by_Suc_0 mod_by_Suc_0 |
55987 | 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} |
69597 | 56 |
addsimprocs [\<^simproc>\<open>cancel_div_mod_nat\<close>, \<^simproc>\<open>cancel_div_mod_int\<close>] |
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 |
64243 | 59 |
addsimps @{thms minus_div_mult_eq_mod [symmetric] Suc_eq_plus1 simp_thms} |
55987 | 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 |
67118 | 64 |
addsimps @{thms int_dvd_int_iff [symmetric] of_nat_add of_nat_mult} @ |
62348 | 65 |
map (fn r => r RS sym) @{thms of_nat_numeral [where ?'a = int] int_int_eq zle_int of_nat_less_iff [where ?'a = int]} |
55987 | 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 |
62348 | 71 |
addsimps [@{thm nat_0_le}, @{thm all_nat}, @{thm ex_nat}, @{thm zero_le_numeral}, @{thm order_refl}(* FIXME: necessary? *), |
72 |
@{thm of_nat_0 [where ?'a = int]}, @{thm of_nat_1 [where ?'a = int]}] |
|
55987 | 73 |
|> fold Simplifier.add_cong @{thms conj_le_cong imp_le_cong} |
23274 | 74 |
(* simp rules for elimination of abs *) |
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
47432
diff
changeset
|
75 |
val simpset3 = put_simpset HOL_basic_ss ctxt |> Splitter.add_split @{thm abs_split} |
59629 | 76 |
val ct = Thm.cterm_of ctxt (HOLogic.mk_Trueprop t) |
23274 | 77 |
(* Theorem for the nat --> int transformation *) |
78 |
val pre_thm = Seq.hd (EVERY |
|
79 |
[simp_tac mod_div_simpset 1, simp_tac simpset0 1, |
|
80 |
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
|
81 |
TRY (simp_tac simpset3 1), TRY (simp_tac (put_simpset cooper_ss ctxt) 1)] |
36945 | 82 |
(Thm.trivial ct)) |
58963
26bf09b95dda
proper context for assume_tac (atac remains as fall-back without context);
wenzelm
parents:
57514
diff
changeset
|
83 |
fun assm_tac i = REPEAT_DETERM_N nh (assume_tac ctxt i) |
23274 | 84 |
(* The result of the quantifier elimination *) |
55987 | 85 |
val (th, tac) = |
59582 | 86 |
(case Thm.prop_of pre_thm of |
69597 | 87 |
Const (\<^const_name>\<open>Pure.imp\<close>, _) $ (Const (\<^const_name>\<open>Trueprop\<close>, _) $ t1) $ _ => |
55987 | 88 |
let |
60325 | 89 |
val pth = linzqe_oracle (ctxt, Envir.eta_long [] t1) |
55987 | 90 |
in |
91 |
((pth RS iffD2) RS pre_thm, |
|
60754 | 92 |
assm_tac (i + 1) THEN (if q then I else TRY) (resolve_tac ctxt [TrueI] i)) |
55987 | 93 |
end |
94 |
| _ => (pre_thm, assm_tac i)) |
|
60754 | 95 |
in resolve_tac ctxt [mp_step nh (spec_step np th)] i THEN tac end); |
23274 | 96 |
|
23590
ad95084a5c63
renamed ObjectLogic.atomize_tac to ObjectLogic.atomize_prems_tac;
wenzelm
parents:
23469
diff
changeset
|
97 |
end |