src/ZF/arith_data.ML
author wenzelm
Fri, 26 Apr 2024 13:25:44 +0200
changeset 80150 96f60533ec1d
parent 78800 0b3700d31758
permissions -rw-r--r--
update Windows test machines;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
9548
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
     1
(*  Title:      ZF/arith_data.ML
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
     2
    Author:     Lawrence C Paulson, Cambridge University Computer Laboratory
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
     3
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
     4
Arithmetic simplification: cancellation of common terms
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
     5
*)
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
     6
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
     7
signature ARITH_DATA =
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
     8
sig
9570
e16e168984e1 installation of cancellation simprocs for the integers
paulson
parents: 9548
diff changeset
     9
  (*the main outcome*)
78800
0b3700d31758 clarified signature;
wenzelm
parents: 78791
diff changeset
    10
  val nateq_cancel_numerals_proc: Simplifier.proc
0b3700d31758 clarified signature;
wenzelm
parents: 78791
diff changeset
    11
  val natless_cancel_numerals_proc: Simplifier.proc
0b3700d31758 clarified signature;
wenzelm
parents: 78791
diff changeset
    12
  val natdiff_cancel_numerals_proc: Simplifier.proc
9570
e16e168984e1 installation of cancellation simprocs for the integers
paulson
parents: 9548
diff changeset
    13
  (*tools for use in similar applications*)
59530
2a20354c0877 proper context;
wenzelm
parents: 59498
diff changeset
    14
  val gen_trans_tac: Proof.context -> thm -> thm option -> tactic
20113
90a8d14f3610 simplified prove_conv;
wenzelm
parents: 20044
diff changeset
    15
  val prove_conv: string -> tactic list -> Proof.context -> thm list -> term * term -> thm option
51717
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 45620
diff changeset
    16
  val simplify_meta_eq: thm list -> Proof.context -> thm -> thm
9874
0aa0874ab66b bug fix for arithmetic simprocs (nat & int)
paulson
parents: 9649
diff changeset
    17
  (*debugging*)
0aa0874ab66b bug fix for arithmetic simprocs (nat & int)
paulson
parents: 9649
diff changeset
    18
  structure EqCancelNumeralsData   : CANCEL_NUMERALS_DATA
0aa0874ab66b bug fix for arithmetic simprocs (nat & int)
paulson
parents: 9649
diff changeset
    19
  structure LessCancelNumeralsData : CANCEL_NUMERALS_DATA
0aa0874ab66b bug fix for arithmetic simprocs (nat & int)
paulson
parents: 9649
diff changeset
    20
  structure DiffCancelNumeralsData : CANCEL_NUMERALS_DATA
9548
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    21
end;
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    22
9570
e16e168984e1 installation of cancellation simprocs for the integers
paulson
parents: 9548
diff changeset
    23
9548
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    24
structure ArithData: ARITH_DATA =
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    25
struct
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    26
74294
ee04dc00bf0a more antiquotations;
wenzelm
parents: 70470
diff changeset
    27
val zero = \<^Const>\<open>zero\<close>;
ee04dc00bf0a more antiquotations;
wenzelm
parents: 70470
diff changeset
    28
val succ = \<^Const>\<open>succ\<close>;
9548
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    29
fun mk_succ t = succ $ t;
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    30
val one = mk_succ zero;
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    31
74297
ac130a6bd6b2 more antiquotations;
wenzelm
parents: 74294
diff changeset
    32
fun mk_plus (t, u) = \<^Const>\<open>Arith.add for t u\<close>;
9548
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    33
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    34
(*Thus mk_sum[t] yields t+#0; longer sums don't have a trailing zero*)
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    35
fun mk_sum []        = zero
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    36
  | mk_sum [t,u]     = mk_plus (t, u)
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    37
  | mk_sum (t :: ts) = mk_plus (t, mk_sum ts);
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    38
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    39
(* dest_sum *)
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    40
74294
ee04dc00bf0a more antiquotations;
wenzelm
parents: 70470
diff changeset
    41
fun dest_sum \<^Const_>\<open>zero\<close> = []
ee04dc00bf0a more antiquotations;
wenzelm
parents: 70470
diff changeset
    42
  | dest_sum \<^Const_>\<open>succ for t\<close> = one :: dest_sum t
ee04dc00bf0a more antiquotations;
wenzelm
parents: 70470
diff changeset
    43
  | dest_sum \<^Const_>\<open>Arith.add for t u\<close> = dest_sum t @ dest_sum u
9548
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    44
  | dest_sum tm = [tm];
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    45
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    46
(*Apply the given rewrite (if present) just once*)
59530
2a20354c0877 proper context;
wenzelm
parents: 59498
diff changeset
    47
fun gen_trans_tac _ _ NONE = all_tac
2a20354c0877 proper context;
wenzelm
parents: 59498
diff changeset
    48
  | gen_trans_tac ctxt th2 (SOME th) = ALLGOALS (resolve_tac ctxt [th RS th2]);
9548
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    49
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    50
(*Use <-> or = depending on the type of t*)
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    51
fun mk_eq_iff(t,u) =
74319
54b2e5f771da clarified signature -- prefer antiquotations (with subtle change of exception content);
wenzelm
parents: 74316
diff changeset
    52
  if fastype_of t = \<^Type>\<open>i\<close>
74375
ba880f3a4e52 tuned antiquotations;
wenzelm
parents: 74342
diff changeset
    53
  then \<^Const>\<open>IFOL.eq \<^Type>\<open>i\<close> for t u\<close>
74319
54b2e5f771da clarified signature -- prefer antiquotations (with subtle change of exception content);
wenzelm
parents: 74316
diff changeset
    54
  else \<^Const>\<open>IFOL.iff for t u\<close>;
9548
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    55
9874
0aa0874ab66b bug fix for arithmetic simprocs (nat & int)
paulson
parents: 9649
diff changeset
    56
(*We remove equality assumptions because they confuse the simplifier and
0aa0874ab66b bug fix for arithmetic simprocs (nat & int)
paulson
parents: 9649
diff changeset
    57
  because only type-checking assumptions are necessary.*)
74342
5d411d85da8c clarified antiquotations;
wenzelm
parents: 74319
diff changeset
    58
fun is_eq_thm th = can FOLogic.dest_eq (\<^dest_judgment> (Thm.prop_of th));
9649
89155e48fa53 simproc bug fix: only TYPING assumptions are given to the simplifier
paulson
parents: 9570
diff changeset
    59
20113
90a8d14f3610 simplified prove_conv;
wenzelm
parents: 20044
diff changeset
    60
fun prove_conv name tacs ctxt prems (t,u) =
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 14387
diff changeset
    61
  if t aconv u then NONE
9548
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    62
  else
33317
b4534348b8fd standardized filter/filter_out;
wenzelm
parents: 32155
diff changeset
    63
  let val prems' = filter_out is_eq_thm prems
74342
5d411d85da8c clarified antiquotations;
wenzelm
parents: 74319
diff changeset
    64
      val goal = Logic.list_implies (map Thm.prop_of prems', \<^make_judgment> (mk_eq_iff (t, u)));
20113
90a8d14f3610 simplified prove_conv;
wenzelm
parents: 20044
diff changeset
    65
  in SOME (prems' MRS Goal.prove ctxt [] [] goal (K (EVERY tacs)))
18678
dd0c569fa43d sane ERROR handling;
wenzelm
parents: 18328
diff changeset
    66
      handle ERROR msg =>
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 14387
diff changeset
    67
        (warning (msg ^ "\nCancellation failed: no typing information? (" ^ name ^ ")"); NONE)
9548
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    68
  end;
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    69
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    70
13462
56610e2ba220 sane interface for simprocs;
wenzelm
parents: 13259
diff changeset
    71
(*** Use CancelNumerals simproc without binary numerals,
9548
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    72
     just for cancellation ***)
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    73
74297
ac130a6bd6b2 more antiquotations;
wenzelm
parents: 74294
diff changeset
    74
fun mk_times (t, u) = \<^Const>\<open>Arith.mult for t u\<close>;
9548
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    75
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    76
fun mk_prod [] = one
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    77
  | mk_prod [t] = t
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    78
  | mk_prod (t :: ts) = if t = one then mk_prod ts
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    79
                        else mk_times (t, mk_prod ts);
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    80
74319
54b2e5f771da clarified signature -- prefer antiquotations (with subtle change of exception content);
wenzelm
parents: 74316
diff changeset
    81
fun dest_prod tm =
54b2e5f771da clarified signature -- prefer antiquotations (with subtle change of exception content);
wenzelm
parents: 74316
diff changeset
    82
  let val (t,u) = \<^Const_fn>\<open>Arith.mult for t u => \<open>(t, u)\<close>\<close> tm
54b2e5f771da clarified signature -- prefer antiquotations (with subtle change of exception content);
wenzelm
parents: 74316
diff changeset
    83
  in  dest_prod t @ dest_prod u  end
54b2e5f771da clarified signature -- prefer antiquotations (with subtle change of exception content);
wenzelm
parents: 74316
diff changeset
    84
  handle TERM _ => [tm];
9548
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    85
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    86
(*Dummy version: the only arguments are 0 and 1*)
24630
351a308ab58d simplified type int (eliminated IntInf.int, integer);
wenzelm
parents: 20342
diff changeset
    87
fun mk_coeff (0, t) = zero
9548
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    88
  | mk_coeff (1, t) = t
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    89
  | mk_coeff _       = raise TERM("mk_coeff", []);
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    90
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    91
(*Dummy version: the "coefficient" is always 1.
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    92
  In the result, the factors are sorted terms*)
35408
b48ab741683b modernized structure Term_Ord;
wenzelm
parents: 33317
diff changeset
    93
fun dest_coeff t = (1, mk_prod (sort Term_Ord.term_ord (dest_prod t)));
9548
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    94
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    95
(*Find first coefficient-term THAT MATCHES u*)
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    96
fun find_first_coeff past u [] = raise TERM("find_first_coeff", [])
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    97
  | find_first_coeff past u (t::terms) =
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    98
        let val (n,u') = dest_coeff t
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    99
        in  if u aconv u' then (n, rev past @ terms)
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   100
                          else find_first_coeff (t::past) u terms
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   101
        end
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   102
        handle TERM _ => find_first_coeff (t::past) u terms;
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   103
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   104
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   105
(*Simplify #1*n and n*#1 to n*)
24893
b8ef7afe3a6b modernized specifications;
wenzelm
parents: 24630
diff changeset
   106
val add_0s = [@{thm add_0_natify}, @{thm add_0_right_natify}];
b8ef7afe3a6b modernized specifications;
wenzelm
parents: 24630
diff changeset
   107
val add_succs = [@{thm add_succ}, @{thm add_succ_right}];
b8ef7afe3a6b modernized specifications;
wenzelm
parents: 24630
diff changeset
   108
val mult_1s = [@{thm mult_1_natify}, @{thm mult_1_right_natify}];
b8ef7afe3a6b modernized specifications;
wenzelm
parents: 24630
diff changeset
   109
val tc_rules = [@{thm natify_in_nat}, @{thm add_type}, @{thm diff_type}, @{thm mult_type}];
b8ef7afe3a6b modernized specifications;
wenzelm
parents: 24630
diff changeset
   110
val natifys = [@{thm natify_0}, @{thm natify_ident}, @{thm add_natify1}, @{thm add_natify2},
b8ef7afe3a6b modernized specifications;
wenzelm
parents: 24630
diff changeset
   111
               @{thm diff_natify1}, @{thm diff_natify2}];
9548
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   112
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   113
(*Final simplification: cancel + and **)
51717
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 45620
diff changeset
   114
fun simplify_meta_eq rules ctxt =
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 45620
diff changeset
   115
  let val ctxt' =
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 45620
diff changeset
   116
    put_simpset FOL_ss ctxt
26287
df8e5362cff9 proper antiquotations;
wenzelm
parents: 24893
diff changeset
   117
      delsimps @{thms iff_simps} (*these could erase the whole rule!*)
18328
841261f303a1 simprocs: static evaluation of simpset;
wenzelm
parents: 17956
diff changeset
   118
      addsimps rules
45620
f2a587696afb modernized some old-style infix operations, which were left over from the time of ML proof scripts;
wenzelm
parents: 44947
diff changeset
   119
      |> fold Simplifier.add_eqcong [@{thm eq_cong2}, @{thm iff_cong2}]
51717
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 45620
diff changeset
   120
  in mk_meta_eq o simplify ctxt' end;
9548
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   121
24893
b8ef7afe3a6b modernized specifications;
wenzelm
parents: 24630
diff changeset
   122
val final_rules = add_0s @ mult_1s @ [@{thm mult_0}, @{thm mult_0_right}];
9548
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   123
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   124
structure CancelNumeralsCommon =
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   125
  struct
14387
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 13487
diff changeset
   126
  val mk_sum            = (fn T:typ => mk_sum)
9548
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   127
  val dest_sum          = dest_sum
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   128
  val mk_coeff          = mk_coeff
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   129
  val dest_coeff        = dest_coeff
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   130
  val find_first_coeff  = find_first_coeff []
18328
841261f303a1 simprocs: static evaluation of simpset;
wenzelm
parents: 17956
diff changeset
   131
51717
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 45620
diff changeset
   132
  val norm_ss1 =
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 62913
diff changeset
   133
    simpset_of (put_simpset ZF_ss \<^context> addsimps add_0s @ add_succs @ mult_1s @ @{thms add_ac})
51717
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 45620
diff changeset
   134
  val norm_ss2 =
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 62913
diff changeset
   135
    simpset_of (put_simpset ZF_ss \<^context> addsimps add_0s @ mult_1s @ @{thms add_ac} @
51717
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 45620
diff changeset
   136
      @{thms mult_ac} @ tc_rules @ natifys)
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 45620
diff changeset
   137
  fun norm_tac ctxt =
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 45620
diff changeset
   138
    ALLGOALS (asm_simp_tac (put_simpset norm_ss1 ctxt))
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 45620
diff changeset
   139
    THEN ALLGOALS (asm_simp_tac (put_simpset norm_ss2 ctxt))
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 45620
diff changeset
   140
  val numeral_simp_ss =
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 62913
diff changeset
   141
    simpset_of (put_simpset ZF_ss \<^context> addsimps add_0s @ tc_rules @ natifys)
51717
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 45620
diff changeset
   142
  fun numeral_simp_tac ctxt =
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 45620
diff changeset
   143
    ALLGOALS (asm_simp_tac (put_simpset numeral_simp_ss ctxt))
9548
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   144
  val simplify_meta_eq  = simplify_meta_eq final_rules
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   145
  end;
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   146
9874
0aa0874ab66b bug fix for arithmetic simprocs (nat & int)
paulson
parents: 9649
diff changeset
   147
(** The functor argumnets are declared as separate structures
0aa0874ab66b bug fix for arithmetic simprocs (nat & int)
paulson
parents: 9649
diff changeset
   148
    so that they can be exported to ease debugging. **)
9548
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   149
13462
56610e2ba220 sane interface for simprocs;
wenzelm
parents: 13259
diff changeset
   150
structure EqCancelNumeralsData =
9874
0aa0874ab66b bug fix for arithmetic simprocs (nat & int)
paulson
parents: 9649
diff changeset
   151
  struct
0aa0874ab66b bug fix for arithmetic simprocs (nat & int)
paulson
parents: 9649
diff changeset
   152
  open CancelNumeralsCommon
9548
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   153
  val prove_conv = prove_conv "nateq_cancel_numerals"
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   154
  val mk_bal   = FOLogic.mk_eq
9649
89155e48fa53 simproc bug fix: only TYPING assumptions are given to the simplifier
paulson
parents: 9570
diff changeset
   155
  val dest_bal = FOLogic.dest_eq
70470
wenzelm
parents: 69593
diff changeset
   156
  val bal_add1 = @{thm eq_add_iff [THEN iff_trans]}
wenzelm
parents: 69593
diff changeset
   157
  val bal_add2 = @{thm eq_add_iff [THEN iff_trans]}
59530
2a20354c0877 proper context;
wenzelm
parents: 59498
diff changeset
   158
  fun trans_tac ctxt = gen_trans_tac ctxt @{thm iff_trans}
9874
0aa0874ab66b bug fix for arithmetic simprocs (nat & int)
paulson
parents: 9649
diff changeset
   159
  end;
0aa0874ab66b bug fix for arithmetic simprocs (nat & int)
paulson
parents: 9649
diff changeset
   160
0aa0874ab66b bug fix for arithmetic simprocs (nat & int)
paulson
parents: 9649
diff changeset
   161
structure EqCancelNumerals = CancelNumeralsFun(EqCancelNumeralsData);
9548
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   162
13462
56610e2ba220 sane interface for simprocs;
wenzelm
parents: 13259
diff changeset
   163
structure LessCancelNumeralsData =
9874
0aa0874ab66b bug fix for arithmetic simprocs (nat & int)
paulson
parents: 9649
diff changeset
   164
  struct
0aa0874ab66b bug fix for arithmetic simprocs (nat & int)
paulson
parents: 9649
diff changeset
   165
  open CancelNumeralsCommon
9548
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   166
  val prove_conv = prove_conv "natless_cancel_numerals"
74297
ac130a6bd6b2 more antiquotations;
wenzelm
parents: 74294
diff changeset
   167
  fun mk_bal (t, u) = \<^Const>\<open>Ordinal.lt for t u\<close>
74319
54b2e5f771da clarified signature -- prefer antiquotations (with subtle change of exception content);
wenzelm
parents: 74316
diff changeset
   168
  val dest_bal = \<^Const_fn>\<open>Ordinal.lt for t u => \<open>(t, u)\<close>\<close>
70470
wenzelm
parents: 69593
diff changeset
   169
  val bal_add1 = @{thm less_add_iff [THEN iff_trans]}
wenzelm
parents: 69593
diff changeset
   170
  val bal_add2 = @{thm less_add_iff [THEN iff_trans]}
59530
2a20354c0877 proper context;
wenzelm
parents: 59498
diff changeset
   171
  fun trans_tac ctxt = gen_trans_tac ctxt @{thm iff_trans}
9874
0aa0874ab66b bug fix for arithmetic simprocs (nat & int)
paulson
parents: 9649
diff changeset
   172
  end;
0aa0874ab66b bug fix for arithmetic simprocs (nat & int)
paulson
parents: 9649
diff changeset
   173
0aa0874ab66b bug fix for arithmetic simprocs (nat & int)
paulson
parents: 9649
diff changeset
   174
structure LessCancelNumerals = CancelNumeralsFun(LessCancelNumeralsData);
9548
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   175
13462
56610e2ba220 sane interface for simprocs;
wenzelm
parents: 13259
diff changeset
   176
structure DiffCancelNumeralsData =
9874
0aa0874ab66b bug fix for arithmetic simprocs (nat & int)
paulson
parents: 9649
diff changeset
   177
  struct
0aa0874ab66b bug fix for arithmetic simprocs (nat & int)
paulson
parents: 9649
diff changeset
   178
  open CancelNumeralsCommon
9548
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   179
  val prove_conv = prove_conv "natdiff_cancel_numerals"
74297
ac130a6bd6b2 more antiquotations;
wenzelm
parents: 74294
diff changeset
   180
  fun mk_bal (t, u) = \<^Const>\<open>Arith.diff for t u\<close>
74319
54b2e5f771da clarified signature -- prefer antiquotations (with subtle change of exception content);
wenzelm
parents: 74316
diff changeset
   181
  val dest_bal = \<^Const_fn>\<open>Arith.diff for t u => \<open>(t, u)\<close>\<close>
70470
wenzelm
parents: 69593
diff changeset
   182
  val bal_add1 = @{thm diff_add_eq [THEN trans]}
wenzelm
parents: 69593
diff changeset
   183
  val bal_add2 = @{thm diff_add_eq [THEN trans]}
59530
2a20354c0877 proper context;
wenzelm
parents: 59498
diff changeset
   184
  fun trans_tac ctxt = gen_trans_tac ctxt @{thm trans}
9874
0aa0874ab66b bug fix for arithmetic simprocs (nat & int)
paulson
parents: 9649
diff changeset
   185
  end;
0aa0874ab66b bug fix for arithmetic simprocs (nat & int)
paulson
parents: 9649
diff changeset
   186
0aa0874ab66b bug fix for arithmetic simprocs (nat & int)
paulson
parents: 9649
diff changeset
   187
structure DiffCancelNumerals = CancelNumeralsFun(DiffCancelNumeralsData);
9548
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   188
78791
4f7dce5c1a81 more standard simproc_setup in Isar;
wenzelm
parents: 74375
diff changeset
   189
val nateq_cancel_numerals_proc = EqCancelNumerals.proc;
4f7dce5c1a81 more standard simproc_setup in Isar;
wenzelm
parents: 74375
diff changeset
   190
val natless_cancel_numerals_proc = LessCancelNumerals.proc;
4f7dce5c1a81 more standard simproc_setup in Isar;
wenzelm
parents: 74375
diff changeset
   191
val natdiff_cancel_numerals_proc = DiffCancelNumerals.proc;
9548
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   192
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   193
end;