File ‹int_arith.ML›
signature INT_NUMERAL_SIMPROCS =
sig
val inteq_cancel_numerals_proc: Simplifier.proc
val intless_cancel_numerals_proc: Simplifier.proc
val intle_cancel_numerals_proc: Simplifier.proc
val int_combine_numerals_proc: Simplifier.proc
val int_combine_numerals_prod_proc: Simplifier.proc
end
structure Int_Numeral_Simprocs: INT_NUMERAL_SIMPROCS =
struct
fun mk_bit 0 = \<^term>‹0›
| mk_bit 1 = \<^term>‹succ(0)›
| mk_bit _ = raise TERM ("mk_bit", []);
fun dest_bit \<^term>‹0› = 0
| dest_bit \<^term>‹succ(0)› = 1
| dest_bit t = raise TERM ("dest_bit", [t]);
fun mk_bin i =
let
fun term_of [] = \<^term>‹Pls›
| term_of [~1] = \<^term>‹Min›
| term_of (b :: bs) = \<^term>‹Bit› $ term_of bs $ mk_bit b;
in term_of (Numeral_Syntax.make_binary i) end;
fun dest_bin tm =
let
fun bin_of \<^term>‹Pls› = []
| bin_of \<^term>‹Min› = [~1]
| bin_of (\<^term>‹Bit› $ bs $ b) = dest_bit b :: bin_of bs
| bin_of _ = raise TERM ("dest_bin", [tm]);
in Numeral_Syntax.dest_binary (bin_of tm) end;
fun mk_numeral i = \<^Const>‹integ_of› $ mk_bin i;
fun dest_numeral \<^Const_>‹integ_of for w› = dest_bin w
| dest_numeral t = raise TERM ("dest_numeral", [t]);
fun find_first_numeral past (t::terms) =
((dest_numeral t, rev past @ terms)
handle TERM _ => find_first_numeral (t::past) terms)
| find_first_numeral _ [] = raise TERM("find_first_numeral", []);
val zero = mk_numeral 0;
fun mk_plus (t, u) = \<^Const>‹zadd for t u›;
fun mk_sum [] = zero
| mk_sum [t,u] = mk_plus (t, u)
| mk_sum (t :: ts) = mk_plus (t, mk_sum ts);
fun long_mk_sum [] = zero
| long_mk_sum (t :: ts) = mk_plus (t, mk_sum ts);
fun dest_summing (pos, \<^Const_>‹zadd for t u›, ts) =
dest_summing (pos, t, dest_summing (pos, u, ts))
| dest_summing (pos, \<^Const_>‹zdiff for t u›, ts) =
dest_summing (pos, t, dest_summing (not pos, u, ts))
| dest_summing (pos, t, ts) =
if pos then t::ts else \<^Const>‹zminus for t› :: ts;
fun dest_sum t = dest_summing (true, t, []);
val one = mk_numeral 1;
fun mk_times (t, u) = \<^Const>‹zmult for t u›;
fun mk_prod [] = one
| mk_prod [t] = t
| mk_prod (t :: ts) = if t = one then mk_prod ts
else mk_times (t, mk_prod ts);
fun dest_prod tm =
let val (t,u) = \<^Const_fn>‹zmult for t u => ‹(t, u)›› tm
in dest_prod t @ dest_prod u end
handle TERM _ => [tm];
fun mk_coeff (k, t) = mk_times (mk_numeral k, t);
fun dest_coeff sign \<^Const_>‹zminus for t› = dest_coeff (~sign) t
| dest_coeff sign t =
let val ts = sort Term_Ord.term_ord (dest_prod t)
val (n, ts') = find_first_numeral [] ts
handle TERM _ => (1, ts)
in (sign*n, mk_prod ts') end;
fun find_first_coeff _ _ [] = raise TERM("find_first_coeff", [])
| find_first_coeff past u (t::terms) =
let val (n,u') = dest_coeff 1 t
in if u aconv u' then (n, rev past @ terms)
else find_first_coeff (t::past) u terms
end
handle TERM _ => find_first_coeff (t::past) u terms;
val add_0s = [@{thm zadd_0_intify}, @{thm zadd_0_right_intify}];
val mult_1s = [@{thm zmult_1_intify}, @{thm zmult_1_right_intify},
@{thm zmult_minus1}, @{thm zmult_minus1_right}];
val tc_rules = [@{thm integ_of_type}, @{thm intify_in_int},
@{thm int_of_type}, @{thm zadd_type}, @{thm zdiff_type}, @{thm zmult_type}] @
@{thms bin.intros};
val intifys = [@{thm intify_ident}, @{thm zadd_intify1}, @{thm zadd_intify2},
@{thm zdiff_intify1}, @{thm zdiff_intify2}, @{thm zmult_intify1}, @{thm zmult_intify2},
@{thm zless_intify1}, @{thm zless_intify2}, @{thm zle_intify1}, @{thm zle_intify2}];
val bin_simps = [@{thm add_integ_of_left}] @ @{thms bin_arith_simps} @ @{thms bin_rel_simps};
val zminus_simps = @{thms NCons_simps} @
[@{thm integ_of_minus} RS @{thm sym},
@{thm bin_minus_1}, @{thm bin_minus_0}, @{thm bin_minus_Pls}, @{thm bin_minus_Min},
@{thm bin_pred_1}, @{thm bin_pred_0}, @{thm bin_pred_Pls}, @{thm bin_pred_Min}];
val diff_simps = [@{thm zdiff_def}, @{thm zminus_zadd_distrib}, @{thm zminus_zminus}];
val int_minus_mult_eq_1_to_2 = @{lemma "$- w $* z = w $* $- z" by simp};
val int_minus_from_mult_simps =
[@{thm zminus_zminus}, @{thm zmult_zminus}, @{thm zmult_zminus_right}];
val int_mult_minus_simps =
[@{thm zmult_assoc}, @{thm zmult_zminus} RS @{thm sym}, int_minus_mult_eq_1_to_2];
structure CancelNumeralsCommon =
struct
val mk_sum = (fn _ : typ => mk_sum)
val dest_sum = dest_sum
val mk_coeff = mk_coeff
val dest_coeff = dest_coeff 1
val find_first_coeff = find_first_coeff []
fun trans_tac ctxt = ArithData.gen_trans_tac ctxt @{thm iff_trans}
val norm_ss1 =
simpset_of (put_simpset ZF_ss \<^context>
addsimps add_0s @ mult_1s @ diff_simps @ zminus_simps @ @{thms zadd_ac})
val norm_ss2 =
simpset_of (put_simpset ZF_ss \<^context>
addsimps bin_simps @ int_mult_minus_simps @ intifys)
val norm_ss3 =
simpset_of (put_simpset ZF_ss \<^context>
addsimps int_minus_from_mult_simps @ @{thms zadd_ac} @ @{thms zmult_ac} @ tc_rules @ intifys)
fun norm_tac ctxt =
ALLGOALS (asm_simp_tac (put_simpset norm_ss1 ctxt))
THEN ALLGOALS (asm_simp_tac (put_simpset norm_ss2 ctxt))
THEN ALLGOALS (asm_simp_tac (put_simpset norm_ss3 ctxt))
val numeral_simp_ss =
simpset_of (put_simpset ZF_ss \<^context>
addsimps add_0s @ bin_simps @ tc_rules @ intifys)
fun numeral_simp_tac ctxt =
ALLGOALS (simp_tac (put_simpset numeral_simp_ss ctxt))
THEN ALLGOALS (asm_simp_tac ctxt)
val simplify_meta_eq = ArithData.simplify_meta_eq (add_0s @ mult_1s)
end;
structure EqCancelNumerals = CancelNumeralsFun
(open CancelNumeralsCommon
val prove_conv = ArithData.prove_conv "inteq_cancel_numerals"
val mk_bal = FOLogic.mk_eq
val dest_bal = FOLogic.dest_eq
val bal_add1 = @{thm eq_add_iff1} RS @{thm iff_trans}
val bal_add2 = @{thm eq_add_iff2} RS @{thm iff_trans}
);
structure LessCancelNumerals = CancelNumeralsFun
(open CancelNumeralsCommon
val prove_conv = ArithData.prove_conv "intless_cancel_numerals"
fun mk_bal (t, u) = \<^Const>‹zless for t u›
val dest_bal = \<^Const_fn>‹zless for t u => ‹(t, u)››
val bal_add1 = @{thm less_add_iff1} RS @{thm iff_trans}
val bal_add2 = @{thm less_add_iff2} RS @{thm iff_trans}
);
structure LeCancelNumerals = CancelNumeralsFun
(open CancelNumeralsCommon
val prove_conv = ArithData.prove_conv "intle_cancel_numerals"
fun mk_bal (t, u) = \<^Const>‹zle for t u›
val dest_bal = \<^Const_fn>‹zle for t u => ‹(t, u)››
val bal_add1 = @{thm le_add_iff1} RS @{thm iff_trans}
val bal_add2 = @{thm le_add_iff2} RS @{thm iff_trans}
);
val inteq_cancel_numerals_proc = EqCancelNumerals.proc;
val intless_cancel_numerals_proc = LessCancelNumerals.proc;
val intle_cancel_numerals_proc = LeCancelNumerals.proc;
fun prove_conv_nohyps name tacs sg = ArithData.prove_conv name tacs sg [];
structure CombineNumeralsData =
struct
type coeff = int
val iszero = (fn x => x = 0)
val add = op +
val mk_sum = (fn _ : typ => long_mk_sum)
val dest_sum = dest_sum
val mk_coeff = mk_coeff
val dest_coeff = dest_coeff 1
val left_distrib = @{thm left_zadd_zmult_distrib} RS @{thm trans}
val prove_conv = prove_conv_nohyps "int_combine_numerals"
fun trans_tac ctxt = ArithData.gen_trans_tac ctxt @{thm trans}
val norm_ss1 =
simpset_of (put_simpset ZF_ss \<^context>
addsimps add_0s @ mult_1s @ diff_simps @ zminus_simps @ @{thms zadd_ac} @ intifys)
val norm_ss2 =
simpset_of (put_simpset ZF_ss \<^context>
addsimps bin_simps @ int_mult_minus_simps @ intifys)
val norm_ss3 =
simpset_of (put_simpset ZF_ss \<^context>
addsimps int_minus_from_mult_simps @ @{thms zadd_ac} @ @{thms zmult_ac} @ tc_rules @ intifys)
fun norm_tac ctxt =
ALLGOALS (asm_simp_tac (put_simpset norm_ss1 ctxt))
THEN ALLGOALS (asm_simp_tac (put_simpset norm_ss2 ctxt))
THEN ALLGOALS (asm_simp_tac (put_simpset norm_ss3 ctxt))
val numeral_simp_ss =
simpset_of (put_simpset ZF_ss \<^context> addsimps add_0s @ bin_simps @ tc_rules @ intifys)
fun numeral_simp_tac ctxt =
ALLGOALS (simp_tac (put_simpset numeral_simp_ss ctxt))
val simplify_meta_eq = ArithData.simplify_meta_eq (add_0s @ mult_1s)
end;
structure CombineNumerals = CombineNumeralsFun(CombineNumeralsData);
val int_combine_numerals_proc = CombineNumerals.proc
structure CombineNumeralsProdData =
struct
type coeff = int
val iszero = (fn x => x = 0)
val add = op *
val mk_sum = (fn _ : typ => mk_prod)
val dest_sum = dest_prod
fun mk_coeff(k,t) =
if t = one then mk_numeral k
else raise TERM("mk_coeff", [])
fun dest_coeff t = (dest_numeral t, one)
val left_distrib = @{thm zmult_assoc} RS @{thm sym} RS @{thm trans}
val prove_conv = prove_conv_nohyps "int_combine_numerals_prod"
fun trans_tac ctxt = ArithData.gen_trans_tac ctxt @{thm trans}
val norm_ss1 =
simpset_of (put_simpset ZF_ss \<^context> addsimps mult_1s @ diff_simps @ zminus_simps)
val norm_ss2 =
simpset_of (put_simpset ZF_ss \<^context> addsimps [@{thm zmult_zminus_right} RS @{thm sym}] @
bin_simps @ @{thms zmult_ac} @ tc_rules @ intifys)
fun norm_tac ctxt =
ALLGOALS (asm_simp_tac (put_simpset norm_ss1 ctxt))
THEN ALLGOALS (asm_simp_tac (put_simpset norm_ss2 ctxt))
val numeral_simp_ss =
simpset_of (put_simpset ZF_ss \<^context> addsimps bin_simps @ tc_rules @ intifys)
fun numeral_simp_tac ctxt =
ALLGOALS (simp_tac (put_simpset numeral_simp_ss ctxt))
val simplify_meta_eq = ArithData.simplify_meta_eq (mult_1s);
end;
structure CombineNumeralsProd = CombineNumeralsFun(CombineNumeralsProdData);
val int_combine_numerals_prod_proc = CombineNumeralsProd.proc;
end;