src/HOL/Numeral_Simprocs.thy
author haftmann
Fri, 01 Nov 2013 18:51:14 +0100
changeset 54230 b1d955791529
parent 48891 c0eafbd55de3
child 54249 ce00f2fef556
permissions -rw-r--r--
more simplification rules on unary and binary minus
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
33366
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
     1
(* Author: Various *)
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
     2
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
     3
header {* Combination and Cancellation Simprocs for Numeral Expressions *}
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
     4
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
     5
theory Numeral_Simprocs
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
     6
imports Divides
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
     7
begin
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
     8
48891
c0eafbd55de3 prefer ML_file over old uses;
wenzelm
parents: 47255
diff changeset
     9
ML_file "~~/src/Provers/Arith/assoc_fold.ML"
c0eafbd55de3 prefer ML_file over old uses;
wenzelm
parents: 47255
diff changeset
    10
ML_file "~~/src/Provers/Arith/cancel_numerals.ML"
c0eafbd55de3 prefer ML_file over old uses;
wenzelm
parents: 47255
diff changeset
    11
ML_file "~~/src/Provers/Arith/combine_numerals.ML"
c0eafbd55de3 prefer ML_file over old uses;
wenzelm
parents: 47255
diff changeset
    12
ML_file "~~/src/Provers/Arith/cancel_numeral_factor.ML"
c0eafbd55de3 prefer ML_file over old uses;
wenzelm
parents: 47255
diff changeset
    13
ML_file "~~/src/Provers/Arith/extract_common_term.ML"
c0eafbd55de3 prefer ML_file over old uses;
wenzelm
parents: 47255
diff changeset
    14
47255
30a1692557b0 removed Nat_Numeral.thy, moving all theorems elsewhere
huffman
parents: 47159
diff changeset
    15
lemmas semiring_norm =
30a1692557b0 removed Nat_Numeral.thy, moving all theorems elsewhere
huffman
parents: 47159
diff changeset
    16
  Let_def arith_simps nat_arith rel_simps
30a1692557b0 removed Nat_Numeral.thy, moving all theorems elsewhere
huffman
parents: 47159
diff changeset
    17
  if_False if_True
30a1692557b0 removed Nat_Numeral.thy, moving all theorems elsewhere
huffman
parents: 47159
diff changeset
    18
  add_0 add_Suc add_numeral_left
30a1692557b0 removed Nat_Numeral.thy, moving all theorems elsewhere
huffman
parents: 47159
diff changeset
    19
  add_neg_numeral_left mult_numeral_left
30a1692557b0 removed Nat_Numeral.thy, moving all theorems elsewhere
huffman
parents: 47159
diff changeset
    20
  numeral_1_eq_1 [symmetric] Suc_eq_plus1
30a1692557b0 removed Nat_Numeral.thy, moving all theorems elsewhere
huffman
parents: 47159
diff changeset
    21
  eq_numeral_iff_iszero not_iszero_Numeral1
30a1692557b0 removed Nat_Numeral.thy, moving all theorems elsewhere
huffman
parents: 47159
diff changeset
    22
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 45607
diff changeset
    23
declare split_div [of _ _ "numeral k", arith_split] for k
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 45607
diff changeset
    24
declare split_mod [of _ _ "numeral k", arith_split] for k
33366
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
    25
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
    26
text {* For @{text combine_numerals} *}
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
    27
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
    28
lemma left_add_mult_distrib: "i*u + (j*u + k) = (i+j)*u + (k::nat)"
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
    29
by (simp add: add_mult_distrib)
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
    30
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
    31
text {* For @{text cancel_numerals} *}
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
    32
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
    33
lemma nat_diff_add_eq1:
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
    34
     "j <= (i::nat) ==> ((i*u + m) - (j*u + n)) = (((i-j)*u + m) - n)"
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
    35
by (simp split add: nat_diff_split add: add_mult_distrib)
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
    36
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
    37
lemma nat_diff_add_eq2:
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
    38
     "i <= (j::nat) ==> ((i*u + m) - (j*u + n)) = (m - ((j-i)*u + n))"
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
    39
by (simp split add: nat_diff_split add: add_mult_distrib)
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
    40
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
    41
lemma nat_eq_add_iff1:
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
    42
     "j <= (i::nat) ==> (i*u + m = j*u + n) = ((i-j)*u + m = n)"
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
    43
by (auto split add: nat_diff_split simp add: add_mult_distrib)
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
    44
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
    45
lemma nat_eq_add_iff2:
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
    46
     "i <= (j::nat) ==> (i*u + m = j*u + n) = (m = (j-i)*u + n)"
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
    47
by (auto split add: nat_diff_split simp add: add_mult_distrib)
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
    48
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
    49
lemma nat_less_add_iff1:
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
    50
     "j <= (i::nat) ==> (i*u + m < j*u + n) = ((i-j)*u + m < n)"
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
    51
by (auto split add: nat_diff_split simp add: add_mult_distrib)
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
    52
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
    53
lemma nat_less_add_iff2:
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
    54
     "i <= (j::nat) ==> (i*u + m < j*u + n) = (m < (j-i)*u + n)"
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
    55
by (auto split add: nat_diff_split simp add: add_mult_distrib)
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
    56
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
    57
lemma nat_le_add_iff1:
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
    58
     "j <= (i::nat) ==> (i*u + m <= j*u + n) = ((i-j)*u + m <= n)"
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
    59
by (auto split add: nat_diff_split simp add: add_mult_distrib)
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
    60
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
    61
lemma nat_le_add_iff2:
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
    62
     "i <= (j::nat) ==> (i*u + m <= j*u + n) = (m <= (j-i)*u + n)"
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
    63
by (auto split add: nat_diff_split simp add: add_mult_distrib)
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
    64
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
    65
text {* For @{text cancel_numeral_factors} *}
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
    66
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
    67
lemma nat_mult_le_cancel1: "(0::nat) < k ==> (k*m <= k*n) = (m<=n)"
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
    68
by auto
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
    69
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
    70
lemma nat_mult_less_cancel1: "(0::nat) < k ==> (k*m < k*n) = (m<n)"
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
    71
by auto
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
    72
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
    73
lemma nat_mult_eq_cancel1: "(0::nat) < k ==> (k*m = k*n) = (m=n)"
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
    74
by auto
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
    75
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
    76
lemma nat_mult_div_cancel1: "(0::nat) < k ==> (k*m) div (k*n) = (m div n)"
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
    77
by auto
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
    78
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
    79
lemma nat_mult_dvd_cancel_disj[simp]:
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
    80
  "(k*m) dvd (k*n) = (k=0 | m dvd (n::nat))"
47159
978c00c20a59 generalize some theorems about div/mod
huffman
parents: 47108
diff changeset
    81
by (auto simp: dvd_eq_mod_eq_0 mod_mult_mult1)
33366
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
    82
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
    83
lemma nat_mult_dvd_cancel1: "0 < k \<Longrightarrow> (k*m) dvd (k*n::nat) = (m dvd n)"
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
    84
by(auto)
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
    85
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
    86
text {* For @{text cancel_factor} *}
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
    87
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
    88
lemma nat_mult_le_cancel_disj: "(k*m <= k*n) = ((0::nat) < k --> m<=n)"
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
    89
by auto
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
    90
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
    91
lemma nat_mult_less_cancel_disj: "(k*m < k*n) = ((0::nat) < k & m<n)"
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
    92
by auto
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
    93
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
    94
lemma nat_mult_eq_cancel_disj: "(k*m = k*n) = (k = (0::nat) | m=n)"
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
    95
by auto
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
    96
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
    97
lemma nat_mult_div_cancel_disj[simp]:
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
    98
     "(k*m) div (k*n) = (if k = (0::nat) then 0 else m div n)"
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
    99
by (simp add: nat_mult_div_cancel1)
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
   100
48891
c0eafbd55de3 prefer ML_file over old uses;
wenzelm
parents: 47255
diff changeset
   101
ML_file "Tools/numeral_simprocs.ML"
33366
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
   102
45284
ae78a4ffa81d use simproc_setup for cancellation simprocs, to get proper name bindings
huffman
parents: 37886
diff changeset
   103
simproc_setup semiring_assoc_fold
ae78a4ffa81d use simproc_setup for cancellation simprocs, to get proper name bindings
huffman
parents: 37886
diff changeset
   104
  ("(a::'a::comm_semiring_1_cancel) * b") =
ae78a4ffa81d use simproc_setup for cancellation simprocs, to get proper name bindings
huffman
parents: 37886
diff changeset
   105
  {* fn phi => Numeral_Simprocs.assoc_fold *}
ae78a4ffa81d use simproc_setup for cancellation simprocs, to get proper name bindings
huffman
parents: 37886
diff changeset
   106
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 45607
diff changeset
   107
(* TODO: see whether the type class can be generalized further *)
45284
ae78a4ffa81d use simproc_setup for cancellation simprocs, to get proper name bindings
huffman
parents: 37886
diff changeset
   108
simproc_setup int_combine_numerals
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 45607
diff changeset
   109
  ("(i::'a::comm_ring_1) + j" | "(i::'a::comm_ring_1) - j") =
45284
ae78a4ffa81d use simproc_setup for cancellation simprocs, to get proper name bindings
huffman
parents: 37886
diff changeset
   110
  {* fn phi => Numeral_Simprocs.combine_numerals *}
ae78a4ffa81d use simproc_setup for cancellation simprocs, to get proper name bindings
huffman
parents: 37886
diff changeset
   111
ae78a4ffa81d use simproc_setup for cancellation simprocs, to get proper name bindings
huffman
parents: 37886
diff changeset
   112
simproc_setup field_combine_numerals
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 45607
diff changeset
   113
  ("(i::'a::{field_inverse_zero,ring_char_0}) + j"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 45607
diff changeset
   114
  |"(i::'a::{field_inverse_zero,ring_char_0}) - j") =
45284
ae78a4ffa81d use simproc_setup for cancellation simprocs, to get proper name bindings
huffman
parents: 37886
diff changeset
   115
  {* fn phi => Numeral_Simprocs.field_combine_numerals *}
ae78a4ffa81d use simproc_setup for cancellation simprocs, to get proper name bindings
huffman
parents: 37886
diff changeset
   116
ae78a4ffa81d use simproc_setup for cancellation simprocs, to get proper name bindings
huffman
parents: 37886
diff changeset
   117
simproc_setup inteq_cancel_numerals
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 45607
diff changeset
   118
  ("(l::'a::comm_ring_1) + m = n"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 45607
diff changeset
   119
  |"(l::'a::comm_ring_1) = m + n"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 45607
diff changeset
   120
  |"(l::'a::comm_ring_1) - m = n"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 45607
diff changeset
   121
  |"(l::'a::comm_ring_1) = m - n"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 45607
diff changeset
   122
  |"(l::'a::comm_ring_1) * m = n"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 45607
diff changeset
   123
  |"(l::'a::comm_ring_1) = m * n"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 45607
diff changeset
   124
  |"- (l::'a::comm_ring_1) = m"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 45607
diff changeset
   125
  |"(l::'a::comm_ring_1) = - m") =
45284
ae78a4ffa81d use simproc_setup for cancellation simprocs, to get proper name bindings
huffman
parents: 37886
diff changeset
   126
  {* fn phi => Numeral_Simprocs.eq_cancel_numerals *}
ae78a4ffa81d use simproc_setup for cancellation simprocs, to get proper name bindings
huffman
parents: 37886
diff changeset
   127
ae78a4ffa81d use simproc_setup for cancellation simprocs, to get proper name bindings
huffman
parents: 37886
diff changeset
   128
simproc_setup intless_cancel_numerals
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 45607
diff changeset
   129
  ("(l::'a::linordered_idom) + m < n"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 45607
diff changeset
   130
  |"(l::'a::linordered_idom) < m + n"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 45607
diff changeset
   131
  |"(l::'a::linordered_idom) - m < n"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 45607
diff changeset
   132
  |"(l::'a::linordered_idom) < m - n"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 45607
diff changeset
   133
  |"(l::'a::linordered_idom) * m < n"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 45607
diff changeset
   134
  |"(l::'a::linordered_idom) < m * n"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 45607
diff changeset
   135
  |"- (l::'a::linordered_idom) < m"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 45607
diff changeset
   136
  |"(l::'a::linordered_idom) < - m") =
45284
ae78a4ffa81d use simproc_setup for cancellation simprocs, to get proper name bindings
huffman
parents: 37886
diff changeset
   137
  {* fn phi => Numeral_Simprocs.less_cancel_numerals *}
ae78a4ffa81d use simproc_setup for cancellation simprocs, to get proper name bindings
huffman
parents: 37886
diff changeset
   138
ae78a4ffa81d use simproc_setup for cancellation simprocs, to get proper name bindings
huffman
parents: 37886
diff changeset
   139
simproc_setup intle_cancel_numerals
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 45607
diff changeset
   140
  ("(l::'a::linordered_idom) + m \<le> n"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 45607
diff changeset
   141
  |"(l::'a::linordered_idom) \<le> m + n"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 45607
diff changeset
   142
  |"(l::'a::linordered_idom) - m \<le> n"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 45607
diff changeset
   143
  |"(l::'a::linordered_idom) \<le> m - n"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 45607
diff changeset
   144
  |"(l::'a::linordered_idom) * m \<le> n"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 45607
diff changeset
   145
  |"(l::'a::linordered_idom) \<le> m * n"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 45607
diff changeset
   146
  |"- (l::'a::linordered_idom) \<le> m"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 45607
diff changeset
   147
  |"(l::'a::linordered_idom) \<le> - m") =
45284
ae78a4ffa81d use simproc_setup for cancellation simprocs, to get proper name bindings
huffman
parents: 37886
diff changeset
   148
  {* fn phi => Numeral_Simprocs.le_cancel_numerals *}
ae78a4ffa81d use simproc_setup for cancellation simprocs, to get proper name bindings
huffman
parents: 37886
diff changeset
   149
ae78a4ffa81d use simproc_setup for cancellation simprocs, to get proper name bindings
huffman
parents: 37886
diff changeset
   150
simproc_setup ring_eq_cancel_numeral_factor
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 45607
diff changeset
   151
  ("(l::'a::{idom,ring_char_0}) * m = n"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 45607
diff changeset
   152
  |"(l::'a::{idom,ring_char_0}) = m * n") =
45284
ae78a4ffa81d use simproc_setup for cancellation simprocs, to get proper name bindings
huffman
parents: 37886
diff changeset
   153
  {* fn phi => Numeral_Simprocs.eq_cancel_numeral_factor *}
ae78a4ffa81d use simproc_setup for cancellation simprocs, to get proper name bindings
huffman
parents: 37886
diff changeset
   154
ae78a4ffa81d use simproc_setup for cancellation simprocs, to get proper name bindings
huffman
parents: 37886
diff changeset
   155
simproc_setup ring_less_cancel_numeral_factor
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 45607
diff changeset
   156
  ("(l::'a::linordered_idom) * m < n"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 45607
diff changeset
   157
  |"(l::'a::linordered_idom) < m * n") =
45284
ae78a4ffa81d use simproc_setup for cancellation simprocs, to get proper name bindings
huffman
parents: 37886
diff changeset
   158
  {* fn phi => Numeral_Simprocs.less_cancel_numeral_factor *}
ae78a4ffa81d use simproc_setup for cancellation simprocs, to get proper name bindings
huffman
parents: 37886
diff changeset
   159
ae78a4ffa81d use simproc_setup for cancellation simprocs, to get proper name bindings
huffman
parents: 37886
diff changeset
   160
simproc_setup ring_le_cancel_numeral_factor
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 45607
diff changeset
   161
  ("(l::'a::linordered_idom) * m <= n"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 45607
diff changeset
   162
  |"(l::'a::linordered_idom) <= m * n") =
45284
ae78a4ffa81d use simproc_setup for cancellation simprocs, to get proper name bindings
huffman
parents: 37886
diff changeset
   163
  {* fn phi => Numeral_Simprocs.le_cancel_numeral_factor *}
ae78a4ffa81d use simproc_setup for cancellation simprocs, to get proper name bindings
huffman
parents: 37886
diff changeset
   164
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 45607
diff changeset
   165
(* TODO: remove comm_ring_1 constraint if possible *)
45284
ae78a4ffa81d use simproc_setup for cancellation simprocs, to get proper name bindings
huffman
parents: 37886
diff changeset
   166
simproc_setup int_div_cancel_numeral_factors
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 45607
diff changeset
   167
  ("((l::'a::{semiring_div,comm_ring_1,ring_char_0}) * m) div n"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 45607
diff changeset
   168
  |"(l::'a::{semiring_div,comm_ring_1,ring_char_0}) div (m * n)") =
45284
ae78a4ffa81d use simproc_setup for cancellation simprocs, to get proper name bindings
huffman
parents: 37886
diff changeset
   169
  {* fn phi => Numeral_Simprocs.div_cancel_numeral_factor *}
ae78a4ffa81d use simproc_setup for cancellation simprocs, to get proper name bindings
huffman
parents: 37886
diff changeset
   170
ae78a4ffa81d use simproc_setup for cancellation simprocs, to get proper name bindings
huffman
parents: 37886
diff changeset
   171
simproc_setup divide_cancel_numeral_factor
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 45607
diff changeset
   172
  ("((l::'a::{field_inverse_zero,ring_char_0}) * m) / n"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 45607
diff changeset
   173
  |"(l::'a::{field_inverse_zero,ring_char_0}) / (m * n)"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 45607
diff changeset
   174
  |"((numeral v)::'a::{field_inverse_zero,ring_char_0}) / (numeral w)") =
45284
ae78a4ffa81d use simproc_setup for cancellation simprocs, to get proper name bindings
huffman
parents: 37886
diff changeset
   175
  {* fn phi => Numeral_Simprocs.divide_cancel_numeral_factor *}
ae78a4ffa81d use simproc_setup for cancellation simprocs, to get proper name bindings
huffman
parents: 37886
diff changeset
   176
ae78a4ffa81d use simproc_setup for cancellation simprocs, to get proper name bindings
huffman
parents: 37886
diff changeset
   177
simproc_setup ring_eq_cancel_factor
ae78a4ffa81d use simproc_setup for cancellation simprocs, to get proper name bindings
huffman
parents: 37886
diff changeset
   178
  ("(l::'a::idom) * m = n" | "(l::'a::idom) = m * n") =
ae78a4ffa81d use simproc_setup for cancellation simprocs, to get proper name bindings
huffman
parents: 37886
diff changeset
   179
  {* fn phi => Numeral_Simprocs.eq_cancel_factor *}
ae78a4ffa81d use simproc_setup for cancellation simprocs, to get proper name bindings
huffman
parents: 37886
diff changeset
   180
ae78a4ffa81d use simproc_setup for cancellation simprocs, to get proper name bindings
huffman
parents: 37886
diff changeset
   181
simproc_setup linordered_ring_le_cancel_factor
45296
7a97b2bda137 more accurate class constraints on cancellation simproc patterns
huffman
parents: 45284
diff changeset
   182
  ("(l::'a::linordered_idom) * m <= n"
7a97b2bda137 more accurate class constraints on cancellation simproc patterns
huffman
parents: 45284
diff changeset
   183
  |"(l::'a::linordered_idom) <= m * n") =
45284
ae78a4ffa81d use simproc_setup for cancellation simprocs, to get proper name bindings
huffman
parents: 37886
diff changeset
   184
  {* fn phi => Numeral_Simprocs.le_cancel_factor *}
ae78a4ffa81d use simproc_setup for cancellation simprocs, to get proper name bindings
huffman
parents: 37886
diff changeset
   185
ae78a4ffa81d use simproc_setup for cancellation simprocs, to get proper name bindings
huffman
parents: 37886
diff changeset
   186
simproc_setup linordered_ring_less_cancel_factor
45296
7a97b2bda137 more accurate class constraints on cancellation simproc patterns
huffman
parents: 45284
diff changeset
   187
  ("(l::'a::linordered_idom) * m < n"
7a97b2bda137 more accurate class constraints on cancellation simproc patterns
huffman
parents: 45284
diff changeset
   188
  |"(l::'a::linordered_idom) < m * n") =
45284
ae78a4ffa81d use simproc_setup for cancellation simprocs, to get proper name bindings
huffman
parents: 37886
diff changeset
   189
  {* fn phi => Numeral_Simprocs.less_cancel_factor *}
ae78a4ffa81d use simproc_setup for cancellation simprocs, to get proper name bindings
huffman
parents: 37886
diff changeset
   190
ae78a4ffa81d use simproc_setup for cancellation simprocs, to get proper name bindings
huffman
parents: 37886
diff changeset
   191
simproc_setup int_div_cancel_factor
ae78a4ffa81d use simproc_setup for cancellation simprocs, to get proper name bindings
huffman
parents: 37886
diff changeset
   192
  ("((l::'a::semiring_div) * m) div n"
ae78a4ffa81d use simproc_setup for cancellation simprocs, to get proper name bindings
huffman
parents: 37886
diff changeset
   193
  |"(l::'a::semiring_div) div (m * n)") =
ae78a4ffa81d use simproc_setup for cancellation simprocs, to get proper name bindings
huffman
parents: 37886
diff changeset
   194
  {* fn phi => Numeral_Simprocs.div_cancel_factor *}
ae78a4ffa81d use simproc_setup for cancellation simprocs, to get proper name bindings
huffman
parents: 37886
diff changeset
   195
ae78a4ffa81d use simproc_setup for cancellation simprocs, to get proper name bindings
huffman
parents: 37886
diff changeset
   196
simproc_setup int_mod_cancel_factor
ae78a4ffa81d use simproc_setup for cancellation simprocs, to get proper name bindings
huffman
parents: 37886
diff changeset
   197
  ("((l::'a::semiring_div) * m) mod n"
ae78a4ffa81d use simproc_setup for cancellation simprocs, to get proper name bindings
huffman
parents: 37886
diff changeset
   198
  |"(l::'a::semiring_div) mod (m * n)") =
ae78a4ffa81d use simproc_setup for cancellation simprocs, to get proper name bindings
huffman
parents: 37886
diff changeset
   199
  {* fn phi => Numeral_Simprocs.mod_cancel_factor *}
ae78a4ffa81d use simproc_setup for cancellation simprocs, to get proper name bindings
huffman
parents: 37886
diff changeset
   200
ae78a4ffa81d use simproc_setup for cancellation simprocs, to get proper name bindings
huffman
parents: 37886
diff changeset
   201
simproc_setup dvd_cancel_factor
ae78a4ffa81d use simproc_setup for cancellation simprocs, to get proper name bindings
huffman
parents: 37886
diff changeset
   202
  ("((l::'a::idom) * m) dvd n"
ae78a4ffa81d use simproc_setup for cancellation simprocs, to get proper name bindings
huffman
parents: 37886
diff changeset
   203
  |"(l::'a::idom) dvd (m * n)") =
ae78a4ffa81d use simproc_setup for cancellation simprocs, to get proper name bindings
huffman
parents: 37886
diff changeset
   204
  {* fn phi => Numeral_Simprocs.dvd_cancel_factor *}
ae78a4ffa81d use simproc_setup for cancellation simprocs, to get proper name bindings
huffman
parents: 37886
diff changeset
   205
ae78a4ffa81d use simproc_setup for cancellation simprocs, to get proper name bindings
huffman
parents: 37886
diff changeset
   206
simproc_setup divide_cancel_factor
ae78a4ffa81d use simproc_setup for cancellation simprocs, to get proper name bindings
huffman
parents: 37886
diff changeset
   207
  ("((l::'a::field_inverse_zero) * m) / n"
ae78a4ffa81d use simproc_setup for cancellation simprocs, to get proper name bindings
huffman
parents: 37886
diff changeset
   208
  |"(l::'a::field_inverse_zero) / (m * n)") =
ae78a4ffa81d use simproc_setup for cancellation simprocs, to get proper name bindings
huffman
parents: 37886
diff changeset
   209
  {* fn phi => Numeral_Simprocs.divide_cancel_factor *}
ae78a4ffa81d use simproc_setup for cancellation simprocs, to get proper name bindings
huffman
parents: 37886
diff changeset
   210
48891
c0eafbd55de3 prefer ML_file over old uses;
wenzelm
parents: 47255
diff changeset
   211
ML_file "Tools/nat_numeral_simprocs.ML"
33366
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
   212
45462
aba629d6cee5 use simproc_setup for more nat_numeral simprocs; add simproc tests
huffman
parents: 45436
diff changeset
   213
simproc_setup nat_combine_numerals
aba629d6cee5 use simproc_setup for more nat_numeral simprocs; add simproc tests
huffman
parents: 45436
diff changeset
   214
  ("(i::nat) + j" | "Suc (i + j)") =
aba629d6cee5 use simproc_setup for more nat_numeral simprocs; add simproc tests
huffman
parents: 45436
diff changeset
   215
  {* fn phi => Nat_Numeral_Simprocs.combine_numerals *}
aba629d6cee5 use simproc_setup for more nat_numeral simprocs; add simproc tests
huffman
parents: 45436
diff changeset
   216
45436
62bc9474d04b use simproc_setup for some nat_numeral simprocs; add simproc tests
huffman
parents: 45435
diff changeset
   217
simproc_setup nateq_cancel_numerals
62bc9474d04b use simproc_setup for some nat_numeral simprocs; add simproc tests
huffman
parents: 45435
diff changeset
   218
  ("(l::nat) + m = n" | "(l::nat) = m + n" |
62bc9474d04b use simproc_setup for some nat_numeral simprocs; add simproc tests
huffman
parents: 45435
diff changeset
   219
   "(l::nat) * m = n" | "(l::nat) = m * n" |
62bc9474d04b use simproc_setup for some nat_numeral simprocs; add simproc tests
huffman
parents: 45435
diff changeset
   220
   "Suc m = n" | "m = Suc n") =
62bc9474d04b use simproc_setup for some nat_numeral simprocs; add simproc tests
huffman
parents: 45435
diff changeset
   221
  {* fn phi => Nat_Numeral_Simprocs.eq_cancel_numerals *}
62bc9474d04b use simproc_setup for some nat_numeral simprocs; add simproc tests
huffman
parents: 45435
diff changeset
   222
62bc9474d04b use simproc_setup for some nat_numeral simprocs; add simproc tests
huffman
parents: 45435
diff changeset
   223
simproc_setup natless_cancel_numerals
62bc9474d04b use simproc_setup for some nat_numeral simprocs; add simproc tests
huffman
parents: 45435
diff changeset
   224
  ("(l::nat) + m < n" | "(l::nat) < m + n" |
62bc9474d04b use simproc_setup for some nat_numeral simprocs; add simproc tests
huffman
parents: 45435
diff changeset
   225
   "(l::nat) * m < n" | "(l::nat) < m * n" |
62bc9474d04b use simproc_setup for some nat_numeral simprocs; add simproc tests
huffman
parents: 45435
diff changeset
   226
   "Suc m < n" | "m < Suc n") =
62bc9474d04b use simproc_setup for some nat_numeral simprocs; add simproc tests
huffman
parents: 45435
diff changeset
   227
  {* fn phi => Nat_Numeral_Simprocs.less_cancel_numerals *}
62bc9474d04b use simproc_setup for some nat_numeral simprocs; add simproc tests
huffman
parents: 45435
diff changeset
   228
62bc9474d04b use simproc_setup for some nat_numeral simprocs; add simproc tests
huffman
parents: 45435
diff changeset
   229
simproc_setup natle_cancel_numerals
62bc9474d04b use simproc_setup for some nat_numeral simprocs; add simproc tests
huffman
parents: 45435
diff changeset
   230
  ("(l::nat) + m \<le> n" | "(l::nat) \<le> m + n" |
62bc9474d04b use simproc_setup for some nat_numeral simprocs; add simproc tests
huffman
parents: 45435
diff changeset
   231
   "(l::nat) * m \<le> n" | "(l::nat) \<le> m * n" |
62bc9474d04b use simproc_setup for some nat_numeral simprocs; add simproc tests
huffman
parents: 45435
diff changeset
   232
   "Suc m \<le> n" | "m \<le> Suc n") =
62bc9474d04b use simproc_setup for some nat_numeral simprocs; add simproc tests
huffman
parents: 45435
diff changeset
   233
  {* fn phi => Nat_Numeral_Simprocs.le_cancel_numerals *}
62bc9474d04b use simproc_setup for some nat_numeral simprocs; add simproc tests
huffman
parents: 45435
diff changeset
   234
62bc9474d04b use simproc_setup for some nat_numeral simprocs; add simproc tests
huffman
parents: 45435
diff changeset
   235
simproc_setup natdiff_cancel_numerals
62bc9474d04b use simproc_setup for some nat_numeral simprocs; add simproc tests
huffman
parents: 45435
diff changeset
   236
  ("((l::nat) + m) - n" | "(l::nat) - (m + n)" |
62bc9474d04b use simproc_setup for some nat_numeral simprocs; add simproc tests
huffman
parents: 45435
diff changeset
   237
   "(l::nat) * m - n" | "(l::nat) - m * n" |
62bc9474d04b use simproc_setup for some nat_numeral simprocs; add simproc tests
huffman
parents: 45435
diff changeset
   238
   "Suc m - n" | "m - Suc n") =
62bc9474d04b use simproc_setup for some nat_numeral simprocs; add simproc tests
huffman
parents: 45435
diff changeset
   239
  {* fn phi => Nat_Numeral_Simprocs.diff_cancel_numerals *}
62bc9474d04b use simproc_setup for some nat_numeral simprocs; add simproc tests
huffman
parents: 45435
diff changeset
   240
45463
9a588a835c1e use simproc_setup for the remaining nat_numeral simprocs
huffman
parents: 45462
diff changeset
   241
simproc_setup nat_eq_cancel_numeral_factor
9a588a835c1e use simproc_setup for the remaining nat_numeral simprocs
huffman
parents: 45462
diff changeset
   242
  ("(l::nat) * m = n" | "(l::nat) = m * n") =
9a588a835c1e use simproc_setup for the remaining nat_numeral simprocs
huffman
parents: 45462
diff changeset
   243
  {* fn phi => Nat_Numeral_Simprocs.eq_cancel_numeral_factor *}
9a588a835c1e use simproc_setup for the remaining nat_numeral simprocs
huffman
parents: 45462
diff changeset
   244
9a588a835c1e use simproc_setup for the remaining nat_numeral simprocs
huffman
parents: 45462
diff changeset
   245
simproc_setup nat_less_cancel_numeral_factor
9a588a835c1e use simproc_setup for the remaining nat_numeral simprocs
huffman
parents: 45462
diff changeset
   246
  ("(l::nat) * m < n" | "(l::nat) < m * n") =
9a588a835c1e use simproc_setup for the remaining nat_numeral simprocs
huffman
parents: 45462
diff changeset
   247
  {* fn phi => Nat_Numeral_Simprocs.less_cancel_numeral_factor *}
9a588a835c1e use simproc_setup for the remaining nat_numeral simprocs
huffman
parents: 45462
diff changeset
   248
9a588a835c1e use simproc_setup for the remaining nat_numeral simprocs
huffman
parents: 45462
diff changeset
   249
simproc_setup nat_le_cancel_numeral_factor
9a588a835c1e use simproc_setup for the remaining nat_numeral simprocs
huffman
parents: 45462
diff changeset
   250
  ("(l::nat) * m <= n" | "(l::nat) <= m * n") =
9a588a835c1e use simproc_setup for the remaining nat_numeral simprocs
huffman
parents: 45462
diff changeset
   251
  {* fn phi => Nat_Numeral_Simprocs.le_cancel_numeral_factor *}
9a588a835c1e use simproc_setup for the remaining nat_numeral simprocs
huffman
parents: 45462
diff changeset
   252
9a588a835c1e use simproc_setup for the remaining nat_numeral simprocs
huffman
parents: 45462
diff changeset
   253
simproc_setup nat_div_cancel_numeral_factor
9a588a835c1e use simproc_setup for the remaining nat_numeral simprocs
huffman
parents: 45462
diff changeset
   254
  ("((l::nat) * m) div n" | "(l::nat) div (m * n)") =
9a588a835c1e use simproc_setup for the remaining nat_numeral simprocs
huffman
parents: 45462
diff changeset
   255
  {* fn phi => Nat_Numeral_Simprocs.div_cancel_numeral_factor *}
9a588a835c1e use simproc_setup for the remaining nat_numeral simprocs
huffman
parents: 45462
diff changeset
   256
9a588a835c1e use simproc_setup for the remaining nat_numeral simprocs
huffman
parents: 45462
diff changeset
   257
simproc_setup nat_dvd_cancel_numeral_factor
9a588a835c1e use simproc_setup for the remaining nat_numeral simprocs
huffman
parents: 45462
diff changeset
   258
  ("((l::nat) * m) dvd n" | "(l::nat) dvd (m * n)") =
9a588a835c1e use simproc_setup for the remaining nat_numeral simprocs
huffman
parents: 45462
diff changeset
   259
  {* fn phi => Nat_Numeral_Simprocs.dvd_cancel_numeral_factor *}
9a588a835c1e use simproc_setup for the remaining nat_numeral simprocs
huffman
parents: 45462
diff changeset
   260
45462
aba629d6cee5 use simproc_setup for more nat_numeral simprocs; add simproc tests
huffman
parents: 45436
diff changeset
   261
simproc_setup nat_eq_cancel_factor
aba629d6cee5 use simproc_setup for more nat_numeral simprocs; add simproc tests
huffman
parents: 45436
diff changeset
   262
  ("(l::nat) * m = n" | "(l::nat) = m * n") =
aba629d6cee5 use simproc_setup for more nat_numeral simprocs; add simproc tests
huffman
parents: 45436
diff changeset
   263
  {* fn phi => Nat_Numeral_Simprocs.eq_cancel_factor *}
aba629d6cee5 use simproc_setup for more nat_numeral simprocs; add simproc tests
huffman
parents: 45436
diff changeset
   264
aba629d6cee5 use simproc_setup for more nat_numeral simprocs; add simproc tests
huffman
parents: 45436
diff changeset
   265
simproc_setup nat_less_cancel_factor
aba629d6cee5 use simproc_setup for more nat_numeral simprocs; add simproc tests
huffman
parents: 45436
diff changeset
   266
  ("(l::nat) * m < n" | "(l::nat) < m * n") =
aba629d6cee5 use simproc_setup for more nat_numeral simprocs; add simproc tests
huffman
parents: 45436
diff changeset
   267
  {* fn phi => Nat_Numeral_Simprocs.less_cancel_factor *}
aba629d6cee5 use simproc_setup for more nat_numeral simprocs; add simproc tests
huffman
parents: 45436
diff changeset
   268
aba629d6cee5 use simproc_setup for more nat_numeral simprocs; add simproc tests
huffman
parents: 45436
diff changeset
   269
simproc_setup nat_le_cancel_factor
aba629d6cee5 use simproc_setup for more nat_numeral simprocs; add simproc tests
huffman
parents: 45436
diff changeset
   270
  ("(l::nat) * m <= n" | "(l::nat) <= m * n") =
aba629d6cee5 use simproc_setup for more nat_numeral simprocs; add simproc tests
huffman
parents: 45436
diff changeset
   271
  {* fn phi => Nat_Numeral_Simprocs.le_cancel_factor *}
aba629d6cee5 use simproc_setup for more nat_numeral simprocs; add simproc tests
huffman
parents: 45436
diff changeset
   272
45463
9a588a835c1e use simproc_setup for the remaining nat_numeral simprocs
huffman
parents: 45462
diff changeset
   273
simproc_setup nat_div_cancel_factor
45462
aba629d6cee5 use simproc_setup for more nat_numeral simprocs; add simproc tests
huffman
parents: 45436
diff changeset
   274
  ("((l::nat) * m) div n" | "(l::nat) div (m * n)") =
45463
9a588a835c1e use simproc_setup for the remaining nat_numeral simprocs
huffman
parents: 45462
diff changeset
   275
  {* fn phi => Nat_Numeral_Simprocs.div_cancel_factor *}
45462
aba629d6cee5 use simproc_setup for more nat_numeral simprocs; add simproc tests
huffman
parents: 45436
diff changeset
   276
aba629d6cee5 use simproc_setup for more nat_numeral simprocs; add simproc tests
huffman
parents: 45436
diff changeset
   277
simproc_setup nat_dvd_cancel_factor
aba629d6cee5 use simproc_setup for more nat_numeral simprocs; add simproc tests
huffman
parents: 45436
diff changeset
   278
  ("((l::nat) * m) dvd n" | "(l::nat) dvd (m * n)") =
aba629d6cee5 use simproc_setup for more nat_numeral simprocs; add simproc tests
huffman
parents: 45436
diff changeset
   279
  {* fn phi => Nat_Numeral_Simprocs.dvd_cancel_factor *}
aba629d6cee5 use simproc_setup for more nat_numeral simprocs; add simproc tests
huffman
parents: 45436
diff changeset
   280
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 45607
diff changeset
   281
(* FIXME: duplicate rule warnings for:
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 45607
diff changeset
   282
  ring_distribs
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 45607
diff changeset
   283
  numeral_plus_numeral numeral_times_numeral
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 45607
diff changeset
   284
  numeral_eq_iff numeral_less_iff numeral_le_iff
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 45607
diff changeset
   285
  numeral_neq_zero zero_neq_numeral zero_less_numeral
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 45607
diff changeset
   286
  if_True if_False *)
33366
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
   287
declaration {* 
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 45607
diff changeset
   288
  K (Lin_Arith.add_simps ([@{thm Suc_numeral}, @{thm int_numeral}])
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 45607
diff changeset
   289
  #> Lin_Arith.add_simps (@{thms ring_distribs} @ [@{thm Let_numeral}, @{thm Let_neg_numeral}, @{thm Let_0}, @{thm Let_1},
33366
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
   290
     @{thm nat_0}, @{thm nat_1},
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 45607
diff changeset
   291
     @{thm numeral_plus_numeral}, @{thm diff_nat_numeral}, @{thm numeral_times_numeral},
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 45607
diff changeset
   292
     @{thm numeral_eq_iff}, @{thm numeral_less_iff}, @{thm numeral_le_iff},
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 45607
diff changeset
   293
     @{thm le_Suc_numeral}, @{thm le_numeral_Suc},
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 45607
diff changeset
   294
     @{thm less_Suc_numeral}, @{thm less_numeral_Suc},
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 45607
diff changeset
   295
     @{thm Suc_eq_numeral}, @{thm eq_numeral_Suc},
33366
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
   296
     @{thm mult_Suc}, @{thm mult_Suc_right},
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
   297
     @{thm add_Suc}, @{thm add_Suc_right},
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 45607
diff changeset
   298
     @{thm numeral_neq_zero}, @{thm zero_neq_numeral}, @{thm zero_less_numeral},
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 45607
diff changeset
   299
     @{thm of_int_numeral}, @{thm of_nat_numeral}, @{thm nat_numeral},
33366
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
   300
     @{thm if_True}, @{thm if_False}])
45284
ae78a4ffa81d use simproc_setup for cancellation simprocs, to get proper name bindings
huffman
parents: 37886
diff changeset
   301
  #> Lin_Arith.add_simprocs
ae78a4ffa81d use simproc_setup for cancellation simprocs, to get proper name bindings
huffman
parents: 37886
diff changeset
   302
      [@{simproc semiring_assoc_fold},
ae78a4ffa81d use simproc_setup for cancellation simprocs, to get proper name bindings
huffman
parents: 37886
diff changeset
   303
       @{simproc int_combine_numerals},
ae78a4ffa81d use simproc_setup for cancellation simprocs, to get proper name bindings
huffman
parents: 37886
diff changeset
   304
       @{simproc inteq_cancel_numerals},
ae78a4ffa81d use simproc_setup for cancellation simprocs, to get proper name bindings
huffman
parents: 37886
diff changeset
   305
       @{simproc intless_cancel_numerals},
ae78a4ffa81d use simproc_setup for cancellation simprocs, to get proper name bindings
huffman
parents: 37886
diff changeset
   306
       @{simproc intle_cancel_numerals}]
45436
62bc9474d04b use simproc_setup for some nat_numeral simprocs; add simproc tests
huffman
parents: 45435
diff changeset
   307
  #> Lin_Arith.add_simprocs
45462
aba629d6cee5 use simproc_setup for more nat_numeral simprocs; add simproc tests
huffman
parents: 45436
diff changeset
   308
      [@{simproc nat_combine_numerals},
45436
62bc9474d04b use simproc_setup for some nat_numeral simprocs; add simproc tests
huffman
parents: 45435
diff changeset
   309
       @{simproc nateq_cancel_numerals},
62bc9474d04b use simproc_setup for some nat_numeral simprocs; add simproc tests
huffman
parents: 45435
diff changeset
   310
       @{simproc natless_cancel_numerals},
62bc9474d04b use simproc_setup for some nat_numeral simprocs; add simproc tests
huffman
parents: 45435
diff changeset
   311
       @{simproc natle_cancel_numerals},
62bc9474d04b use simproc_setup for some nat_numeral simprocs; add simproc tests
huffman
parents: 45435
diff changeset
   312
       @{simproc natdiff_cancel_numerals}])
33366
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
   313
*}
b0096ac3b731 dedicated theory for loading numeral simprocs
haftmann
parents:
diff changeset
   314
37886
2f9d3fc1a8ac tuned whitespace
haftmann
parents: 33366
diff changeset
   315
end