| author | nipkow | 
| Thu, 26 Nov 2020 19:27:28 +0100 | |
| changeset 72733 | 7b918b9f0122 | 
| parent 71937 | 92de7d74b8f8 | 
| child 73550 | 2f6855142a8c | 
| permissions | -rw-r--r-- | 
| 24584 | 1 | (* Title: HOL/Tools/Qelim/cooper.ML | 
| 23466 | 2 | Author: Amine Chaieb, TU Muenchen | 
| 36802 | 3 | |
| 4 | Presburger arithmetic by Cooper's algorithm. | |
| 23466 | 5 | *) | 
| 6 | ||
| 36799 | 7 | signature COOPER = | 
| 36798 | 8 | sig | 
| 9 | type entry | |
| 10 | val get: Proof.context -> entry | |
| 11 | val del: term list -> attribute | |
| 68632 | 12 | val add: term list -> attribute | 
| 37117 
59cee8807c29
eliminated various catch-all exception patterns, guessing at the concrete exeptions that are intended here;
 wenzelm parents: 
36945diff
changeset | 13 | exception COOPER of string | 
| 36804 | 14 | val conv: Proof.context -> conv | 
| 15 | val tac: bool -> thm list -> thm list -> Proof.context -> int -> tactic | |
| 23466 | 16 | end; | 
| 17 | ||
| 36799 | 18 | structure Cooper: COOPER = | 
| 36798 | 19 | struct | 
| 20 | ||
| 36799 | 21 | type entry = simpset * term list; | 
| 36798 | 22 | |
| 68632 | 23 | val allowed_consts = | 
| 69593 | 24 | [\<^term>\<open>(+) :: int => _\<close>, \<^term>\<open>(+) :: nat => _\<close>, | 
| 25 | \<^term>\<open>(-) :: int => _\<close>, \<^term>\<open>(-) :: nat => _\<close>, | |
| 26 | \<^term>\<open>(*) :: int => _\<close>, \<^term>\<open>(*) :: nat => _\<close>, | |
| 27 | \<^term>\<open>(div) :: int => _\<close>, \<^term>\<open>(div) :: nat => _\<close>, | |
| 28 | \<^term>\<open>(mod) :: int => _\<close>, \<^term>\<open>(mod) :: nat => _\<close>, | |
| 29 | \<^term>\<open>HOL.conj\<close>, \<^term>\<open>HOL.disj\<close>, \<^term>\<open>HOL.implies\<close>, | |
| 30 | \<^term>\<open>(=) :: int => _\<close>, \<^term>\<open>(=) :: nat => _\<close>, \<^term>\<open>(=) :: bool => _\<close>, | |
| 31 | \<^term>\<open>(<) :: int => _\<close>, \<^term>\<open>(<) :: nat => _\<close>, | |
| 32 | \<^term>\<open>(<=) :: int => _\<close>, \<^term>\<open>(<=) :: nat => _\<close>, | |
| 33 | \<^term>\<open>(dvd) :: int => _\<close>, \<^term>\<open>(dvd) :: nat => _\<close>, | |
| 34 | \<^term>\<open>abs :: int => _\<close>, | |
| 35 | \<^term>\<open>max :: int => _\<close>, \<^term>\<open>max :: nat => _\<close>, | |
| 36 | \<^term>\<open>min :: int => _\<close>, \<^term>\<open>min :: nat => _\<close>, | |
| 37 |    \<^term>\<open>uminus :: int => _\<close>, (*@ {term "uminus :: nat => _"},*)
 | |
| 38 | \<^term>\<open>Not\<close>, \<^term>\<open>Suc\<close>, | |
| 39 | \<^term>\<open>Ex :: (int => _) => _\<close>, \<^term>\<open>Ex :: (nat => _) => _\<close>, | |
| 40 | \<^term>\<open>All :: (int => _) => _\<close>, \<^term>\<open>All :: (nat => _) => _\<close>, | |
| 41 | \<^term>\<open>nat\<close>, \<^term>\<open>int\<close>, | |
| 42 | \<^term>\<open>Num.One\<close>, \<^term>\<open>Num.Bit0\<close>, \<^term>\<open>Num.Bit1\<close>, | |
| 43 | \<^term>\<open>Num.numeral :: num => int\<close>, \<^term>\<open>Num.numeral :: num => nat\<close>, | |
| 44 | \<^term>\<open>0::int\<close>, \<^term>\<open>1::int\<close>, \<^term>\<open>0::nat\<close>, \<^term>\<open>1::nat\<close>, | |
| 45 | \<^term>\<open>True\<close>, \<^term>\<open>False\<close>]; | |
| 36798 | 46 | |
| 47 | structure Data = Generic_Data | |
| 48 | ( | |
| 49 | type T = simpset * term list; | |
| 50 | val empty = (HOL_ss, allowed_consts); | |
| 41472 
f6ab14e61604
misc tuning and comments based on review of Theory_Data, Proof_Data, Generic_Data usage;
 wenzelm parents: 
39159diff
changeset | 51 | val extend = I; | 
| 36798 | 52 | fun merge ((ss1, ts1), (ss2, ts2)) = | 
| 53 | (merge_ss (ss1, ss2), Library.merge (op aconv) (ts1, ts2)); | |
| 54 | ); | |
| 55 | ||
| 56 | val get = Data.get o Context.Proof; | |
| 57 | ||
| 68632 | 58 | fun add ts = Thm.declaration_attribute (fn th => fn context => | 
| 51717 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 wenzelm parents: 
51143diff
changeset | 59 | context |> Data.map (fn (ss, ts') => | 
| 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 wenzelm parents: 
51143diff
changeset | 60 | (simpset_map (Context.proof_of context) (fn ctxt => ctxt addsimps [th]) ss, | 
| 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 wenzelm parents: 
51143diff
changeset | 61 | merge (op aconv) (ts', ts)))) | 
| 36798 | 62 | |
| 68632 | 63 | fun del ts = Thm.declaration_attribute (fn th => fn context => | 
| 51717 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 wenzelm parents: 
51143diff
changeset | 64 | context |> Data.map (fn (ss, ts') => | 
| 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 wenzelm parents: 
51143diff
changeset | 65 | (simpset_map (Context.proof_of context) (fn ctxt => ctxt delsimps [th]) ss, | 
| 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 wenzelm parents: 
51143diff
changeset | 66 | subtract (op aconv) ts' ts))) | 
| 36798 | 67 | |
| 27018 | 68 | fun simp_thms_conv ctxt = | 
| 51717 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 wenzelm parents: 
51143diff
changeset | 69 |   Simplifier.rewrite (put_simpset HOL_basic_ss ctxt addsimps @{thms simp_thms});
 | 
| 23484 | 70 | val FWD = Drule.implies_elim_list; | 
| 23466 | 71 | |
| 69593 | 72 | val true_tm = \<^cterm>\<open>True\<close>; | 
| 73 | val false_tm = \<^cterm>\<open>False\<close>; | |
| 71937 | 74 | val presburger_ss = simpset_of (\<^context> addsimps @{thms zdvd1_eq});
 | 
| 45196 
78478d938cb8
inlined @{thms} (ML compile-time) allows to get rid of legacy zadd_ac as well (cf. 49e305100097);
 wenzelm parents: 
44121diff
changeset | 75 | val lin_ss = | 
| 69593 | 76 | simpset_of (put_simpset presburger_ss \<^context> | 
| 71937 | 77 |     addsimps (@{thms dvd_eq_mod_eq_0 add.assoc [where 'a = int] add.commute [where 'a = int] add.left_commute [where 'a = int]
 | 
| 78 | mult.assoc [where 'a = int] mult.commute [where 'a = int] mult.left_commute [where 'a = int] | |
| 79 | })); | |
| 23689 
0410269099dc
replaced code generator framework for reflected cooper
 haftmann parents: 
23582diff
changeset | 80 | |
| 23466 | 81 | val iT = HOLogic.intT | 
| 82 | val bT = HOLogic.boolT; | |
| 36831 
3037d6810fca
tuned code; toward a tightended interface with generated code
 haftmann parents: 
36807diff
changeset | 83 | val dest_number = HOLogic.dest_number #> snd; | 
| 
3037d6810fca
tuned code; toward a tightended interface with generated code
 haftmann parents: 
36807diff
changeset | 84 | val perhaps_number = try dest_number; | 
| 
3037d6810fca
tuned code; toward a tightended interface with generated code
 haftmann parents: 
36807diff
changeset | 85 | val is_number = can dest_number; | 
| 23466 | 86 | |
| 32429 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 87 | val [miconj, midisj, mieq, mineq, milt, mile, migt, mige, midvd, mindvd, miP] = | 
| 69593 | 88 |     map (Thm.instantiate' [SOME \<^ctyp>\<open>int\<close>] []) @{thms "minf"};
 | 
| 23466 | 89 | |
| 32429 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 90 | val [infDconj, infDdisj, infDdvd,infDndvd,infDP] = | 
| 69593 | 91 |     map (Thm.instantiate' [SOME \<^ctyp>\<open>int\<close>] []) @{thms "inf_period"};
 | 
| 23466 | 92 | |
| 32429 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 93 | val [piconj, pidisj, pieq,pineq,pilt,pile,pigt,pige,pidvd,pindvd,piP] = | 
| 69593 | 94 |     map (Thm.instantiate' [SOME \<^ctyp>\<open>int\<close>] []) @{thms "pinf"};
 | 
| 23466 | 95 | |
| 69593 | 96 | val [miP, piP] = map (Thm.instantiate' [SOME \<^ctyp>\<open>bool\<close>] []) [miP, piP]; | 
| 23466 | 97 | |
| 69593 | 98 | val infDP = Thm.instantiate' (map SOME [\<^ctyp>\<open>int\<close>, \<^ctyp>\<open>bool\<close>]) [] infDP; | 
| 23466 | 99 | |
| 32429 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 100 | val [[asetconj, asetdisj, aseteq, asetneq, asetlt, asetle, | 
| 23466 | 101 | asetgt, asetge, asetdvd, asetndvd,asetP], | 
| 32429 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 102 | [bsetconj, bsetdisj, bseteq, bsetneq, bsetlt, bsetle, | 
| 23466 | 103 |       bsetgt, bsetge, bsetdvd, bsetndvd,bsetP]]  = [@{thms "aset"}, @{thms "bset"}];
 | 
| 104 | ||
| 36797 
cb074cec7a30
dropped unused bindings; avoid open (documents dependency on generated code more explicitly)
 haftmann parents: 
36717diff
changeset | 105 | val [cpmi, cppi] = [@{thm "cpmi"}, @{thm "cppi"}];
 | 
| 23466 | 106 | |
| 69593 | 107 | val unity_coeff_ex = Thm.instantiate' [SOME \<^ctyp>\<open>int\<close>] [] @{thm "unity_coeff_ex"};
 | 
| 23466 | 108 | |
| 32429 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 109 | val [zdvd_mono,simp_from_to,all_not_ex] = | 
| 23466 | 110 |      [@{thm "zdvd_mono"}, @{thm "simp_from_to"}, @{thm "all_not_ex"}];
 | 
| 111 | ||
| 112 | val [dvd_uminus, dvd_uminus'] = @{thms "uminus_dvd_conv"};
 | |
| 113 | ||
| 51717 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 wenzelm parents: 
51143diff
changeset | 114 | val eval_ss = | 
| 69593 | 115 | simpset_of (put_simpset presburger_ss \<^context> | 
| 51717 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 wenzelm parents: 
51143diff
changeset | 116 | addsimps [simp_from_to] delsimps [insert_iff, bex_triv]); | 
| 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 wenzelm parents: 
51143diff
changeset | 117 | fun eval_conv ctxt = Simplifier.rewrite (put_simpset eval_ss ctxt); | 
| 23466 | 118 | |
| 23689 
0410269099dc
replaced code generator framework for reflected cooper
 haftmann parents: 
23582diff
changeset | 119 | (* recognising cterm without moving to terms *) | 
| 23466 | 120 | |
| 32429 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 121 | datatype fm = And of cterm*cterm| Or of cterm*cterm| Eq of cterm | NEq of cterm | 
| 23466 | 122 | | Lt of cterm | Le of cterm | Gt of cterm | Ge of cterm | 
| 123 | | Dvd of cterm*cterm | NDvd of cterm*cterm | Nox | |
| 124 | ||
| 32429 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 125 | fun whatis x ct = | 
| 59582 | 126 | ( case Thm.term_of ct of | 
| 69593 | 127 | Const(\<^const_name>\<open>HOL.conj\<close>,_)$_$_ => And (Thm.dest_binop ct) | 
| 128 | | Const (\<^const_name>\<open>HOL.disj\<close>,_)$_$_ => Or (Thm.dest_binop ct) | |
| 129 | | Const (\<^const_name>\<open>HOL.eq\<close>,_)$y$_ => if Thm.term_of x aconv y then Eq (Thm.dest_arg ct) else Nox | |
| 130 | | Const (\<^const_name>\<open>Not\<close>,_) $ (Const (\<^const_name>\<open>HOL.eq\<close>,_)$y$_) => | |
| 59582 | 131 | if Thm.term_of x aconv y then NEq (funpow 2 Thm.dest_arg ct) else Nox | 
| 69593 | 132 | | Const (\<^const_name>\<open>Orderings.less\<close>, _) $ y$ z => | 
| 59582 | 133 | if Thm.term_of x aconv y then Lt (Thm.dest_arg ct) | 
| 134 | else if Thm.term_of x aconv z then Gt (Thm.dest_arg1 ct) else Nox | |
| 69593 | 135 | | Const (\<^const_name>\<open>Orderings.less_eq\<close>, _) $ y $ z => | 
| 59582 | 136 | if Thm.term_of x aconv y then Le (Thm.dest_arg ct) | 
| 137 | else if Thm.term_of x aconv z then Ge (Thm.dest_arg1 ct) else Nox | |
| 69593 | 138 | | Const (\<^const_name>\<open>Rings.dvd\<close>,_)$_$(Const(\<^const_name>\<open>Groups.plus\<close>,_)$y$_) => | 
| 59582 | 139 | if Thm.term_of x aconv y then Dvd (Thm.dest_binop ct ||> Thm.dest_arg) else Nox | 
| 69593 | 140 | | Const (\<^const_name>\<open>Not\<close>,_) $ (Const (\<^const_name>\<open>Rings.dvd\<close>,_)$_$(Const(\<^const_name>\<open>Groups.plus\<close>,_)$y$_)) => | 
| 59582 | 141 | if Thm.term_of x aconv y then | 
| 32429 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 142 | NDvd (Thm.dest_binop (Thm.dest_arg ct) ||> Thm.dest_arg) else Nox | 
| 23466 | 143 | | _ => Nox) | 
| 32429 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 144 | handle CTERM _ => Nox; | 
| 23466 | 145 | |
| 32429 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 146 | fun get_pmi_term t = | 
| 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 147 | let val (x,eq) = | 
| 23466 | 148 | (Thm.dest_abs NONE o Thm.dest_arg o snd o Thm.dest_abs NONE o Thm.dest_arg) | 
| 149 | (Thm.dest_arg t) | |
| 46497 
89ccf66aa73d
renamed Thm.capply to Thm.apply, and Thm.cabs to Thm.lambda in conformance with similar operations in structure Term and Logic;
 wenzelm parents: 
45740diff
changeset | 150 | in (Thm.lambda x o Thm.dest_arg o Thm.dest_arg) eq end; | 
| 23466 | 151 | |
| 59582 | 152 | val get_pmi = get_pmi_term o Thm.cprop_of; | 
| 23466 | 153 | |
| 69593 | 154 | val p_v' = (("P'", 0), \<^typ>\<open>int \<Rightarrow> bool\<close>);
 | 
| 155 | val q_v' = (("Q'", 0), \<^typ>\<open>int \<Rightarrow> bool\<close>);
 | |
| 156 | val p_v = (("P", 0), \<^typ>\<open>int \<Rightarrow> bool\<close>);
 | |
| 157 | val q_v = (("Q", 0), \<^typ>\<open>int \<Rightarrow> bool\<close>);
 | |
| 23466 | 158 | |
| 32429 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 159 | fun myfwd (th1, th2, th3) p q | 
| 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 160 | [(th_1,th_2,th_3), (th_1',th_2',th_3')] = | 
| 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 161 | let | 
| 23466 | 162 | val (mp', mq') = (get_pmi th_1, get_pmi th_1') | 
| 43333 
2bdec7f430d3
renamed Drule.instantiate to Drule.instantiate_normalize to emphasize its meaning as opposed to plain Thm.instantiate;
 wenzelm parents: 
42793diff
changeset | 163 | val mi_th = FWD (Drule.instantiate_normalize ([],[(p_v,p),(q_v,q), (p_v',mp'),(q_v',mq')]) th1) | 
| 23466 | 164 | [th_1, th_1'] | 
| 43333 
2bdec7f430d3
renamed Drule.instantiate to Drule.instantiate_normalize to emphasize its meaning as opposed to plain Thm.instantiate;
 wenzelm parents: 
42793diff
changeset | 165 | val infD_th = FWD (Drule.instantiate_normalize ([],[(p_v,mp'), (q_v, mq')]) th3) [th_3,th_3'] | 
| 
2bdec7f430d3
renamed Drule.instantiate to Drule.instantiate_normalize to emphasize its meaning as opposed to plain Thm.instantiate;
 wenzelm parents: 
42793diff
changeset | 166 | val set_th = FWD (Drule.instantiate_normalize ([],[(p_v,p), (q_v,q)]) th2) [th_2, th_2'] | 
| 23466 | 167 | in (mi_th, set_th, infD_th) | 
| 168 | end; | |
| 169 | ||
| 60801 | 170 | val inst' = fn cts => Thm.instantiate' [] (map SOME cts); | 
| 171 | val infDTrue = Thm.instantiate' [] [SOME true_tm] infDP; | |
| 172 | val infDFalse = Thm.instantiate' [] [SOME false_tm] infDP; | |
| 23466 | 173 | |
| 69593 | 174 | val cadd = \<^cterm>\<open>(+) :: int => _\<close> | 
| 175 | val cmulC = \<^cterm>\<open>(*) :: int => _\<close> | |
| 176 | val cminus = \<^cterm>\<open>(-) :: int => _\<close> | |
| 177 | val cone = \<^cterm>\<open>1 :: int\<close> | |
| 59582 | 178 | val [addC, mulC, subC] = map Thm.term_of [cadd, cmulC, cminus] | 
| 69593 | 179 | val [zero, one] = [\<^term>\<open>0 :: int\<close>, \<^term>\<open>1 :: int\<close>]; | 
| 23466 | 180 | |
| 36831 
3037d6810fca
tuned code; toward a tightended interface with generated code
 haftmann parents: 
36807diff
changeset | 181 | fun numeral1 f n = HOLogic.mk_number iT (f (dest_number n)); | 
| 
3037d6810fca
tuned code; toward a tightended interface with generated code
 haftmann parents: 
36807diff
changeset | 182 | fun numeral2 f m n = HOLogic.mk_number iT (f (dest_number m) (dest_number n)); | 
| 23466 | 183 | |
| 32429 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 184 | val [minus1,plus1] = | 
| 46497 
89ccf66aa73d
renamed Thm.capply to Thm.apply, and Thm.cabs to Thm.lambda in conformance with similar operations in structure Term and Logic;
 wenzelm parents: 
45740diff
changeset | 185 | map (fn c => fn t => Thm.apply (Thm.apply c t) cone) [cminus,cadd]; | 
| 23466 | 186 | |
| 32429 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 187 | fun decomp_pinf x dvd inS [aseteq, asetneq, asetlt, asetle, | 
| 23466 | 188 | asetgt, asetge,asetdvd,asetndvd,asetP, | 
| 189 | infDdvd, infDndvd, asetconj, | |
| 190 | asetdisj, infDconj, infDdisj] cp = | |
| 191 | case (whatis x cp) of | |
| 46497 
89ccf66aa73d
renamed Thm.capply to Thm.apply, and Thm.cabs to Thm.lambda in conformance with similar operations in structure Term and Logic;
 wenzelm parents: 
45740diff
changeset | 192 | And (p,q) => ([p,q], myfwd (piconj, asetconj, infDconj) (Thm.lambda x p) (Thm.lambda x q)) | 
| 
89ccf66aa73d
renamed Thm.capply to Thm.apply, and Thm.cabs to Thm.lambda in conformance with similar operations in structure Term and Logic;
 wenzelm parents: 
45740diff
changeset | 193 | | Or (p,q) => ([p,q], myfwd (pidisj, asetdisj, infDdisj) (Thm.lambda x p) (Thm.lambda x q)) | 
| 23466 | 194 | | Eq t => ([], K (inst' [t] pieq, FWD (inst' [t] aseteq) [inS (plus1 t)], infDFalse)) | 
| 195 | | NEq t => ([], K (inst' [t] pineq, FWD (inst' [t] asetneq) [inS t], infDTrue)) | |
| 196 | | Lt t => ([], K (inst' [t] pilt, FWD (inst' [t] asetlt) [inS t], infDFalse)) | |
| 197 | | Le t => ([], K (inst' [t] pile, FWD (inst' [t] asetle) [inS (plus1 t)], infDFalse)) | |
| 198 | | Gt t => ([], K (inst' [t] pigt, (inst' [t] asetgt), infDTrue)) | |
| 199 | | Ge t => ([], K (inst' [t] pige, (inst' [t] asetge), infDTrue)) | |
| 32429 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 200 | | Dvd (d,s) => | 
| 23466 | 201 | ([],let val dd = dvd d | 
| 32429 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 202 | in K (inst' [d,s] pidvd, FWD (inst' [d,s] asetdvd) [dd],FWD (inst' [d,s] infDdvd) [dd]) end) | 
| 23466 | 203 | | NDvd(d,s) => ([],let val dd = dvd d | 
| 32429 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 204 | in K (inst' [d,s] pindvd, FWD (inst' [d,s] asetndvd) [dd], FWD (inst' [d,s] infDndvd) [dd]) end) | 
| 23466 | 205 | | _ => ([], K (inst' [cp] piP, inst' [cp] asetP, inst' [cp] infDP)); | 
| 206 | ||
| 207 | fun decomp_minf x dvd inS [bseteq,bsetneq,bsetlt, bsetle, bsetgt, | |
| 208 | bsetge,bsetdvd,bsetndvd,bsetP, | |
| 209 | infDdvd, infDndvd, bsetconj, | |
| 210 | bsetdisj, infDconj, infDdisj] cp = | |
| 211 | case (whatis x cp) of | |
| 46497 
89ccf66aa73d
renamed Thm.capply to Thm.apply, and Thm.cabs to Thm.lambda in conformance with similar operations in structure Term and Logic;
 wenzelm parents: 
45740diff
changeset | 212 | And (p,q) => ([p,q], myfwd (miconj, bsetconj, infDconj) (Thm.lambda x p) (Thm.lambda x q)) | 
| 
89ccf66aa73d
renamed Thm.capply to Thm.apply, and Thm.cabs to Thm.lambda in conformance with similar operations in structure Term and Logic;
 wenzelm parents: 
45740diff
changeset | 213 | | Or (p,q) => ([p,q], myfwd (midisj, bsetdisj, infDdisj) (Thm.lambda x p) (Thm.lambda x q)) | 
| 23466 | 214 | | Eq t => ([], K (inst' [t] mieq, FWD (inst' [t] bseteq) [inS (minus1 t)], infDFalse)) | 
| 215 | | NEq t => ([], K (inst' [t] mineq, FWD (inst' [t] bsetneq) [inS t], infDTrue)) | |
| 216 | | Lt t => ([], K (inst' [t] milt, (inst' [t] bsetlt), infDTrue)) | |
| 217 | | Le t => ([], K (inst' [t] mile, (inst' [t] bsetle), infDTrue)) | |
| 218 | | Gt t => ([], K (inst' [t] migt, FWD (inst' [t] bsetgt) [inS t], infDFalse)) | |
| 219 | | Ge t => ([], K (inst' [t] mige,FWD (inst' [t] bsetge) [inS (minus1 t)], infDFalse)) | |
| 220 | | Dvd (d,s) => ([],let val dd = dvd d | |
| 32429 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 221 | in K (inst' [d,s] midvd, FWD (inst' [d,s] bsetdvd) [dd] , FWD (inst' [d,s] infDdvd) [dd]) end) | 
| 23466 | 222 | | NDvd (d,s) => ([],let val dd = dvd d | 
| 32429 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 223 | in K (inst' [d,s] mindvd, FWD (inst' [d,s] bsetndvd) [dd], FWD (inst' [d,s] infDndvd) [dd]) end) | 
| 23466 | 224 | | _ => ([], K (inst' [cp] miP, inst' [cp] bsetP, inst' [cp] infDP)) | 
| 225 | ||
| 226 | (* Canonical linear form for terms, formulae etc.. *) | |
| 32429 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 227 | fun provelin ctxt t = Goal.prove ctxt [] [] t | 
| 51717 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 wenzelm parents: 
51143diff
changeset | 228 | (fn _ => EVERY [simp_tac (put_simpset lin_ss ctxt) 1, TRY (Lin_Arith.tac ctxt 1)]); | 
| 32429 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 229 | fun linear_cmul 0 tm = zero | 
| 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 230 | | linear_cmul n tm = case tm of | 
| 69593 | 231 | Const (\<^const_name>\<open>Groups.plus\<close>, _) $ a $ b => addC $ linear_cmul n a $ linear_cmul n b | 
| 232 | | Const (\<^const_name>\<open>Groups.times\<close>, _) $ c $ x => mulC $ numeral1 (fn m => n * m) c $ x | |
| 233 | | Const (\<^const_name>\<open>Groups.minus\<close>, _) $ a $ b => subC $ linear_cmul n a $ linear_cmul n b | |
| 234 | | (m as Const (\<^const_name>\<open>Groups.uminus\<close>, _)) $ a => m $ linear_cmul n a | |
| 25768 | 235 | | _ => numeral1 (fn m => n * m) tm; | 
| 32429 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 236 | fun earlier [] x y = false | 
| 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 237 | | earlier (h::t) x y = | 
| 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 238 | if h aconv y then false else if h aconv x then true else earlier t x y; | 
| 23466 | 239 | |
| 32429 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 240 | fun linear_add vars tm1 tm2 = case (tm1, tm2) of | 
| 69593 | 241 | (Const (\<^const_name>\<open>Groups.plus\<close>, _) $ (Const (\<^const_name>\<open>Groups.times\<close>, _) $ c1 $ x1) $ r1, | 
| 242 | Const (\<^const_name>\<open>Groups.plus\<close>, _) $ (Const (\<^const_name>\<open>Groups.times\<close>, _) $ c2 $ x2) $ r2) => | |
| 32429 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 243 | if x1 = x2 then | 
| 33002 | 244 | let val c = numeral2 Integer.add c1 c2 | 
| 25768 | 245 | in if c = zero then linear_add vars r1 r2 | 
| 246 | else addC$(mulC$c$x1)$(linear_add vars r1 r2) | |
| 32429 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 247 | end | 
| 25768 | 248 | else if earlier vars x1 x2 then addC $ (mulC $ c1 $ x1) $ linear_add vars r1 tm2 | 
| 249 | else addC $ (mulC $ c2 $ x2) $ linear_add vars tm1 r2 | |
| 69593 | 250 | | (Const (\<^const_name>\<open>Groups.plus\<close>, _) $ (Const (\<^const_name>\<open>Groups.times\<close>, _) $ c1 $ x1) $ r1, _) => | 
| 25768 | 251 | addC $ (mulC $ c1 $ x1) $ linear_add vars r1 tm2 | 
| 69593 | 252 | | (_, Const (\<^const_name>\<open>Groups.plus\<close>, _) $ (Const (\<^const_name>\<open>Groups.times\<close>, _) $ c2 $ x2) $ r2) => | 
| 25768 | 253 | addC $ (mulC $ c2 $ x2) $ linear_add vars tm1 r2 | 
| 33002 | 254 | | (_, _) => numeral2 Integer.add tm1 tm2; | 
| 32429 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 255 | |
| 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 256 | fun linear_neg tm = linear_cmul ~1 tm; | 
| 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 257 | fun linear_sub vars tm1 tm2 = linear_add vars tm1 (linear_neg tm2); | 
| 23466 | 258 | |
| 36806 | 259 | exception COOPER of string; | 
| 23466 | 260 | |
| 36831 
3037d6810fca
tuned code; toward a tightended interface with generated code
 haftmann parents: 
36807diff
changeset | 261 | fun lint vars tm = if is_number tm then tm else case tm of | 
| 69593 | 262 | Const (\<^const_name>\<open>Groups.uminus\<close>, _) $ t => linear_neg (lint vars t) | 
| 263 | | Const (\<^const_name>\<open>Groups.plus\<close>, _) $ s $ t => linear_add vars (lint vars s) (lint vars t) | |
| 264 | | Const (\<^const_name>\<open>Groups.minus\<close>, _) $ s $ t => linear_sub vars (lint vars s) (lint vars t) | |
| 265 | | Const (\<^const_name>\<open>Groups.times\<close>, _) $ s $ t => | |
| 32429 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 266 | let val s' = lint vars s | 
| 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 267 | val t' = lint vars t | 
| 36831 
3037d6810fca
tuned code; toward a tightended interface with generated code
 haftmann parents: 
36807diff
changeset | 268 | in case perhaps_number s' of SOME n => linear_cmul n t' | 
| 
3037d6810fca
tuned code; toward a tightended interface with generated code
 haftmann parents: 
36807diff
changeset | 269 | | NONE => (case perhaps_number t' of SOME n => linear_cmul n s' | 
| 
3037d6810fca
tuned code; toward a tightended interface with generated code
 haftmann parents: 
36807diff
changeset | 270 | | NONE => raise COOPER "lint: not linear") | 
| 32429 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 271 | end | 
| 25768 | 272 | | _ => addC $ (mulC $ one $ tm) $ zero; | 
| 23466 | 273 | |
| 69593 | 274 | fun lin (vs as _::_) (Const (\<^const_name>\<open>Not\<close>, _) $ (Const (\<^const_name>\<open>Orderings.less\<close>, T) $ s $ t)) = | 
| 275 | lin vs (Const (\<^const_name>\<open>Orderings.less_eq\<close>, T) $ t $ s) | |
| 276 | | lin (vs as _::_) (Const (\<^const_name>\<open>Not\<close>,_) $ (Const(\<^const_name>\<open>Orderings.less_eq\<close>, T) $ s $ t)) = | |
| 277 | lin vs (Const (\<^const_name>\<open>Orderings.less\<close>, T) $ t $ s) | |
| 278 | | lin vs (Const (\<^const_name>\<open>Not\<close>,T)$t) = Const (\<^const_name>\<open>Not\<close>,T)$ (lin vs t) | |
| 279 | | lin (vs as _::_) (Const(\<^const_name>\<open>Rings.dvd\<close>,_)$d$t) = | |
| 280 | HOLogic.mk_binrel \<^const_name>\<open>Rings.dvd\<close> (numeral1 abs d, lint vs t) | |
| 281 | | lin (vs as x::_) ((b as Const(\<^const_name>\<open>HOL.eq\<close>,_))$s$t) = | |
| 32429 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 282 | (case lint vs (subC$t$s) of | 
| 51143 
0a2371e7ced3
two target language numeral types: integer and natural, as replacement for code_numeral;
 haftmann parents: 
50321diff
changeset | 283 | (t as _$(m$c$y)$r) => | 
| 23466 | 284 | if x <> y then b$zero$t | 
| 36831 
3037d6810fca
tuned code; toward a tightended interface with generated code
 haftmann parents: 
36807diff
changeset | 285 | else if dest_number c < 0 then b$(m$(numeral1 ~ c)$y)$r | 
| 23466 | 286 | else b$(m$c$y)$(linear_neg r) | 
| 287 | | t => b$zero$t) | |
| 32429 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 288 | | lin (vs as x::_) (b$s$t) = | 
| 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 289 | (case lint vs (subC$t$s) of | 
| 51143 
0a2371e7ced3
two target language numeral types: integer and natural, as replacement for code_numeral;
 haftmann parents: 
50321diff
changeset | 290 | (t as _$(m$c$y)$r) => | 
| 23466 | 291 | if x <> y then b$zero$t | 
| 36831 
3037d6810fca
tuned code; toward a tightended interface with generated code
 haftmann parents: 
36807diff
changeset | 292 | else if dest_number c < 0 then b$(m$(numeral1 ~ c)$y)$r | 
| 23466 | 293 | else b$(linear_neg r)$(m$c$y) | 
| 294 | | t => b$zero$t) | |
| 295 | | lin vs fm = fm; | |
| 296 | ||
| 32429 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 297 | fun lint_conv ctxt vs ct = | 
| 59582 | 298 | let val t = Thm.term_of ct | 
| 23466 | 299 | in (provelin ctxt ((HOLogic.eq_const iT)$t$(lint vs t) |> HOLogic.mk_Trueprop)) | 
| 300 | RS eq_reflection | |
| 301 | end; | |
| 302 | ||
| 69593 | 303 | fun is_intrel_type T = T = \<^typ>\<open>int => int => bool\<close>; | 
| 32398 | 304 | |
| 305 | fun is_intrel (b$_$_) = is_intrel_type (fastype_of b) | |
| 69593 | 306 | | is_intrel (\<^term>\<open>Not\<close>$(b$_$_)) = is_intrel_type (fastype_of b) | 
| 23466 | 307 | | is_intrel _ = false; | 
| 32429 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 308 | |
| 59582 | 309 | fun linearize_conv ctxt vs ct = case Thm.term_of ct of | 
| 69593 | 310 | Const(\<^const_name>\<open>Rings.dvd\<close>,_)$_$_ => | 
| 32429 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 311 | let | 
| 36797 
cb074cec7a30
dropped unused bindings; avoid open (documents dependency on generated code more explicitly)
 haftmann parents: 
36717diff
changeset | 312 | val th = Conv.binop_conv (lint_conv ctxt vs) ct | 
| 23466 | 313 | val (d',t') = Thm.dest_binop (Thm.rhs_of th) | 
| 59582 | 314 | val (dt',tt') = (Thm.term_of d', Thm.term_of t') | 
| 36831 
3037d6810fca
tuned code; toward a tightended interface with generated code
 haftmann parents: 
36807diff
changeset | 315 | in if is_number dt' andalso is_number tt' | 
| 51717 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 wenzelm parents: 
51143diff
changeset | 316 | then Conv.fconv_rule (Conv.arg_conv (Simplifier.rewrite (put_simpset presburger_ss ctxt))) th | 
| 32429 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 317 | else | 
| 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 318 | let | 
| 50321 
df5553c4973f
add check to Cooper's algorithm that left-hand of dvd is a numeral
 hoelzl parents: 
47476diff
changeset | 319 | val dth = | 
| 59582 | 320 | case perhaps_number (Thm.term_of d') of | 
| 50321 
df5553c4973f
add check to Cooper's algorithm that left-hand of dvd is a numeral
 hoelzl parents: 
47476diff
changeset | 321 | SOME d => if d < 0 then | 
| 
df5553c4973f
add check to Cooper's algorithm that left-hand of dvd is a numeral
 hoelzl parents: 
47476diff
changeset | 322 | (Conv.fconv_rule (Conv.arg_conv (Conv.arg1_conv (lint_conv ctxt vs))) | 
| 
df5553c4973f
add check to Cooper's algorithm that left-hand of dvd is a numeral
 hoelzl parents: 
47476diff
changeset | 323 | (Thm.transitive th (inst' [d',t'] dvd_uminus)) | 
| 
df5553c4973f
add check to Cooper's algorithm that left-hand of dvd is a numeral
 hoelzl parents: 
47476diff
changeset | 324 | handle TERM _ => th) | 
| 
df5553c4973f
add check to Cooper's algorithm that left-hand of dvd is a numeral
 hoelzl parents: 
47476diff
changeset | 325 | else th | 
| 
df5553c4973f
add check to Cooper's algorithm that left-hand of dvd is a numeral
 hoelzl parents: 
47476diff
changeset | 326 | | NONE => raise COOPER "linearize_conv: not linear" | 
| 23466 | 327 | val d'' = Thm.rhs_of dth |> Thm.dest_arg1 | 
| 328 | in | |
| 32429 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 329 | case tt' of | 
| 69593 | 330 | Const(\<^const_name>\<open>Groups.plus\<close>,_)$(Const(\<^const_name>\<open>Groups.times\<close>,_)$c$_)$_ => | 
| 36831 
3037d6810fca
tuned code; toward a tightended interface with generated code
 haftmann parents: 
36807diff
changeset | 331 | let val x = dest_number c | 
| 36797 
cb074cec7a30
dropped unused bindings; avoid open (documents dependency on generated code more explicitly)
 haftmann parents: 
36717diff
changeset | 332 | in if x < 0 then Conv.fconv_rule (Conv.arg_conv (Conv.arg_conv (lint_conv ctxt vs))) | 
| 23466 | 333 | (Thm.transitive dth (inst' [d'',t'] dvd_uminus')) | 
| 334 | else dth end | |
| 335 | | _ => dth | |
| 336 | end | |
| 337 | end | |
| 69593 | 338 | | Const (\<^const_name>\<open>Not\<close>,_)$(Const(\<^const_name>\<open>Rings.dvd\<close>,_)$_$_) => Conv.arg_conv (linearize_conv ctxt vs) ct | 
| 32429 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 339 | | t => if is_intrel t | 
| 23466 | 340 | then (provelin ctxt ((HOLogic.eq_const bT)$t$(lin vs t) |> HOLogic.mk_Trueprop)) | 
| 341 | RS eq_reflection | |
| 36945 | 342 | else Thm.reflexive ct; | 
| 23466 | 343 | |
| 69593 | 344 | val dvdc = \<^cterm>\<open>(dvd) :: int => _\<close>; | 
| 23466 | 345 | |
| 32429 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 346 | fun unify ctxt q = | 
| 23466 | 347 | let | 
| 348 | val (e,(cx,p)) = q |> Thm.dest_comb ||> Thm.dest_abs NONE | |
| 59582 | 349 | val x = Thm.term_of cx | 
| 24630 
351a308ab58d
simplified type int (eliminated IntInf.int, integer);
 wenzelm parents: 
24584diff
changeset | 350 | val ins = insert (op = : int * int -> bool) | 
| 32429 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 351 | fun h (acc,dacc) t = | 
| 59582 | 352 | case Thm.term_of t of | 
| 69593 | 353 | Const(s,_)$(Const(\<^const_name>\<open>Groups.times\<close>,_)$c$y)$ _ => | 
| 23881 | 354 | if x aconv y andalso member (op =) | 
| 69593 | 355 | [\<^const_name>\<open>HOL.eq\<close>, \<^const_name>\<open>Orderings.less\<close>, \<^const_name>\<open>Orderings.less_eq\<close>] s | 
| 36831 
3037d6810fca
tuned code; toward a tightended interface with generated code
 haftmann parents: 
36807diff
changeset | 356 | then (ins (dest_number c) acc,dacc) else (acc,dacc) | 
| 69593 | 357 | | Const(s,_)$_$(Const(\<^const_name>\<open>Groups.times\<close>,_)$c$y) => | 
| 23881 | 358 | if x aconv y andalso member (op =) | 
| 69593 | 359 | [\<^const_name>\<open>Orderings.less\<close>, \<^const_name>\<open>Orderings.less_eq\<close>] s | 
| 36831 
3037d6810fca
tuned code; toward a tightended interface with generated code
 haftmann parents: 
36807diff
changeset | 360 | then (ins (dest_number c) acc, dacc) else (acc,dacc) | 
| 69593 | 361 | | Const(\<^const_name>\<open>Rings.dvd\<close>,_)$_$(Const(\<^const_name>\<open>Groups.plus\<close>,_)$(Const(\<^const_name>\<open>Groups.times\<close>,_)$c$y)$_) => | 
| 36831 
3037d6810fca
tuned code; toward a tightended interface with generated code
 haftmann parents: 
36807diff
changeset | 362 | if x aconv y then (acc,ins (dest_number c) dacc) else (acc,dacc) | 
| 69593 | 363 | | Const(\<^const_name>\<open>HOL.conj\<close>,_)$_$_ => h (h (acc,dacc) (Thm.dest_arg1 t)) (Thm.dest_arg t) | 
| 364 | | Const(\<^const_name>\<open>HOL.disj\<close>,_)$_$_ => h (h (acc,dacc) (Thm.dest_arg1 t)) (Thm.dest_arg t) | |
| 365 | | Const (\<^const_name>\<open>Not\<close>,_)$_ => h (acc,dacc) (Thm.dest_arg t) | |
| 23466 | 366 | | _ => (acc, dacc) | 
| 367 | val (cs,ds) = h ([],[]) p | |
| 33042 | 368 | val l = Integer.lcms (union (op =) cs ds) | 
| 32429 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 369 | fun cv k ct = | 
| 59582 | 370 | let val (tm as b$s$t) = Thm.term_of ct | 
| 23466 | 371 | in ((HOLogic.eq_const bT)$tm$(b$(linear_cmul k s)$(linear_cmul k t)) | 
| 372 | |> HOLogic.mk_Trueprop |> provelin ctxt) RS eq_reflection end | |
| 32429 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 373 | fun nzprop x = | 
| 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 374 | let | 
| 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 375 | val th = | 
| 51717 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 wenzelm parents: 
51143diff
changeset | 376 | Simplifier.rewrite (put_simpset lin_ss ctxt) | 
| 69593 | 377 | (Thm.apply \<^cterm>\<open>Trueprop\<close> (Thm.apply \<^cterm>\<open>Not\<close> | 
| 378 | (Thm.apply (Thm.apply \<^cterm>\<open>(=) :: int => _\<close> (Numeral.mk_cnumber \<^ctyp>\<open>int\<close> x)) | |
| 379 | \<^cterm>\<open>0::int\<close>))) | |
| 36945 | 380 | in Thm.equal_elim (Thm.symmetric th) TrueI end; | 
| 32429 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 381 | val notz = | 
| 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 382 | let val tab = fold Inttab.update | 
| 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 383 | (ds ~~ (map (fn x => nzprop (l div x)) ds)) Inttab.empty | 
| 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 384 | in | 
| 59582 | 385 | fn ct => the (Inttab.lookup tab (ct |> Thm.term_of |> dest_number)) | 
| 51930 
52fd62618631
prefer explicitly qualified exceptions, which is particular important for robust handlers;
 wenzelm parents: 
51717diff
changeset | 386 | handle Option.Option => | 
| 32429 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 387 |           (writeln ("noz: Theorems-Table contains no entry for " ^
 | 
| 51930 
52fd62618631
prefer explicitly qualified exceptions, which is particular important for robust handlers;
 wenzelm parents: 
51717diff
changeset | 388 | Syntax.string_of_term ctxt (Thm.term_of ct)); raise Option.Option) | 
| 32429 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 389 | end | 
| 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 390 | fun unit_conv t = | 
| 59582 | 391 | case Thm.term_of t of | 
| 69593 | 392 | Const(\<^const_name>\<open>HOL.conj\<close>,_)$_$_ => Conv.binop_conv unit_conv t | 
| 393 | | Const(\<^const_name>\<open>HOL.disj\<close>,_)$_$_ => Conv.binop_conv unit_conv t | |
| 394 | | Const (\<^const_name>\<open>Not\<close>,_)$_ => Conv.arg_conv unit_conv t | |
| 395 | | Const(s,_)$(Const(\<^const_name>\<open>Groups.times\<close>,_)$c$y)$ _ => | |
| 23881 | 396 | if x=y andalso member (op =) | 
| 69593 | 397 | [\<^const_name>\<open>HOL.eq\<close>, \<^const_name>\<open>Orderings.less\<close>, \<^const_name>\<open>Orderings.less_eq\<close>] s | 
| 36831 
3037d6810fca
tuned code; toward a tightended interface with generated code
 haftmann parents: 
36807diff
changeset | 398 | then cv (l div dest_number c) t else Thm.reflexive t | 
| 69593 | 399 | | Const(s,_)$_$(Const(\<^const_name>\<open>Groups.times\<close>,_)$c$y) => | 
| 23881 | 400 | if x=y andalso member (op =) | 
| 69593 | 401 | [\<^const_name>\<open>Orderings.less\<close>, \<^const_name>\<open>Orderings.less_eq\<close>] s | 
| 36831 
3037d6810fca
tuned code; toward a tightended interface with generated code
 haftmann parents: 
36807diff
changeset | 402 | then cv (l div dest_number c) t else Thm.reflexive t | 
| 69593 | 403 | | Const(\<^const_name>\<open>Rings.dvd\<close>,_)$d$(r as (Const(\<^const_name>\<open>Groups.plus\<close>,_)$(Const(\<^const_name>\<open>Groups.times\<close>,_)$c$y)$_)) => | 
| 32429 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 404 | if x=y then | 
| 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 405 | let | 
| 36831 
3037d6810fca
tuned code; toward a tightended interface with generated code
 haftmann parents: 
36807diff
changeset | 406 | val k = l div dest_number c | 
| 23466 | 407 | val kt = HOLogic.mk_number iT k | 
| 32429 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 408 | val th1 = inst' [Thm.dest_arg1 t, Thm.dest_arg t] | 
| 23466 | 409 | ((Thm.dest_arg t |> funpow 2 Thm.dest_arg1 |> notz) RS zdvd_mono) | 
| 410 | val (d',t') = (mulC$kt$d, mulC$kt$r) | |
| 411 | val thc = (provelin ctxt ((HOLogic.eq_const iT)$d'$(lint [] d') |> HOLogic.mk_Trueprop)) | |
| 412 | RS eq_reflection | |
| 413 | val tht = (provelin ctxt ((HOLogic.eq_const iT)$t'$(linear_cmul k r) |> HOLogic.mk_Trueprop)) | |
| 414 | RS eq_reflection | |
| 32429 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 415 | in Thm.transitive th1 (Thm.combination (Drule.arg_cong_rule dvdc thc) tht) end | 
| 23466 | 416 | else Thm.reflexive t | 
| 417 | | _ => Thm.reflexive t | |
| 418 | val uth = unit_conv p | |
| 69593 | 419 | val clt = Numeral.mk_cnumber \<^ctyp>\<open>int\<close> l | 
| 46497 
89ccf66aa73d
renamed Thm.capply to Thm.apply, and Thm.cabs to Thm.lambda in conformance with similar operations in structure Term and Logic;
 wenzelm parents: 
45740diff
changeset | 420 | val ltx = Thm.apply (Thm.apply cmulC clt) cx | 
| 23466 | 421 | val th = Drule.arg_cong_rule e (Thm.abstract_rule (fst (dest_Free x )) cx uth) | 
| 46497 
89ccf66aa73d
renamed Thm.capply to Thm.apply, and Thm.cabs to Thm.lambda in conformance with similar operations in structure Term and Logic;
 wenzelm parents: 
45740diff
changeset | 422 | val th' = inst' [Thm.lambda ltx (Thm.rhs_of uth), clt] unity_coeff_ex | 
| 36945 | 423 | val thf = Thm.transitive th | 
| 59582 | 424 | (Thm.transitive (Thm.symmetric (Thm.beta_conversion true (Thm.cprop_of th' |> Thm.dest_arg1))) th') | 
| 425 | val (lth,rth) = Thm.dest_comb (Thm.cprop_of thf) |>> Thm.dest_arg |>> Thm.beta_conversion true | |
| 36945 | 426 | ||> Thm.beta_conversion true |>> Thm.symmetric | 
| 427 | in Thm.transitive (Thm.transitive lth thf) rth end; | |
| 23466 | 428 | |
| 429 | ||
| 69593 | 430 | val emptyIS = \<^cterm>\<open>{}::int set\<close>;
 | 
| 431 | val insert_tm = \<^cterm>\<open>insert :: int => _\<close>; | |
| 46497 
89ccf66aa73d
renamed Thm.capply to Thm.apply, and Thm.cabs to Thm.lambda in conformance with similar operations in structure Term and Logic;
 wenzelm parents: 
45740diff
changeset | 432 | fun mkISet cts = fold_rev (Thm.apply insert_tm #> Thm.apply) cts emptyIS; | 
| 39159 | 433 | val eqelem_imp_imp = @{thm eqelem_imp_iff} RS iffD1;
 | 
| 60642 
48dd1cefb4ae
simplified Thm.instantiate and derivatives: the LHS refers to non-certified variables -- this merely serves as index into already certified structures (or is ignored);
 wenzelm parents: 
60352diff
changeset | 434 | val [A_v,B_v] = | 
| 
48dd1cefb4ae
simplified Thm.instantiate and derivatives: the LHS refers to non-certified variables -- this merely serves as index into already certified structures (or is ignored);
 wenzelm parents: 
60352diff
changeset | 435 | map (fn th => Thm.cprop_of th |> funpow 2 Thm.dest_arg | 
| 
48dd1cefb4ae
simplified Thm.instantiate and derivatives: the LHS refers to non-certified variables -- this merely serves as index into already certified structures (or is ignored);
 wenzelm parents: 
60352diff
changeset | 436 | |> Thm.dest_abs NONE |> snd |> Thm.dest_arg1 |> Thm.dest_arg | 
| 
48dd1cefb4ae
simplified Thm.instantiate and derivatives: the LHS refers to non-certified variables -- this merely serves as index into already certified structures (or is ignored);
 wenzelm parents: 
60352diff
changeset | 437 | |> Thm.dest_abs NONE |> snd |> Thm.dest_fun |> Thm.dest_arg | 
| 
48dd1cefb4ae
simplified Thm.instantiate and derivatives: the LHS refers to non-certified variables -- this merely serves as index into already certified structures (or is ignored);
 wenzelm parents: 
60352diff
changeset | 438 | |> Thm.term_of |> dest_Var) [asetP, bsetP]; | 
| 23466 | 439 | |
| 69593 | 440 | val D_v = (("D", 0), \<^typ>\<open>int\<close>);
 | 
| 23466 | 441 | |
| 32429 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 442 | fun cooperex_conv ctxt vs q = | 
| 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 443 | let | 
| 23466 | 444 | |
| 445 | val uth = unify ctxt q | |
| 446 | val (x,p) = Thm.dest_abs NONE (Thm.dest_arg (Thm.rhs_of uth)) | |
| 447 | val ins = insert (op aconvc) | |
| 32429 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 448 | fun h t (bacc,aacc,dacc) = | 
| 23466 | 449 | case (whatis x t) of | 
| 450 | And (p,q) => h q (h p (bacc,aacc,dacc)) | |
| 451 | | Or (p,q) => h q (h p (bacc,aacc,dacc)) | |
| 32429 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 452 | | Eq t => (ins (minus1 t) bacc, | 
| 23466 | 453 | ins (plus1 t) aacc,dacc) | 
| 32429 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 454 | | NEq t => (ins t bacc, | 
| 23466 | 455 | ins t aacc, dacc) | 
| 456 | | Lt t => (bacc, ins t aacc, dacc) | |
| 457 | | Le t => (bacc, ins (plus1 t) aacc,dacc) | |
| 458 | | Gt t => (ins t bacc, aacc,dacc) | |
| 459 | | Ge t => (ins (minus1 t) bacc, aacc,dacc) | |
| 59582 | 460 | | Dvd (d,_) => (bacc,aacc,insert (op =) (Thm.term_of d |> dest_number) dacc) | 
| 461 | | NDvd (d,_) => (bacc,aacc,insert (op =) (Thm.term_of d|> dest_number) dacc) | |
| 23466 | 462 | | _ => (bacc, aacc, dacc) | 
| 463 | val (b0,a0,ds) = h p ([],[],[]) | |
| 24630 
351a308ab58d
simplified type int (eliminated IntInf.int, integer);
 wenzelm parents: 
24584diff
changeset | 464 | val d = Integer.lcms ds | 
| 69593 | 465 | val cd = Numeral.mk_cnumber \<^ctyp>\<open>int\<close> d | 
| 32429 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 466 | fun divprop x = | 
| 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 467 | let | 
| 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 468 | val th = | 
| 51717 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 wenzelm parents: 
51143diff
changeset | 469 | Simplifier.rewrite (put_simpset lin_ss ctxt) | 
| 69593 | 470 | (Thm.apply \<^cterm>\<open>Trueprop\<close> | 
| 471 | (Thm.apply (Thm.apply dvdc (Numeral.mk_cnumber \<^ctyp>\<open>int\<close> x)) cd)) | |
| 36945 | 472 | in Thm.equal_elim (Thm.symmetric th) TrueI end; | 
| 32429 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 473 | val dvd = | 
| 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 474 | let val tab = fold Inttab.update (ds ~~ (map divprop ds)) Inttab.empty in | 
| 59582 | 475 | fn ct => the (Inttab.lookup tab (Thm.term_of ct |> dest_number)) | 
| 51930 
52fd62618631
prefer explicitly qualified exceptions, which is particular important for robust handlers;
 wenzelm parents: 
51717diff
changeset | 476 | handle Option.Option => | 
| 32429 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 477 |         (writeln ("dvd: Theorems-Table contains no entry for" ^
 | 
| 51930 
52fd62618631
prefer explicitly qualified exceptions, which is particular important for robust handlers;
 wenzelm parents: 
51717diff
changeset | 478 | Syntax.string_of_term ctxt (Thm.term_of ct)); raise Option.Option) | 
| 32429 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 479 | end | 
| 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 480 | val dp = | 
| 51717 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 wenzelm parents: 
51143diff
changeset | 481 | let val th = Simplifier.rewrite (put_simpset lin_ss ctxt) | 
| 69593 | 482 | (Thm.apply \<^cterm>\<open>Trueprop\<close> | 
| 483 | (Thm.apply (Thm.apply \<^cterm>\<open>(<) :: int => _\<close> \<^cterm>\<open>0::int\<close>) cd)) | |
| 36945 | 484 | in Thm.equal_elim (Thm.symmetric th) TrueI end; | 
| 23466 | 485 | (* A and B set *) | 
| 32429 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 486 | local | 
| 69593 | 487 |      val insI1 = Thm.instantiate' [SOME \<^ctyp>\<open>int\<close>] [] @{thm "insertI1"}
 | 
| 488 |      val insI2 = Thm.instantiate' [SOME \<^ctyp>\<open>int\<close>] [] @{thm "insertI2"}
 | |
| 23466 | 489 | in | 
| 32429 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 490 | fun provein x S = | 
| 59582 | 491 | case Thm.term_of S of | 
| 69593 | 492 | Const(\<^const_name>\<open>Orderings.bot\<close>, _) => error "Unexpected error in Cooper, please email Amine Chaieb" | 
| 493 | | Const(\<^const_name>\<open>insert\<close>, _) $ y $ _ => | |
| 23466 | 494 | let val (cy,S') = Thm.dest_binop S | 
| 60801 | 495 | in if Thm.term_of x aconv y then Thm.instantiate' [] [SOME x, SOME S'] insI1 | 
| 496 | else Thm.implies_elim (Thm.instantiate' [] [SOME x, SOME S', SOME cy] insI2) | |
| 23466 | 497 | (provein x S') | 
| 498 | end | |
| 499 | end | |
| 32429 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 500 | |
| 59582 | 501 | val al = map (lint vs o Thm.term_of) a0 | 
| 502 | val bl = map (lint vs o Thm.term_of) b0 | |
| 32429 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 503 | val (sl,s0,f,abths,cpth) = | 
| 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 504 | if length (distinct (op aconv) bl) <= length (distinct (op aconv) al) | 
| 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 505 | then | 
| 23466 | 506 | (bl,b0,decomp_minf, | 
| 60642 
48dd1cefb4ae
simplified Thm.instantiate and derivatives: the LHS refers to non-certified variables -- this merely serves as index into already certified structures (or is ignored);
 wenzelm parents: 
60352diff
changeset | 507 | fn B => (map (fn th => Thm.implies_elim (Thm.instantiate ([],[(B_v,B), (D_v,cd)]) th) dp) | 
| 23466 | 508 | [bseteq,bsetneq,bsetlt, bsetle, bsetgt,bsetge])@ | 
| 60642 
48dd1cefb4ae
simplified Thm.instantiate and derivatives: the LHS refers to non-certified variables -- this merely serves as index into already certified structures (or is ignored);
 wenzelm parents: 
60352diff
changeset | 509 | (map (Thm.instantiate ([],[(B_v,B), (D_v,cd)])) | 
| 23466 | 510 | [bsetdvd,bsetndvd,bsetP,infDdvd, infDndvd,bsetconj, | 
| 511 | bsetdisj,infDconj, infDdisj]), | |
| 32429 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 512 | cpmi) | 
| 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 513 | else (al,a0,decomp_pinf,fn A => | 
| 60642 
48dd1cefb4ae
simplified Thm.instantiate and derivatives: the LHS refers to non-certified variables -- this merely serves as index into already certified structures (or is ignored);
 wenzelm parents: 
60352diff
changeset | 514 | (map (fn th => Thm.implies_elim (Thm.instantiate ([],[(A_v,A), (D_v,cd)]) th) dp) | 
| 23466 | 515 | [aseteq,asetneq,asetlt, asetle, asetgt,asetge])@ | 
| 60642 
48dd1cefb4ae
simplified Thm.instantiate and derivatives: the LHS refers to non-certified variables -- this merely serves as index into already certified structures (or is ignored);
 wenzelm parents: 
60352diff
changeset | 516 | (map (Thm.instantiate ([],[(A_v,A), (D_v,cd)])) | 
| 23466 | 517 | [asetdvd,asetndvd, asetP, infDdvd, infDndvd,asetconj, | 
| 518 | asetdisj,infDconj, infDdisj]),cppi) | |
| 32429 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 519 | val cpth = | 
| 23466 | 520 | let | 
| 32429 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 521 | val sths = map (fn (tl,t0) => | 
| 59582 | 522 | if tl = Thm.term_of t0 | 
| 69593 | 523 | then Thm.instantiate' [SOME \<^ctyp>\<open>int\<close>] [SOME t0] refl | 
| 59582 | 524 | else provelin ctxt ((HOLogic.eq_const iT)$tl$(Thm.term_of t0) | 
| 32429 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 525 | |> HOLogic.mk_Trueprop)) | 
| 23466 | 526 | (sl ~~ s0) | 
| 59582 | 527 | val csl = distinct (op aconvc) (map (Thm.cprop_of #> Thm.dest_arg #> Thm.dest_arg1) sths) | 
| 23466 | 528 | val S = mkISet csl | 
| 59582 | 529 | val inStab = fold (fn ct => fn tab => Termtab.update (Thm.term_of ct, provein ct S) tab) | 
| 23466 | 530 | csl Termtab.empty | 
| 69593 | 531 | val eqelem_th = Thm.instantiate' [SOME \<^ctyp>\<open>int\<close>] [NONE,NONE, SOME S] eqelem_imp_imp | 
| 32429 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 532 | val inS = | 
| 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 533 | let | 
| 23466 | 534 | val tab = fold Termtab.update | 
| 32429 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 535 | (map (fn eq => | 
| 59582 | 536 | let val (s,t) = Thm.cprop_of eq |> Thm.dest_arg |> Thm.dest_binop | 
| 59848 | 537 | val th = | 
| 538 | if s aconvc t | |
| 539 | then the (Termtab.lookup inStab (Thm.term_of s)) | |
| 60801 | 540 | else FWD (Thm.instantiate' [] [SOME s, SOME t] eqelem_th) | 
| 59848 | 541 | [eq, the (Termtab.lookup inStab (Thm.term_of s))] | 
| 542 | in (Thm.term_of t, th) end) sths) Termtab.empty | |
| 32429 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 543 | in | 
| 59582 | 544 | fn ct => the (Termtab.lookup tab (Thm.term_of ct)) | 
| 51930 
52fd62618631
prefer explicitly qualified exceptions, which is particular important for robust handlers;
 wenzelm parents: 
51717diff
changeset | 545 | handle Option.Option => | 
| 32429 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 546 |               (writeln ("inS: No theorem for " ^ Syntax.string_of_term ctxt (Thm.term_of ct));
 | 
| 51930 
52fd62618631
prefer explicitly qualified exceptions, which is particular important for robust handlers;
 wenzelm parents: 
51717diff
changeset | 547 | raise Option.Option) | 
| 23466 | 548 | end | 
| 549 | val (inf, nb, pd) = divide_and_conquer (f x dvd inS (abths S)) p | |
| 550 | in [dp, inf, nb, pd] MRS cpth | |
| 551 | end | |
| 552 | val cpth' = Thm.transitive uth (cpth RS eq_reflection) | |
| 51717 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 wenzelm parents: 
51143diff
changeset | 553 | in Thm.transitive cpth' ((simp_thms_conv ctxt then_conv eval_conv ctxt) (Thm.rhs_of cpth')) | 
| 23466 | 554 | end; | 
| 555 | ||
| 32429 
54758ca53fd6
modernized messages -- eliminated old Display.print_cterm;
 wenzelm parents: 
32398diff
changeset | 556 | fun literals_conv bops uops env cv = | 
| 23466 | 557 | let fun h t = | 
| 59582 | 558 | case Thm.term_of t of | 
| 36797 
cb074cec7a30
dropped unused bindings; avoid open (documents dependency on generated code more explicitly)
 haftmann parents: 
36717diff
changeset | 559 | b$_$_ => if member (op aconv) bops b then Conv.binop_conv h t else cv env t | 
| 
cb074cec7a30
dropped unused bindings; avoid open (documents dependency on generated code more explicitly)
 haftmann parents: 
36717diff
changeset | 560 | | u$_ => if member (op aconv) uops u then Conv.arg_conv h t else cv env t | 
| 23466 | 561 | | _ => cv env t | 
| 562 | in h end; | |
| 563 | ||
| 564 | fun integer_nnf_conv ctxt env = | |
| 51717 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 wenzelm parents: 
51143diff
changeset | 565 | nnf_conv ctxt then_conv literals_conv [HOLogic.conj, HOLogic.disj] [] env (linearize_conv ctxt); | 
| 23466 | 566 | |
| 51717 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 wenzelm parents: 
51143diff
changeset | 567 | val conv_ss = | 
| 69593 | 568 | simpset_of (put_simpset HOL_basic_ss \<^context> | 
| 51717 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 wenzelm parents: 
51143diff
changeset | 569 |     addsimps (@{thms simp_thms} @ take 4 @{thms ex_simps} @
 | 
| 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 wenzelm parents: 
51143diff
changeset | 570 |       [not_all, all_not_ex, @{thm ex_disj_distrib}]));
 | 
| 36831 
3037d6810fca
tuned code; toward a tightended interface with generated code
 haftmann parents: 
36807diff
changeset | 571 | |
| 
3037d6810fca
tuned code; toward a tightended interface with generated code
 haftmann parents: 
36807diff
changeset | 572 | fun conv ctxt p = | 
| 61075 | 573 | Qelim.gen_qelim_conv ctxt | 
| 51717 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 wenzelm parents: 
51143diff
changeset | 574 | (Simplifier.rewrite (put_simpset conv_ss ctxt)) | 
| 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 wenzelm parents: 
51143diff
changeset | 575 | (Simplifier.rewrite (put_simpset presburger_ss ctxt)) | 
| 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 wenzelm parents: 
51143diff
changeset | 576 | (Simplifier.rewrite (put_simpset conv_ss ctxt)) | 
| 59582 | 577 | (cons o Thm.term_of) (Misc_Legacy.term_frees (Thm.term_of p)) | 
| 51717 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 wenzelm parents: 
51143diff
changeset | 578 | (linearize_conv ctxt) (integer_nnf_conv ctxt) | 
| 36831 
3037d6810fca
tuned code; toward a tightended interface with generated code
 haftmann parents: 
36807diff
changeset | 579 | (cooperex_conv ctxt) p | 
| 51143 
0a2371e7ced3
two target language numeral types: integer and natural, as replacement for code_numeral;
 haftmann parents: 
50321diff
changeset | 580 | handle CTERM _ => raise COOPER "bad cterm" | 
| 
0a2371e7ced3
two target language numeral types: integer and natural, as replacement for code_numeral;
 haftmann parents: 
50321diff
changeset | 581 | | THM _ => raise COOPER "bad thm" | 
| 
0a2371e7ced3
two target language numeral types: integer and natural, as replacement for code_numeral;
 haftmann parents: 
50321diff
changeset | 582 | | TYPE _ => raise COOPER "bad type" | 
| 23466 | 583 | |
| 36831 
3037d6810fca
tuned code; toward a tightended interface with generated code
 haftmann parents: 
36807diff
changeset | 584 | fun add_bools t = | 
| 36807 | 585 | let | 
| 69593 | 586 | val ops = [\<^term>\<open>(=) :: int => _\<close>, \<^term>\<open>(<) :: int => _\<close>, \<^term>\<open>(<=) :: int => _\<close>, | 
| 587 | \<^term>\<open>HOL.conj\<close>, \<^term>\<open>HOL.disj\<close>, \<^term>\<open>HOL.implies\<close>, \<^term>\<open>(=) :: bool => _\<close>, | |
| 588 | \<^term>\<open>Not\<close>, \<^term>\<open>All :: (int => _) => _\<close>, | |
| 589 | \<^term>\<open>Ex :: (int => _) => _\<close>, \<^term>\<open>True\<close>, \<^term>\<open>False\<close>]; | |
| 36831 
3037d6810fca
tuned code; toward a tightended interface with generated code
 haftmann parents: 
36807diff
changeset | 590 | val is_op = member (op =) ops; | 
| 
3037d6810fca
tuned code; toward a tightended interface with generated code
 haftmann parents: 
36807diff
changeset | 591 | val skip = not (fastype_of t = HOLogic.boolT) | 
| 36807 | 592 | in case t of | 
| 36831 
3037d6810fca
tuned code; toward a tightended interface with generated code
 haftmann parents: 
36807diff
changeset | 593 | (l as f $ a) $ b => if skip orelse is_op f then add_bools b o add_bools l | 
| 
3037d6810fca
tuned code; toward a tightended interface with generated code
 haftmann parents: 
36807diff
changeset | 594 | else insert (op aconv) t | 
| 
3037d6810fca
tuned code; toward a tightended interface with generated code
 haftmann parents: 
36807diff
changeset | 595 | | f $ a => if skip orelse is_op f then add_bools a o add_bools f | 
| 
3037d6810fca
tuned code; toward a tightended interface with generated code
 haftmann parents: 
36807diff
changeset | 596 | else insert (op aconv) t | 
| 42284 | 597 | | Abs p => add_bools (snd (Syntax_Trans.variant_abs p)) (* FIXME !? *) | 
| 36831 
3037d6810fca
tuned code; toward a tightended interface with generated code
 haftmann parents: 
36807diff
changeset | 598 | | _ => if skip orelse is_op t then I else insert (op aconv) t | 
| 36807 | 599 | end; | 
| 600 | ||
| 36832 | 601 | fun descend vs (abs as (_, xT, _)) = | 
| 602 | let | |
| 42284 | 603 | val (xn', p') = Syntax_Trans.variant_abs abs; (* FIXME !? *) | 
| 36833 
9628f969d843
represent de-Bruin indices simply by position in list
 haftmann parents: 
36832diff
changeset | 604 | in ((xn', xT) :: vs, p') end; | 
| 36832 | 605 | |
| 36831 
3037d6810fca
tuned code; toward a tightended interface with generated code
 haftmann parents: 
36807diff
changeset | 606 | local structure Proc = Cooper_Procedure in | 
| 
3037d6810fca
tuned code; toward a tightended interface with generated code
 haftmann parents: 
36807diff
changeset | 607 | |
| 51143 
0a2371e7ced3
two target language numeral types: integer and natural, as replacement for code_numeral;
 haftmann parents: 
50321diff
changeset | 608 | fun num_of_term vs (Free vT) = Proc.Bound (Proc.nat_of_integer (find_index (fn vT' => vT' = vT) vs)) | 
| 
0a2371e7ced3
two target language numeral types: integer and natural, as replacement for code_numeral;
 haftmann parents: 
50321diff
changeset | 609 | | num_of_term vs (Term.Bound i) = Proc.Bound (Proc.nat_of_integer i) | 
| 69593 | 610 | | num_of_term vs \<^term>\<open>0::int\<close> = Proc.C (Proc.Int_of_integer 0) | 
| 611 | | num_of_term vs \<^term>\<open>1::int\<close> = Proc.C (Proc.Int_of_integer 1) | |
| 612 | | num_of_term vs (t as Const (\<^const_name>\<open>numeral\<close>, _) $ _) = | |
| 51143 
0a2371e7ced3
two target language numeral types: integer and natural, as replacement for code_numeral;
 haftmann parents: 
50321diff
changeset | 613 | Proc.C (Proc.Int_of_integer (dest_number t)) | 
| 69593 | 614 | | num_of_term vs (Const (\<^const_name>\<open>Groups.uminus\<close>, _) $ t') = | 
| 36832 | 615 | Proc.Neg (num_of_term vs t') | 
| 69593 | 616 | | num_of_term vs (Const (\<^const_name>\<open>Groups.plus\<close>, _) $ t1 $ t2) = | 
| 36832 | 617 | Proc.Add (num_of_term vs t1, num_of_term vs t2) | 
| 69593 | 618 | | num_of_term vs (Const (\<^const_name>\<open>Groups.minus\<close>, _) $ t1 $ t2) = | 
| 36832 | 619 | Proc.Sub (num_of_term vs t1, num_of_term vs t2) | 
| 69593 | 620 | | num_of_term vs (Const (\<^const_name>\<open>Groups.times\<close>, _) $ t1 $ t2) = | 
| 36832 | 621 | (case perhaps_number t1 | 
| 51143 
0a2371e7ced3
two target language numeral types: integer and natural, as replacement for code_numeral;
 haftmann parents: 
50321diff
changeset | 622 | of SOME n => Proc.Mul (Proc.Int_of_integer n, num_of_term vs t2) | 
| 36832 | 623 | | NONE => (case perhaps_number t2 | 
| 51143 
0a2371e7ced3
two target language numeral types: integer and natural, as replacement for code_numeral;
 haftmann parents: 
50321diff
changeset | 624 | of SOME n => Proc.Mul (Proc.Int_of_integer n, num_of_term vs t1) | 
| 36832 | 625 | | NONE => raise COOPER "reification: unsupported kind of multiplication")) | 
| 626 | | num_of_term _ _ = raise COOPER "reification: bad term"; | |
| 23689 
0410269099dc
replaced code generator framework for reflected cooper
 haftmann parents: 
23582diff
changeset | 627 | |
| 69593 | 628 | fun fm_of_term ps vs (Const (\<^const_name>\<open>True\<close>, _)) = Proc.T | 
| 629 | | fm_of_term ps vs (Const (\<^const_name>\<open>False\<close>, _)) = Proc.F | |
| 630 | | fm_of_term ps vs (Const (\<^const_name>\<open>HOL.conj\<close>, _) $ t1 $ t2) = | |
| 36832 | 631 | Proc.And (fm_of_term ps vs t1, fm_of_term ps vs t2) | 
| 69593 | 632 | | fm_of_term ps vs (Const (\<^const_name>\<open>HOL.disj\<close>, _) $ t1 $ t2) = | 
| 36832 | 633 | Proc.Or (fm_of_term ps vs t1, fm_of_term ps vs t2) | 
| 69593 | 634 | | fm_of_term ps vs (Const (\<^const_name>\<open>HOL.implies\<close>, _) $ t1 $ t2) = | 
| 36832 | 635 | Proc.Imp (fm_of_term ps vs t1, fm_of_term ps vs t2) | 
| 69593 | 636 | | fm_of_term ps vs (\<^term>\<open>(=) :: bool => _ \<close> $ t1 $ t2) = | 
| 36832 | 637 | Proc.Iff (fm_of_term ps vs t1, fm_of_term ps vs t2) | 
| 69593 | 638 | | fm_of_term ps vs (Const (\<^const_name>\<open>Not\<close>, _) $ t') = | 
| 61128 | 639 | Proc.NOT (fm_of_term ps vs t') | 
| 69593 | 640 | | fm_of_term ps vs (Const (\<^const_name>\<open>Ex\<close>, _) $ Abs abs) = | 
| 36832 | 641 | Proc.E (uncurry (fm_of_term ps) (descend vs abs)) | 
| 69593 | 642 | | fm_of_term ps vs (Const (\<^const_name>\<open>All\<close>, _) $ Abs abs) = | 
| 36832 | 643 | Proc.A (uncurry (fm_of_term ps) (descend vs abs)) | 
| 69593 | 644 | | fm_of_term ps vs (\<^term>\<open>(=) :: int => _\<close> $ t1 $ t2) = | 
| 36832 | 645 | Proc.Eq (Proc.Sub (num_of_term vs t1, num_of_term vs t2)) | 
| 69593 | 646 | | fm_of_term ps vs (Const (\<^const_name>\<open>Orderings.less_eq\<close>, _) $ t1 $ t2) = | 
| 36832 | 647 | Proc.Le (Proc.Sub (num_of_term vs t1, num_of_term vs t2)) | 
| 69593 | 648 | | fm_of_term ps vs (Const (\<^const_name>\<open>Orderings.less\<close>, _) $ t1 $ t2) = | 
| 36832 | 649 | Proc.Lt (Proc.Sub (num_of_term vs t1, num_of_term vs t2)) | 
| 69593 | 650 | | fm_of_term ps vs (Const (\<^const_name>\<open>Rings.dvd\<close>, _) $ t1 $ t2) = | 
| 36832 | 651 | (case perhaps_number t1 | 
| 51143 
0a2371e7ced3
two target language numeral types: integer and natural, as replacement for code_numeral;
 haftmann parents: 
50321diff
changeset | 652 | of SOME n => Proc.Dvd (Proc.Int_of_integer n, num_of_term vs t2) | 
| 36832 | 653 | | NONE => raise COOPER "reification: unsupported dvd") | 
| 36833 
9628f969d843
represent de-Bruin indices simply by position in list
 haftmann parents: 
36832diff
changeset | 654 | | fm_of_term ps vs t = let val n = find_index (fn t' => t aconv t') ps | 
| 51143 
0a2371e7ced3
two target language numeral types: integer and natural, as replacement for code_numeral;
 haftmann parents: 
50321diff
changeset | 655 | in if n > 0 then Proc.Closed (Proc.nat_of_integer n) else raise COOPER "reification: unknown term" end; | 
| 23466 | 656 | |
| 51143 
0a2371e7ced3
two target language numeral types: integer and natural, as replacement for code_numeral;
 haftmann parents: 
50321diff
changeset | 657 | fun term_of_num vs (Proc.C i) = HOLogic.mk_number HOLogic.intT (Proc.integer_of_int i) | 
| 
0a2371e7ced3
two target language numeral types: integer and natural, as replacement for code_numeral;
 haftmann parents: 
50321diff
changeset | 658 | | term_of_num vs (Proc.Bound n) = Free (nth vs (Proc.integer_of_nat n)) | 
| 36832 | 659 | | term_of_num vs (Proc.Neg t') = | 
| 69593 | 660 | \<^term>\<open>uminus :: int => _\<close> $ term_of_num vs t' | 
| 36832 | 661 | | term_of_num vs (Proc.Add (t1, t2)) = | 
| 69593 | 662 | \<^term>\<open>(+) :: int => _\<close> $ term_of_num vs t1 $ term_of_num vs t2 | 
| 36832 | 663 | | term_of_num vs (Proc.Sub (t1, t2)) = | 
| 69593 | 664 | \<^term>\<open>(-) :: int => _\<close> $ term_of_num vs t1 $ term_of_num vs t2 | 
| 36832 | 665 | | term_of_num vs (Proc.Mul (i, t2)) = | 
| 69593 | 666 | \<^term>\<open>(*) :: int => _\<close> $ HOLogic.mk_number HOLogic.intT (Proc.integer_of_int i) $ term_of_num vs t2 | 
| 61128 | 667 | | term_of_num vs (Proc.CN (n, i, t')) = | 
| 36832 | 668 | term_of_num vs (Proc.Add (Proc.Mul (i, Proc.Bound n), t')); | 
| 23466 | 669 | |
| 69593 | 670 | fun term_of_fm ps vs Proc.T = \<^term>\<open>True\<close> | 
| 671 | | term_of_fm ps vs Proc.F = \<^term>\<open>False\<close> | |
| 36832 | 672 | | term_of_fm ps vs (Proc.And (t1, t2)) = HOLogic.conj $ term_of_fm ps vs t1 $ term_of_fm ps vs t2 | 
| 673 | | term_of_fm ps vs (Proc.Or (t1, t2)) = HOLogic.disj $ term_of_fm ps vs t1 $ term_of_fm ps vs t2 | |
| 674 | | term_of_fm ps vs (Proc.Imp (t1, t2)) = HOLogic.imp $ term_of_fm ps vs t1 $ term_of_fm ps vs t2 | |
| 69593 | 675 | | term_of_fm ps vs (Proc.Iff (t1, t2)) = \<^term>\<open>(=) :: bool => _\<close> $ term_of_fm ps vs t1 $ term_of_fm ps vs t2 | 
| 61128 | 676 | | term_of_fm ps vs (Proc.NOT t') = HOLogic.Not $ term_of_fm ps vs t' | 
| 69593 | 677 | | term_of_fm ps vs (Proc.Eq t') = \<^term>\<open>(=) :: int => _ \<close> $ term_of_num vs t'$ \<^term>\<open>0::int\<close> | 
| 61128 | 678 | | term_of_fm ps vs (Proc.NEq t') = term_of_fm ps vs (Proc.NOT (Proc.Eq t')) | 
| 69593 | 679 | | term_of_fm ps vs (Proc.Lt t') = \<^term>\<open>(<) :: int => _ \<close> $ term_of_num vs t' $ \<^term>\<open>0::int\<close> | 
| 680 | | term_of_fm ps vs (Proc.Le t') = \<^term>\<open>(<=) :: int => _ \<close> $ term_of_num vs t' $ \<^term>\<open>0::int\<close> | |
| 681 | | term_of_fm ps vs (Proc.Gt t') = \<^term>\<open>(<) :: int => _ \<close> $ \<^term>\<open>0::int\<close> $ term_of_num vs t' | |
| 682 | | term_of_fm ps vs (Proc.Ge t') = \<^term>\<open>(<=) :: int => _ \<close> $ \<^term>\<open>0::int\<close> $ term_of_num vs t' | |
| 683 | | term_of_fm ps vs (Proc.Dvd (i, t')) = \<^term>\<open>(dvd) :: int => _ \<close> $ | |
| 51143 
0a2371e7ced3
two target language numeral types: integer and natural, as replacement for code_numeral;
 haftmann parents: 
50321diff
changeset | 684 | HOLogic.mk_number HOLogic.intT (Proc.integer_of_int i) $ term_of_num vs t' | 
| 61128 | 685 | | term_of_fm ps vs (Proc.NDvd (i, t')) = term_of_fm ps vs (Proc.NOT (Proc.Dvd (i, t'))) | 
| 51143 
0a2371e7ced3
two target language numeral types: integer and natural, as replacement for code_numeral;
 haftmann parents: 
50321diff
changeset | 686 | | term_of_fm ps vs (Proc.Closed n) = nth ps (Proc.integer_of_nat n) | 
| 61128 | 687 | | term_of_fm ps vs (Proc.NClosed n) = term_of_fm ps vs (Proc.NOT (Proc.Closed n)); | 
| 23466 | 688 | |
| 36833 
9628f969d843
represent de-Bruin indices simply by position in list
 haftmann parents: 
36832diff
changeset | 689 | fun procedure t = | 
| 23713 | 690 | let | 
| 36833 
9628f969d843
represent de-Bruin indices simply by position in list
 haftmann parents: 
36832diff
changeset | 691 | val vs = Term.add_frees t []; | 
| 
9628f969d843
represent de-Bruin indices simply by position in list
 haftmann parents: 
36832diff
changeset | 692 | val ps = add_bools t []; | 
| 
9628f969d843
represent de-Bruin indices simply by position in list
 haftmann parents: 
36832diff
changeset | 693 | in (term_of_fm ps vs o Proc.pa o fm_of_term ps vs) t end; | 
| 23466 | 694 | |
| 36831 
3037d6810fca
tuned code; toward a tightended interface with generated code
 haftmann parents: 
36807diff
changeset | 695 | end; | 
| 
3037d6810fca
tuned code; toward a tightended interface with generated code
 haftmann parents: 
36807diff
changeset | 696 | |
| 38808 | 697 | val (_, oracle) = Context.>>> (Context.map_theory_result | 
| 69593 | 698 | (Thm.add_oracle (\<^binding>\<open>cooper\<close>, | 
| 38808 | 699 | (fn (ctxt, t) => | 
| 59621 
291934bac95e
Thm.cterm_of and Thm.ctyp_of operate on local context;
 wenzelm parents: 
59586diff
changeset | 700 | (Thm.cterm_of ctxt o Logic.mk_equals o apply2 HOLogic.mk_Trueprop) | 
| 38808 | 701 | (t, procedure t))))); | 
| 36802 | 702 | |
| 51717 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 wenzelm parents: 
51143diff
changeset | 703 | val comp_ss = | 
| 69593 | 704 |   simpset_of (put_simpset HOL_ss \<^context> addsimps @{thms semiring_norm});
 | 
| 36802 | 705 | |
| 706 | fun strip_objimp ct = | |
| 707 | (case Thm.term_of ct of | |
| 69593 | 708 | Const (\<^const_name>\<open>HOL.implies\<close>, _) $ _ $ _ => | 
| 36802 | 709 | let val (A, B) = Thm.dest_binop ct | 
| 710 | in A :: strip_objimp B end | |
| 711 | | _ => [ct]); | |
| 712 | ||
| 68632 | 713 | fun strip_objall ct = | 
| 714 | case Thm.term_of ct of | |
| 69593 | 715 | Const (\<^const_name>\<open>All\<close>, _) $ Abs (xn,_,_) => | 
| 36802 | 716 | let val (a,(v,t')) = (apsnd (Thm.dest_abs (SOME xn)) o Thm.dest_comb) ct | 
| 717 | in apfst (cons (a,v)) (strip_objall t') | |
| 718 | end | |
| 719 | | _ => ([],ct); | |
| 720 | ||
| 721 | local | |
| 51717 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 wenzelm parents: 
51143diff
changeset | 722 | val all_maxscope_ss = | 
| 69593 | 723 | simpset_of (put_simpset HOL_basic_ss \<^context> | 
| 51717 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 wenzelm parents: 
51143diff
changeset | 724 |       addsimps map (fn th => th RS sym) @{thms "all_simps"})
 | 
| 36802 | 725 | in | 
| 51717 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 wenzelm parents: 
51143diff
changeset | 726 | fun thin_prems_tac ctxt P = | 
| 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 wenzelm parents: 
51143diff
changeset | 727 | simp_tac (put_simpset all_maxscope_ss ctxt) THEN' | 
| 36802 | 728 | CSUBGOAL (fn (p', i) => | 
| 729 | let | |
| 730 | val (qvs, p) = strip_objall (Thm.dest_arg p') | |
| 731 | val (ps, c) = split_last (strip_objimp p) | |
| 732 | val qs = filter P ps | |
| 69593 | 733 | val q = if P c then c else \<^cterm>\<open>False\<close> | 
| 68632 | 734 | val ng = fold_rev (fn (a,v) => fn t => Thm.apply a (Thm.lambda v t)) qvs | 
| 69593 | 735 | (fold_rev (fn p => fn q => Thm.apply (Thm.apply \<^cterm>\<open>HOL.implies\<close> p) q) qs q) | 
| 736 | val g = Thm.apply (Thm.apply \<^cterm>\<open>(==>)\<close> (Thm.apply \<^cterm>\<open>Trueprop\<close> ng)) p' | |
| 737 | val ntac = (case qs of [] => q aconvc \<^cterm>\<open>False\<close> | |
| 36802 | 738 | | _ => false) | 
| 68632 | 739 | in | 
| 47476 
92d1c566ebbf
refined Cooper.tac / "presburger" method: Subgoal.FOCUS_PARAMS allows to solve more problems with outer quantifiers, e.g "!!x. [| 0 <= (x::int); x div 2 < f x |] ==> x < f x * 2";
 wenzelm parents: 
47432diff
changeset | 740 | if ntac then no_tac | 
| 
92d1c566ebbf
refined Cooper.tac / "presburger" method: Subgoal.FOCUS_PARAMS allows to solve more problems with outer quantifiers, e.g "!!x. [| 0 <= (x::int); x div 2 < f x |] ==> x < f x * 2";
 wenzelm parents: 
47432diff
changeset | 741 | else | 
| 
92d1c566ebbf
refined Cooper.tac / "presburger" method: Subgoal.FOCUS_PARAMS allows to solve more problems with outer quantifiers, e.g "!!x. [| 0 <= (x::int); x div 2 < f x |] ==> x < f x * 2";
 wenzelm parents: 
47432diff
changeset | 742 | (case try (fn () => | 
| 54883 
dd04a8b654fc
proper context for norm_hhf and derived operations;
 wenzelm parents: 
54742diff
changeset | 743 | Goal.prove_internal ctxt [] g (K (blast_tac (put_claset HOL_cs ctxt) 1))) () of | 
| 47476 
92d1c566ebbf
refined Cooper.tac / "presburger" method: Subgoal.FOCUS_PARAMS allows to solve more problems with outer quantifiers, e.g "!!x. [| 0 <= (x::int); x div 2 < f x |] ==> x < f x * 2";
 wenzelm parents: 
47432diff
changeset | 744 | NONE => no_tac | 
| 60752 | 745 | | SOME r => resolve_tac ctxt [r] i) | 
| 36802 | 746 | end) | 
| 23466 | 747 | end; | 
| 36802 | 748 | |
| 749 | local | |
| 68632 | 750 | fun isnum t = case t of | 
| 69593 | 751 | Const(\<^const_name>\<open>Groups.zero\<close>,_) => true | 
| 752 | | Const(\<^const_name>\<open>Groups.one\<close>,_) => true | |
| 753 | | \<^term>\<open>Suc\<close>$s => isnum s | |
| 754 | | \<^term>\<open>nat\<close>$s => isnum s | |
| 755 | | \<^term>\<open>int\<close>$s => isnum s | |
| 756 | | Const(\<^const_name>\<open>Groups.uminus\<close>,_)$s => isnum s | |
| 757 | | Const(\<^const_name>\<open>Groups.plus\<close>,_)$l$r => isnum l andalso isnum r | |
| 758 | | Const(\<^const_name>\<open>Groups.times\<close>,_)$l$r => isnum l andalso isnum r | |
| 759 | | Const(\<^const_name>\<open>Groups.minus\<close>,_)$l$r => isnum l andalso isnum r | |
| 760 | | Const(\<^const_name>\<open>Power.power\<close>,_)$l$r => isnum l andalso isnum r | |
| 761 | | Const(\<^const_name>\<open>Rings.modulo\<close>,_)$l$r => isnum l andalso isnum r | |
| 762 | | Const(\<^const_name>\<open>Rings.divide\<close>,_)$l$r => isnum l andalso isnum r | |
| 36831 
3037d6810fca
tuned code; toward a tightended interface with generated code
 haftmann parents: 
36807diff
changeset | 763 | | _ => is_number t orelse can HOLogic.dest_nat t | 
| 36802 | 764 | |
| 68632 | 765 | fun ty cts t = | 
| 59586 | 766 | if not (member (op =) [HOLogic.intT, HOLogic.natT, HOLogic.boolT] (Thm.typ_of_cterm t)) | 
| 68632 | 767 | then false | 
| 768 | else case Thm.term_of t of | |
| 69593 | 769 | c$l$r => if member (op =) [\<^term>\<open>(*)::int => _\<close>, \<^term>\<open>(*)::nat => _\<close>] c | 
| 59582 | 770 | then not (isnum l orelse isnum r) | 
| 771 | else not (member (op aconv) cts c) | |
| 772 | | c$_ => not (member (op aconv) cts c) | |
| 773 | | c => not (member (op aconv) cts c) | |
| 36802 | 774 | |
| 775 | val term_constants = | |
| 776 | let fun h acc t = case t of | |
| 777 | Const _ => insert (op aconv) t acc | |
| 778 | | a$b => h (h acc a) b | |
| 779 | | Abs (_,_,t) => h acc t | |
| 780 | | _ => acc | |
| 781 | in h [] end; | |
| 68632 | 782 | in | 
| 783 | fun is_relevant ctxt ct = | |
| 59582 | 784 | subset (op aconv) (term_constants (Thm.term_of ct), snd (get ctxt)) | 
| 785 | andalso | |
| 69593 | 786 | forall (fn Free (_, T) => member (op =) [\<^typ>\<open>int\<close>, \<^typ>\<open>nat\<close>] T) | 
| 59582 | 787 | (Misc_Legacy.term_frees (Thm.term_of ct)) | 
| 788 | andalso | |
| 69593 | 789 | forall (fn Var (_, T) => member (op =) [\<^typ>\<open>int\<close>, \<^typ>\<open>nat\<close>] T) | 
| 59582 | 790 | (Misc_Legacy.term_vars (Thm.term_of ct)); | 
| 36802 | 791 | |
| 792 | fun int_nat_terms ctxt ct = | |
| 68632 | 793 | let | 
| 36802 | 794 | val cts = snd (get ctxt) | 
| 795 | fun h acc t = if ty cts t then insert (op aconvc) t acc else | |
| 59582 | 796 | case Thm.term_of t of | 
| 36802 | 797 | _$_ => h (h acc (Thm.dest_arg t)) (Thm.dest_fun t) | 
| 798 | | Abs(_,_,_) => Thm.dest_abs NONE t ||> h acc |> uncurry (remove (op aconvc)) | |
| 799 | | _ => acc | |
| 800 | in h [] ct end | |
| 801 | end; | |
| 802 | ||
| 61075 | 803 | fun generalize_tac ctxt f = CSUBGOAL (fn (p, _) => PRIMITIVE (fn st => | 
| 68632 | 804 | let | 
| 61075 | 805 | fun all x t = | 
| 806 | Thm.apply (Thm.cterm_of ctxt (Logic.all_const (Thm.typ_of_cterm x))) (Thm.lambda x t) | |
| 67559 | 807 | val ts = sort Thm.fast_term_ord (f p) | 
| 61075 | 808 | val p' = fold_rev all ts p | 
| 36945 | 809 | in Thm.implies_intr p' (Thm.implies_elim st (fold Thm.forall_elim ts (Thm.assume p'))) end)); | 
| 36802 | 810 | |
| 811 | local | |
| 51717 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 wenzelm parents: 
51143diff
changeset | 812 | val ss1 = | 
| 69593 | 813 | simpset_of (put_simpset comp_ss \<^context> | 
| 68632 | 814 |     addsimps @{thms simp_thms} @
 | 
| 815 |             [@{thm "nat_numeral"} RS sym, @{thm int_dvd_int_iff [symmetric]}, @{thm "of_nat_add"}, @{thm "of_nat_mult"}]
 | |
| 62348 | 816 |         @ map (fn r => r RS sym) [@{thm "int_int_eq"}, @{thm "zle_int"}, @{thm "of_nat_less_iff" [where ?'a = int]}]
 | 
| 51717 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 wenzelm parents: 
51143diff
changeset | 817 |     |> Splitter.add_split @{thm "zdiff_int_split"})
 | 
| 36802 | 818 | |
| 51717 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 wenzelm parents: 
51143diff
changeset | 819 | val ss2 = | 
| 69593 | 820 | simpset_of (put_simpset HOL_basic_ss \<^context> | 
| 62348 | 821 |     addsimps [@{thm "nat_0_le"}, @{thm "of_nat_numeral"},
 | 
| 68632 | 822 |               @{thm "all_nat"}, @{thm "ex_nat"}, @{thm "zero_le_numeral"},
 | 
| 62348 | 823 |               @{thm "le_numeral_extra"(3)}, @{thm "of_nat_0"}, @{thm "of_nat_1"}, @{thm "Suc_eq_plus1"}]
 | 
| 51717 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 wenzelm parents: 
51143diff
changeset | 824 |     |> fold Simplifier.add_cong [@{thm "conj_le_cong"}, @{thm "imp_le_cong"}])
 | 
| 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 wenzelm parents: 
51143diff
changeset | 825 | val div_mod_ss = | 
| 69593 | 826 | simpset_of (put_simpset HOL_basic_ss \<^context> | 
| 64589 | 827 |     addsimps @{thms simp_thms
 | 
| 64593 
50c715579715
reoriented congruence rules in non-explosive direction
 haftmann parents: 
64589diff
changeset | 828 | mod_eq_0_iff_dvd mod_add_left_eq mod_add_right_eq | 
| 68632 | 829 | mod_add_eq div_add1_eq [symmetric] div_add1_eq [symmetric] | 
| 64589 | 830 | mod_self mod_by_0 div_by_0 | 
| 831 | div_0 mod_0 div_by_1 mod_by_1 | |
| 832 | div_by_Suc_0 mod_by_Suc_0 Suc_eq_plus1 | |
| 833 | ac_simps} | |
| 69593 | 834 | addsimprocs [\<^simproc>\<open>cancel_div_mod_nat\<close>, \<^simproc>\<open>cancel_div_mod_int\<close>]) | 
| 45620 
f2a587696afb
modernized some old-style infix operations, which were left over from the time of ML proof scripts;
 wenzelm parents: 
45196diff
changeset | 835 | val splits_ss = | 
| 69593 | 836 | simpset_of (put_simpset comp_ss \<^context> | 
| 64243 | 837 |     addsimps [@{thm minus_div_mult_eq_mod [symmetric]}]
 | 
| 51717 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 wenzelm parents: 
51143diff
changeset | 838 | |> fold Splitter.add_split | 
| 68632 | 839 |       [@{thm "split_zdiv"}, @{thm "split_zmod"}, @{thm "split_div'"},
 | 
| 51717 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 wenzelm parents: 
51143diff
changeset | 840 |        @{thm "split_min"}, @{thm "split_max"}, @{thm "abs_split"}])
 | 
| 36802 | 841 | in | 
| 58820 | 842 | |
| 68632 | 843 | fun nat_to_int_tac ctxt = | 
| 51717 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 wenzelm parents: 
51143diff
changeset | 844 | simp_tac (put_simpset ss1 ctxt) THEN_ALL_NEW | 
| 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 wenzelm parents: 
51143diff
changeset | 845 | simp_tac (put_simpset ss2 ctxt) THEN_ALL_NEW | 
| 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 wenzelm parents: 
51143diff
changeset | 846 | simp_tac (put_simpset comp_ss ctxt); | 
| 36802 | 847 | |
| 51717 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 wenzelm parents: 
51143diff
changeset | 848 | fun div_mod_tac ctxt = simp_tac (put_simpset div_mod_ss ctxt); | 
| 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 wenzelm parents: 
51143diff
changeset | 849 | fun splits_tac ctxt = simp_tac (put_simpset splits_ss ctxt); | 
| 58820 | 850 | |
| 36802 | 851 | end; | 
| 852 | ||
| 36804 | 853 | fun core_tac ctxt = CSUBGOAL (fn (p, i) => | 
| 36805 | 854 | let | 
| 68632 | 855 | val cpth = | 
| 52059 | 856 | if Config.get ctxt quick_and_dirty | 
| 59582 | 857 | then oracle (ctxt, Envir.beta_norm (Envir.eta_long [] (Thm.term_of (Thm.dest_arg p)))) | 
| 36804 | 858 | else Conv.arg_conv (conv ctxt) p | 
| 58820 | 859 | val p' = Thm.rhs_of cpth | 
| 860 | val th = Thm.implies_intr p' (Thm.equal_elim (Thm.symmetric cpth) (Thm.assume p')) | |
| 60752 | 861 | in resolve_tac ctxt [th] i end | 
| 36802 | 862 | handle COOPER _ => no_tac); | 
| 863 | ||
| 60752 | 864 | fun finish_tac ctxt q = SUBGOAL (fn (_, i) => | 
| 865 | (if q then I else TRY) (resolve_tac ctxt [TrueI] i)); | |
| 36802 | 866 | |
| 47476 
92d1c566ebbf
refined Cooper.tac / "presburger" method: Subgoal.FOCUS_PARAMS allows to solve more problems with outer quantifiers, e.g "!!x. [| 0 <= (x::int); x div 2 < f x |] ==> x < f x * 2";
 wenzelm parents: 
47432diff
changeset | 867 | fun tac elim add_ths del_ths = Subgoal.FOCUS_PARAMS (fn {context = ctxt, ...} =>
 | 
| 
92d1c566ebbf
refined Cooper.tac / "presburger" method: Subgoal.FOCUS_PARAMS allows to solve more problems with outer quantifiers, e.g "!!x. [| 0 <= (x::int); x div 2 < f x |] ==> x < f x * 2";
 wenzelm parents: 
47432diff
changeset | 868 | let | 
| 51717 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 wenzelm parents: 
51143diff
changeset | 869 | val simpset_ctxt = | 
| 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 wenzelm parents: 
51143diff
changeset | 870 | put_simpset (fst (get ctxt)) ctxt delsimps del_ths addsimps add_ths | 
| 47476 
92d1c566ebbf
refined Cooper.tac / "presburger" method: Subgoal.FOCUS_PARAMS allows to solve more problems with outer quantifiers, e.g "!!x. [| 0 <= (x::int); x div 2 < f x |] ==> x < f x * 2";
 wenzelm parents: 
47432diff
changeset | 871 | in | 
| 69593 | 872 | Method.insert_tac ctxt (rev (Named_Theorems.get ctxt \<^named_theorems>\<open>arith\<close>)) | 
| 54742 
7a86358a3c0b
proper context for basic Simplifier operations: rewrite_rule, rewrite_goals_rule, rewrite_goals_tac etc.;
 wenzelm parents: 
54489diff
changeset | 873 | THEN_ALL_NEW Object_Logic.full_atomize_tac ctxt | 
| 47476 
92d1c566ebbf
refined Cooper.tac / "presburger" method: Subgoal.FOCUS_PARAMS allows to solve more problems with outer quantifiers, e.g "!!x. [| 0 <= (x::int); x div 2 < f x |] ==> x < f x * 2";
 wenzelm parents: 
47432diff
changeset | 874 | THEN_ALL_NEW CONVERSION Thm.eta_long_conversion | 
| 51717 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 wenzelm parents: 
51143diff
changeset | 875 | THEN_ALL_NEW simp_tac simpset_ctxt | 
| 61075 | 876 | THEN_ALL_NEW (TRY o generalize_tac ctxt (int_nat_terms ctxt)) | 
| 54742 
7a86358a3c0b
proper context for basic Simplifier operations: rewrite_rule, rewrite_goals_rule, rewrite_goals_tac etc.;
 wenzelm parents: 
54489diff
changeset | 877 | THEN_ALL_NEW Object_Logic.full_atomize_tac ctxt | 
| 47476 
92d1c566ebbf
refined Cooper.tac / "presburger" method: Subgoal.FOCUS_PARAMS allows to solve more problems with outer quantifiers, e.g "!!x. [| 0 <= (x::int); x div 2 < f x |] ==> x < f x * 2";
 wenzelm parents: 
47432diff
changeset | 878 | THEN_ALL_NEW (thin_prems_tac ctxt (is_relevant ctxt)) | 
| 54742 
7a86358a3c0b
proper context for basic Simplifier operations: rewrite_rule, rewrite_goals_rule, rewrite_goals_tac etc.;
 wenzelm parents: 
54489diff
changeset | 879 | THEN_ALL_NEW Object_Logic.full_atomize_tac ctxt | 
| 47476 
92d1c566ebbf
refined Cooper.tac / "presburger" method: Subgoal.FOCUS_PARAMS allows to solve more problems with outer quantifiers, e.g "!!x. [| 0 <= (x::int); x div 2 < f x |] ==> x < f x * 2";
 wenzelm parents: 
47432diff
changeset | 880 | THEN_ALL_NEW div_mod_tac ctxt | 
| 
92d1c566ebbf
refined Cooper.tac / "presburger" method: Subgoal.FOCUS_PARAMS allows to solve more problems with outer quantifiers, e.g "!!x. [| 0 <= (x::int); x div 2 < f x |] ==> x < f x * 2";
 wenzelm parents: 
47432diff
changeset | 881 | THEN_ALL_NEW splits_tac ctxt | 
| 51717 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 wenzelm parents: 
51143diff
changeset | 882 | THEN_ALL_NEW simp_tac simpset_ctxt | 
| 47476 
92d1c566ebbf
refined Cooper.tac / "presburger" method: Subgoal.FOCUS_PARAMS allows to solve more problems with outer quantifiers, e.g "!!x. [| 0 <= (x::int); x div 2 < f x |] ==> x < f x * 2";
 wenzelm parents: 
47432diff
changeset | 883 | THEN_ALL_NEW CONVERSION Thm.eta_long_conversion | 
| 
92d1c566ebbf
refined Cooper.tac / "presburger" method: Subgoal.FOCUS_PARAMS allows to solve more problems with outer quantifiers, e.g "!!x. [| 0 <= (x::int); x div 2 < f x |] ==> x < f x * 2";
 wenzelm parents: 
47432diff
changeset | 884 | THEN_ALL_NEW nat_to_int_tac ctxt | 
| 54742 
7a86358a3c0b
proper context for basic Simplifier operations: rewrite_rule, rewrite_goals_rule, rewrite_goals_tac etc.;
 wenzelm parents: 
54489diff
changeset | 885 | THEN_ALL_NEW core_tac ctxt | 
| 60752 | 886 | THEN_ALL_NEW finish_tac ctxt elim | 
| 47476 
92d1c566ebbf
refined Cooper.tac / "presburger" method: Subgoal.FOCUS_PARAMS allows to solve more problems with outer quantifiers, e.g "!!x. [| 0 <= (x::int); x div 2 < f x |] ==> x < f x * 2";
 wenzelm parents: 
47432diff
changeset | 887 | end 1); | 
| 36802 | 888 | |
| 889 | ||
| 58820 | 890 | (* attribute syntax *) | 
| 36802 | 891 | |
| 892 | local | |
| 893 | ||
| 894 | fun keyword k = Scan.lift (Args.$$$ k -- Args.colon) >> K (); | |
| 895 | ||
| 896 | val constsN = "consts"; | |
| 897 | val any_keyword = keyword constsN | |
| 61476 | 898 | val thms = Scan.repeats (Scan.unless any_keyword Attrib.multi_thm); | 
| 59582 | 899 | val terms = thms >> map (Thm.term_of o Drule.dest_term); | 
| 36802 | 900 | |
| 901 | fun optional scan = Scan.optional scan []; | |
| 902 | ||
| 903 | in | |
| 904 | ||
| 58820 | 905 | val _ = | 
| 906 | Theory.setup | |
| 69593 | 907 | (Attrib.setup \<^binding>\<open>presburger\<close> | 
| 58820 | 908 | ((Scan.lift (Args.$$$ "del") |-- optional (keyword constsN |-- terms)) >> del || | 
| 909 | optional (keyword constsN |-- terms) >> add) "data for Cooper's algorithm" | |
| 59657 
2441a80fb6c1
eliminated unused arith "verbose" flag -- tools that need options can use the context;
 wenzelm parents: 
59621diff
changeset | 910 | #> Arith_Data.add_tactic "Presburger arithmetic" (tac true [] [])); | 
| 36802 | 911 | |
| 912 | end; | |
| 913 | ||
| 914 | end; |