src/HOL/Tools/nat_numeral_simprocs.ML
author bulwahn
Fri, 11 Nov 2011 12:10:49 +0100
changeset 45461 130c90bb80b4
parent 45436 62bc9474d04b
child 45462 aba629d6cee5
permissions -rw-r--r--
using more conventional names for monad plus operations
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
31068
f591144b0f17 modules numeral_simprocs, nat_numeral_simprocs; proper structures for numeral simprocs
haftmann
parents: 30685
diff changeset
     1
(* Author: Lawrence C Paulson, Cambridge University Computer Laboratory
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
     2
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
     3
Simprocs for nat numerals.
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
     4
*)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
     5
31068
f591144b0f17 modules numeral_simprocs, nat_numeral_simprocs; proper structures for numeral simprocs
haftmann
parents: 30685
diff changeset
     6
signature NAT_NUMERAL_SIMPROCS =
f591144b0f17 modules numeral_simprocs, nat_numeral_simprocs; proper structures for numeral simprocs
haftmann
parents: 30685
diff changeset
     7
sig
f591144b0f17 modules numeral_simprocs, nat_numeral_simprocs; proper structures for numeral simprocs
haftmann
parents: 30685
diff changeset
     8
  val combine_numerals: simproc
45436
62bc9474d04b use simproc_setup for some nat_numeral simprocs; add simproc tests
huffman
parents: 45306
diff changeset
     9
  val eq_cancel_numerals: simpset -> cterm -> thm option
62bc9474d04b use simproc_setup for some nat_numeral simprocs; add simproc tests
huffman
parents: 45306
diff changeset
    10
  val less_cancel_numerals: simpset -> cterm -> thm option
62bc9474d04b use simproc_setup for some nat_numeral simprocs; add simproc tests
huffman
parents: 45306
diff changeset
    11
  val le_cancel_numerals: simpset -> cterm -> thm option
62bc9474d04b use simproc_setup for some nat_numeral simprocs; add simproc tests
huffman
parents: 45306
diff changeset
    12
  val diff_cancel_numerals: simpset -> cterm -> thm option
31068
f591144b0f17 modules numeral_simprocs, nat_numeral_simprocs; proper structures for numeral simprocs
haftmann
parents: 30685
diff changeset
    13
  val cancel_factors: simproc list
f591144b0f17 modules numeral_simprocs, nat_numeral_simprocs; proper structures for numeral simprocs
haftmann
parents: 30685
diff changeset
    14
  val cancel_numeral_factors: simproc list
f591144b0f17 modules numeral_simprocs, nat_numeral_simprocs; proper structures for numeral simprocs
haftmann
parents: 30685
diff changeset
    15
end;
f591144b0f17 modules numeral_simprocs, nat_numeral_simprocs; proper structures for numeral simprocs
haftmann
parents: 30685
diff changeset
    16
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    17
structure Nat_Numeral_Simprocs =
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    18
struct
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    19
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    20
(*Maps n to #n for n = 0, 1, 2*)
30496
7cdcc9dd95cb vague cleanup in arith proof tools setup: deleted dead code, more proper structures, clearer arrangement
haftmann
parents: 29269
diff changeset
    21
val numeral_syms = [@{thm nat_numeral_0_eq_0} RS sym, @{thm nat_numeral_1_eq_1} RS sym, @{thm numeral_2_eq_2} RS sym];
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    22
val numeral_sym_ss = HOL_ss addsimps numeral_syms;
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    23
44945
haftmann
parents: 40878
diff changeset
    24
val rename_numerals = simplify numeral_sym_ss o Thm.transfer @{theory};
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    25
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    26
(*Utilities*)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    27
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    28
fun mk_number n = HOLogic.number_of_const HOLogic.natT $ HOLogic.mk_numeral n;
24630
351a308ab58d simplified type int (eliminated IntInf.int, integer);
wenzelm
parents: 24431
diff changeset
    29
fun dest_number t = Int.max (0, snd (HOLogic.dest_number t));
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    30
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    31
fun find_first_numeral past (t::terms) =
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    32
        ((dest_number t, t, rev past @ terms)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    33
         handle TERM _ => find_first_numeral (t::past) terms)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    34
  | find_first_numeral past [] = raise TERM("find_first_numeral", []);
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    35
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    36
val zero = mk_number 0;
35267
8dfd816713c6 moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents: 35092
diff changeset
    37
val mk_plus = HOLogic.mk_binop @{const_name Groups.plus};
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    38
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    39
(*Thus mk_sum[t] yields t+0; longer sums don't have a trailing zero*)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    40
fun mk_sum []        = zero
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    41
  | mk_sum [t,u]     = mk_plus (t, u)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    42
  | mk_sum (t :: ts) = mk_plus (t, mk_sum ts);
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    43
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    44
(*this version ALWAYS includes a trailing zero*)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    45
fun long_mk_sum []        = HOLogic.zero
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    46
  | long_mk_sum (t :: ts) = mk_plus (t, mk_sum ts);
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    47
35267
8dfd816713c6 moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents: 35092
diff changeset
    48
val dest_plus = HOLogic.dest_bin @{const_name Groups.plus} HOLogic.natT;
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    49
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    50
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    51
(** Other simproc items **)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    52
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    53
val bin_simps =
23471
08e6c03b2a72 add thm antiquotations
huffman
parents: 23164
diff changeset
    54
     [@{thm nat_numeral_0_eq_0} RS sym, @{thm nat_numeral_1_eq_1} RS sym,
08e6c03b2a72 add thm antiquotations
huffman
parents: 23164
diff changeset
    55
      @{thm add_nat_number_of}, @{thm nat_number_of_add_left}, 
08e6c03b2a72 add thm antiquotations
huffman
parents: 23164
diff changeset
    56
      @{thm diff_nat_number_of}, @{thm le_number_of_eq_not_less},
08e6c03b2a72 add thm antiquotations
huffman
parents: 23164
diff changeset
    57
      @{thm mult_nat_number_of}, @{thm nat_number_of_mult_left}, 
08e6c03b2a72 add thm antiquotations
huffman
parents: 23164
diff changeset
    58
      @{thm less_nat_number_of}, 
08e6c03b2a72 add thm antiquotations
huffman
parents: 23164
diff changeset
    59
      @{thm Let_number_of}, @{thm nat_number_of}] @
29039
8b9207f82a78 separate neg_simps from rel_simps
huffman
parents: 28952
diff changeset
    60
     @{thms arith_simps} @ @{thms rel_simps} @ @{thms neg_simps};
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    61
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    62
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    63
(*** CancelNumerals simprocs ***)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    64
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    65
val one = mk_number 1;
35267
8dfd816713c6 moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents: 35092
diff changeset
    66
val mk_times = HOLogic.mk_binop @{const_name Groups.times};
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    67
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    68
fun mk_prod [] = one
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    69
  | mk_prod [t] = t
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    70
  | mk_prod (t :: ts) = if t = one then mk_prod ts
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    71
                        else mk_times (t, mk_prod ts);
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    72
35267
8dfd816713c6 moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents: 35092
diff changeset
    73
val dest_times = HOLogic.dest_bin @{const_name Groups.times} HOLogic.natT;
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    74
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    75
fun dest_prod t =
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    76
      let val (t,u) = dest_times t
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    77
      in  dest_prod t @ dest_prod u  end
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    78
      handle TERM _ => [t];
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    79
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    80
(*DON'T do the obvious simplifications; that would create special cases*)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    81
fun mk_coeff (k,t) = mk_times (mk_number k, t);
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    82
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    83
(*Express t as a product of (possibly) a numeral with other factors, sorted*)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    84
fun dest_coeff t =
35408
b48ab741683b modernized structure Term_Ord;
wenzelm
parents: 35267
diff changeset
    85
    let val ts = sort Term_Ord.term_ord (dest_prod t)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    86
        val (n, _, ts') = find_first_numeral [] ts
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    87
                          handle TERM _ => (1, one, ts)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    88
    in (n, mk_prod ts') end;
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    89
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    90
(*Find first coefficient-term THAT MATCHES u*)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    91
fun find_first_coeff past u [] = raise TERM("find_first_coeff", [])
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    92
  | find_first_coeff past u (t::terms) =
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    93
        let val (n,u') = dest_coeff t
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    94
        in  if u aconv u' then (n, rev past @ terms)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    95
                          else find_first_coeff (t::past) u terms
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    96
        end
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    97
        handle TERM _ => find_first_coeff (t::past) u terms;
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    98
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
    99
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   100
(*Split up a sum into the list of its constituent terms, on the way removing any
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   101
  Sucs and counting them.*)
37388
793618618f78 tuned quotes, antiquotations and whitespace
haftmann
parents: 35408
diff changeset
   102
fun dest_Suc_sum (Const (@{const_name Suc}, _) $ t, (k,ts)) = dest_Suc_sum (t, (k+1,ts))
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   103
  | dest_Suc_sum (t, (k,ts)) = 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   104
      let val (t1,t2) = dest_plus t
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   105
      in  dest_Suc_sum (t1, dest_Suc_sum (t2, (k,ts)))  end
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   106
      handle TERM _ => (k, t::ts);
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   107
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   108
(*Code for testing whether numerals are already used in the goal*)
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents: 25481
diff changeset
   109
fun is_numeral (Const(@{const_name Int.number_of}, _) $ w) = true
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   110
  | is_numeral _ = false;
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   111
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   112
fun prod_has_numeral t = exists is_numeral (dest_prod t);
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   113
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   114
(*The Sucs found in the term are converted to a binary numeral. If relaxed is false,
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   115
  an exception is raised unless the original expression contains at least one
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   116
  numeral in a coefficient position.  This prevents nat_combine_numerals from 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   117
  introducing numerals to goals.*)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   118
fun dest_Sucs_sum relaxed t = 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   119
  let val (k,ts) = dest_Suc_sum (t,(0,[]))
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   120
  in
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   121
     if relaxed orelse exists prod_has_numeral ts then 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   122
       if k=0 then ts
24630
351a308ab58d simplified type int (eliminated IntInf.int, integer);
wenzelm
parents: 24431
diff changeset
   123
       else mk_number k :: ts
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   124
     else raise TERM("Nat_Numeral_Simprocs.dest_Sucs_sum", [t])
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   125
  end;
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   126
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   127
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   128
(*Simplify 1*n and n*1 to n*)
35064
1bdef0c013d3 hide fact names clashing with fact names from Group.thy
haftmann
parents: 35050
diff changeset
   129
val add_0s  = map rename_numerals [@{thm Nat.add_0}, @{thm Nat.add_0_right}];
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   130
val mult_1s = map rename_numerals [@{thm nat_mult_1}, @{thm nat_mult_1_right}];
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   131
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   132
(*Final simplification: cancel + and *; replace Numeral0 by 0 and Numeral1 by 1*)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   133
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   134
(*And these help the simproc return False when appropriate, which helps
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   135
  the arith prover.*)
23881
851c74f1bb69 moved class ord from Orderings.thy to HOL.thy
haftmann
parents: 23471
diff changeset
   136
val contra_rules = [@{thm add_Suc}, @{thm add_Suc_right}, @{thm Zero_not_Suc},
851c74f1bb69 moved class ord from Orderings.thy to HOL.thy
haftmann
parents: 23471
diff changeset
   137
  @{thm Suc_not_Zero}, @{thm le_0_eq}];
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   138
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   139
val simplify_meta_eq =
30518
07b45c1aa788 moved some generic nonsense to arith_data.ML
haftmann
parents: 30496
diff changeset
   140
    Arith_Data.simplify_meta_eq
35064
1bdef0c013d3 hide fact names clashing with fact names from Group.thy
haftmann
parents: 35050
diff changeset
   141
        ([@{thm nat_numeral_0_eq_0}, @{thm numeral_1_eq_Suc_0}, @{thm Nat.add_0}, @{thm Nat.add_0_right},
23471
08e6c03b2a72 add thm antiquotations
huffman
parents: 23164
diff changeset
   142
          @{thm mult_0}, @{thm mult_0_right}, @{thm mult_1}, @{thm mult_1_right}] @ contra_rules);
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   143
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   144
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   145
(*** Applying CancelNumeralsFun ***)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   146
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   147
structure CancelNumeralsCommon =
44945
haftmann
parents: 40878
diff changeset
   148
struct
haftmann
parents: 40878
diff changeset
   149
  val mk_sum = (fn T : typ => mk_sum)
haftmann
parents: 40878
diff changeset
   150
  val dest_sum = dest_Sucs_sum true
haftmann
parents: 40878
diff changeset
   151
  val mk_coeff = mk_coeff
haftmann
parents: 40878
diff changeset
   152
  val dest_coeff = dest_coeff
haftmann
parents: 40878
diff changeset
   153
  val find_first_coeff = find_first_coeff []
44947
8ae418dfe561 dropped unused argument – avoids problem with SML/NJ
haftmann
parents: 44945
diff changeset
   154
  val trans_tac = Numeral_Simprocs.trans_tac
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   155
31068
f591144b0f17 modules numeral_simprocs, nat_numeral_simprocs; proper structures for numeral simprocs
haftmann
parents: 30685
diff changeset
   156
  val norm_ss1 = Numeral_Simprocs.num_ss addsimps numeral_syms @ add_0s @ mult_1s @
31790
05c92381363c corrected and unified thm names
nipkow
parents: 31368
diff changeset
   157
    [@{thm Suc_eq_plus1_left}] @ @{thms add_ac}
31068
f591144b0f17 modules numeral_simprocs, nat_numeral_simprocs; proper structures for numeral simprocs
haftmann
parents: 30685
diff changeset
   158
  val norm_ss2 = Numeral_Simprocs.num_ss addsimps bin_simps @ @{thms add_ac} @ @{thms mult_ac}
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   159
  fun norm_tac ss = 
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   160
    ALLGOALS (simp_tac (Simplifier.inherit_context ss norm_ss1))
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   161
    THEN ALLGOALS (simp_tac (Simplifier.inherit_context ss norm_ss2))
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   162
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   163
  val numeral_simp_ss = HOL_ss addsimps add_0s @ bin_simps;
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   164
  fun numeral_simp_tac ss = ALLGOALS (simp_tac (Simplifier.inherit_context ss numeral_simp_ss));
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   165
  val simplify_meta_eq  = simplify_meta_eq
44945
haftmann
parents: 40878
diff changeset
   166
  val prove_conv = Arith_Data.prove_conv
haftmann
parents: 40878
diff changeset
   167
end;
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   168
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   169
structure EqCancelNumerals = CancelNumeralsFun
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   170
 (open CancelNumeralsCommon
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   171
  val mk_bal   = HOLogic.mk_eq
38864
4abe644fcea5 formerly unnamed infix equality now named HOL.eq
haftmann
parents: 37388
diff changeset
   172
  val dest_bal = HOLogic.dest_bin @{const_name HOL.eq} HOLogic.natT
23471
08e6c03b2a72 add thm antiquotations
huffman
parents: 23164
diff changeset
   173
  val bal_add1 = @{thm nat_eq_add_iff1} RS trans
08e6c03b2a72 add thm antiquotations
huffman
parents: 23164
diff changeset
   174
  val bal_add2 = @{thm nat_eq_add_iff2} RS trans
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   175
);
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   176
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   177
structure LessCancelNumerals = CancelNumeralsFun
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   178
 (open CancelNumeralsCommon
35092
cfe605c54e50 moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
haftmann
parents: 35064
diff changeset
   179
  val mk_bal   = HOLogic.mk_binrel @{const_name Orderings.less}
cfe605c54e50 moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
haftmann
parents: 35064
diff changeset
   180
  val dest_bal = HOLogic.dest_bin @{const_name Orderings.less} HOLogic.natT
23471
08e6c03b2a72 add thm antiquotations
huffman
parents: 23164
diff changeset
   181
  val bal_add1 = @{thm nat_less_add_iff1} RS trans
08e6c03b2a72 add thm antiquotations
huffman
parents: 23164
diff changeset
   182
  val bal_add2 = @{thm nat_less_add_iff2} RS trans
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   183
);
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   184
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   185
structure LeCancelNumerals = CancelNumeralsFun
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   186
 (open CancelNumeralsCommon
35092
cfe605c54e50 moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
haftmann
parents: 35064
diff changeset
   187
  val mk_bal   = HOLogic.mk_binrel @{const_name Orderings.less_eq}
cfe605c54e50 moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
haftmann
parents: 35064
diff changeset
   188
  val dest_bal = HOLogic.dest_bin @{const_name Orderings.less_eq} HOLogic.natT
23471
08e6c03b2a72 add thm antiquotations
huffman
parents: 23164
diff changeset
   189
  val bal_add1 = @{thm nat_le_add_iff1} RS trans
08e6c03b2a72 add thm antiquotations
huffman
parents: 23164
diff changeset
   190
  val bal_add2 = @{thm nat_le_add_iff2} RS trans
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   191
);
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   192
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   193
structure DiffCancelNumerals = CancelNumeralsFun
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   194
 (open CancelNumeralsCommon
35267
8dfd816713c6 moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents: 35092
diff changeset
   195
  val mk_bal   = HOLogic.mk_binop @{const_name Groups.minus}
8dfd816713c6 moved remaning class operations from Algebras.thy to Groups.thy
haftmann
parents: 35092
diff changeset
   196
  val dest_bal = HOLogic.dest_bin @{const_name Groups.minus} HOLogic.natT
23471
08e6c03b2a72 add thm antiquotations
huffman
parents: 23164
diff changeset
   197
  val bal_add1 = @{thm nat_diff_add_eq1} RS trans
08e6c03b2a72 add thm antiquotations
huffman
parents: 23164
diff changeset
   198
  val bal_add2 = @{thm nat_diff_add_eq2} RS trans
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   199
);
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   200
45436
62bc9474d04b use simproc_setup for some nat_numeral simprocs; add simproc tests
huffman
parents: 45306
diff changeset
   201
fun eq_cancel_numerals ss ct = EqCancelNumerals.proc ss (term_of ct)
62bc9474d04b use simproc_setup for some nat_numeral simprocs; add simproc tests
huffman
parents: 45306
diff changeset
   202
fun less_cancel_numerals ss ct = LessCancelNumerals.proc ss (term_of ct)
62bc9474d04b use simproc_setup for some nat_numeral simprocs; add simproc tests
huffman
parents: 45306
diff changeset
   203
fun le_cancel_numerals ss ct = LeCancelNumerals.proc ss (term_of ct)
62bc9474d04b use simproc_setup for some nat_numeral simprocs; add simproc tests
huffman
parents: 45306
diff changeset
   204
fun diff_cancel_numerals ss ct = DiffCancelNumerals.proc ss (term_of ct)
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   205
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   206
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   207
(*** Applying CombineNumeralsFun ***)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   208
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   209
structure CombineNumeralsData =
44945
haftmann
parents: 40878
diff changeset
   210
struct
haftmann
parents: 40878
diff changeset
   211
  type coeff = int
haftmann
parents: 40878
diff changeset
   212
  val iszero = (fn x => x = 0)
haftmann
parents: 40878
diff changeset
   213
  val add = op +
haftmann
parents: 40878
diff changeset
   214
  val mk_sum = (fn T : typ => long_mk_sum)  (*to work for 2*x + 3*x *)
haftmann
parents: 40878
diff changeset
   215
  val dest_sum = dest_Sucs_sum false
haftmann
parents: 40878
diff changeset
   216
  val mk_coeff = mk_coeff
haftmann
parents: 40878
diff changeset
   217
  val dest_coeff = dest_coeff
haftmann
parents: 40878
diff changeset
   218
  val left_distrib = @{thm left_add_mult_distrib} RS trans
haftmann
parents: 40878
diff changeset
   219
  val prove_conv = Arith_Data.prove_conv_nohyps
44947
8ae418dfe561 dropped unused argument – avoids problem with SML/NJ
haftmann
parents: 44945
diff changeset
   220
  val trans_tac = Numeral_Simprocs.trans_tac
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   221
31790
05c92381363c corrected and unified thm names
nipkow
parents: 31368
diff changeset
   222
  val norm_ss1 = Numeral_Simprocs.num_ss addsimps numeral_syms @ add_0s @ mult_1s @ [@{thm Suc_eq_plus1}] @ @{thms add_ac}
31068
f591144b0f17 modules numeral_simprocs, nat_numeral_simprocs; proper structures for numeral simprocs
haftmann
parents: 30685
diff changeset
   223
  val norm_ss2 = Numeral_Simprocs.num_ss addsimps bin_simps @ @{thms add_ac} @ @{thms mult_ac}
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   224
  fun norm_tac ss =
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   225
    ALLGOALS (simp_tac (Simplifier.inherit_context ss norm_ss1))
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   226
    THEN ALLGOALS (simp_tac (Simplifier.inherit_context ss norm_ss2))
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   227
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   228
  val numeral_simp_ss = HOL_ss addsimps add_0s @ bin_simps;
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   229
  fun numeral_simp_tac ss = ALLGOALS (simp_tac (Simplifier.inherit_context ss numeral_simp_ss))
44945
haftmann
parents: 40878
diff changeset
   230
  val simplify_meta_eq = simplify_meta_eq
haftmann
parents: 40878
diff changeset
   231
end;
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   232
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   233
structure CombineNumerals = CombineNumeralsFun(CombineNumeralsData);
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   234
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   235
val combine_numerals =
44945
haftmann
parents: 40878
diff changeset
   236
  Numeral_Simprocs.prep_simproc @{theory}
32155
e2bf2f73b0c8 more @{theory} antiquotations;
wenzelm
parents: 32010
diff changeset
   237
    ("nat_combine_numerals", ["(i::nat) + j", "Suc (i + j)"], K CombineNumerals.proc);
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   238
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   239
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   240
(*** Applying CancelNumeralFactorFun ***)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   241
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   242
structure CancelNumeralFactorCommon =
44945
haftmann
parents: 40878
diff changeset
   243
struct
haftmann
parents: 40878
diff changeset
   244
  val mk_coeff = mk_coeff
haftmann
parents: 40878
diff changeset
   245
  val dest_coeff = dest_coeff
44947
8ae418dfe561 dropped unused argument – avoids problem with SML/NJ
haftmann
parents: 44945
diff changeset
   246
  val trans_tac = Numeral_Simprocs.trans_tac
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   247
31068
f591144b0f17 modules numeral_simprocs, nat_numeral_simprocs; proper structures for numeral simprocs
haftmann
parents: 30685
diff changeset
   248
  val norm_ss1 = Numeral_Simprocs.num_ss addsimps
31790
05c92381363c corrected and unified thm names
nipkow
parents: 31368
diff changeset
   249
    numeral_syms @ add_0s @ mult_1s @ [@{thm Suc_eq_plus1_left}] @ @{thms add_ac}
31068
f591144b0f17 modules numeral_simprocs, nat_numeral_simprocs; proper structures for numeral simprocs
haftmann
parents: 30685
diff changeset
   250
  val norm_ss2 = Numeral_Simprocs.num_ss addsimps bin_simps @ @{thms add_ac} @ @{thms mult_ac}
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   251
  fun norm_tac ss =
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   252
    ALLGOALS (simp_tac (Simplifier.inherit_context ss norm_ss1))
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   253
    THEN ALLGOALS (simp_tac (Simplifier.inherit_context ss norm_ss2))
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   254
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   255
  val numeral_simp_ss = HOL_ss addsimps bin_simps
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   256
  fun numeral_simp_tac ss = ALLGOALS (simp_tac (Simplifier.inherit_context ss numeral_simp_ss))
44945
haftmann
parents: 40878
diff changeset
   257
  val simplify_meta_eq = simplify_meta_eq
haftmann
parents: 40878
diff changeset
   258
  val prove_conv = Arith_Data.prove_conv
haftmann
parents: 40878
diff changeset
   259
end;
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   260
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   261
structure DivCancelNumeralFactor = CancelNumeralFactorFun
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   262
 (open CancelNumeralFactorCommon
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   263
  val mk_bal   = HOLogic.mk_binop @{const_name Divides.div}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   264
  val dest_bal = HOLogic.dest_bin @{const_name Divides.div} HOLogic.natT
23471
08e6c03b2a72 add thm antiquotations
huffman
parents: 23164
diff changeset
   265
  val cancel = @{thm nat_mult_div_cancel1} RS trans
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   266
  val neg_exchanges = false
44945
haftmann
parents: 40878
diff changeset
   267
);
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   268
23969
ef782bbf2d09 Added cancel simprocs for dvd on nat and int
nipkow
parents: 23881
diff changeset
   269
structure DvdCancelNumeralFactor = CancelNumeralFactorFun
ef782bbf2d09 Added cancel simprocs for dvd on nat and int
nipkow
parents: 23881
diff changeset
   270
 (open CancelNumeralFactorCommon
35050
9f841f20dca6 renamed OrderedGroup to Groups; split theory Ring_and_Field into Rings Fields
haftmann
parents: 34974
diff changeset
   271
  val mk_bal   = HOLogic.mk_binrel @{const_name Rings.dvd}
9f841f20dca6 renamed OrderedGroup to Groups; split theory Ring_and_Field into Rings Fields
haftmann
parents: 34974
diff changeset
   272
  val dest_bal = HOLogic.dest_bin @{const_name Rings.dvd} HOLogic.natT
23969
ef782bbf2d09 Added cancel simprocs for dvd on nat and int
nipkow
parents: 23881
diff changeset
   273
  val cancel = @{thm nat_mult_dvd_cancel1} RS trans
ef782bbf2d09 Added cancel simprocs for dvd on nat and int
nipkow
parents: 23881
diff changeset
   274
  val neg_exchanges = false
44945
haftmann
parents: 40878
diff changeset
   275
);
23969
ef782bbf2d09 Added cancel simprocs for dvd on nat and int
nipkow
parents: 23881
diff changeset
   276
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   277
structure EqCancelNumeralFactor = CancelNumeralFactorFun
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   278
 (open CancelNumeralFactorCommon
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   279
  val mk_bal   = HOLogic.mk_eq
38864
4abe644fcea5 formerly unnamed infix equality now named HOL.eq
haftmann
parents: 37388
diff changeset
   280
  val dest_bal = HOLogic.dest_bin @{const_name HOL.eq} HOLogic.natT
23471
08e6c03b2a72 add thm antiquotations
huffman
parents: 23164
diff changeset
   281
  val cancel = @{thm nat_mult_eq_cancel1} RS trans
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   282
  val neg_exchanges = false
44945
haftmann
parents: 40878
diff changeset
   283
);
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   284
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   285
structure LessCancelNumeralFactor = CancelNumeralFactorFun
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   286
 (open CancelNumeralFactorCommon
35092
cfe605c54e50 moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
haftmann
parents: 35064
diff changeset
   287
  val mk_bal   = HOLogic.mk_binrel @{const_name Orderings.less}
cfe605c54e50 moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
haftmann
parents: 35064
diff changeset
   288
  val dest_bal = HOLogic.dest_bin @{const_name Orderings.less} HOLogic.natT
23471
08e6c03b2a72 add thm antiquotations
huffman
parents: 23164
diff changeset
   289
  val cancel = @{thm nat_mult_less_cancel1} RS trans
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   290
  val neg_exchanges = true
44945
haftmann
parents: 40878
diff changeset
   291
);
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   292
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   293
structure LeCancelNumeralFactor = CancelNumeralFactorFun
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   294
 (open CancelNumeralFactorCommon
35092
cfe605c54e50 moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
haftmann
parents: 35064
diff changeset
   295
  val mk_bal   = HOLogic.mk_binrel @{const_name Orderings.less_eq}
cfe605c54e50 moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
haftmann
parents: 35064
diff changeset
   296
  val dest_bal = HOLogic.dest_bin @{const_name Orderings.less_eq} HOLogic.natT
23471
08e6c03b2a72 add thm antiquotations
huffman
parents: 23164
diff changeset
   297
  val cancel = @{thm nat_mult_le_cancel1} RS trans
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   298
  val neg_exchanges = true
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   299
)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   300
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   301
val cancel_numeral_factors =
44945
haftmann
parents: 40878
diff changeset
   302
  map (Numeral_Simprocs.prep_simproc @{theory})
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   303
   [("nateq_cancel_numeral_factors",
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   304
     ["(l::nat) * m = n", "(l::nat) = m * n"],
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   305
     K EqCancelNumeralFactor.proc),
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   306
    ("natless_cancel_numeral_factors",
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   307
     ["(l::nat) * m < n", "(l::nat) < m * n"],
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   308
     K LessCancelNumeralFactor.proc),
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   309
    ("natle_cancel_numeral_factors",
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   310
     ["(l::nat) * m <= n", "(l::nat) <= m * n"],
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   311
     K LeCancelNumeralFactor.proc),
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   312
    ("natdiv_cancel_numeral_factors",
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   313
     ["((l::nat) * m) div n", "(l::nat) div (m * n)"],
23969
ef782bbf2d09 Added cancel simprocs for dvd on nat and int
nipkow
parents: 23881
diff changeset
   314
     K DivCancelNumeralFactor.proc),
ef782bbf2d09 Added cancel simprocs for dvd on nat and int
nipkow
parents: 23881
diff changeset
   315
    ("natdvd_cancel_numeral_factors",
ef782bbf2d09 Added cancel simprocs for dvd on nat and int
nipkow
parents: 23881
diff changeset
   316
     ["((l::nat) * m) dvd n", "(l::nat) dvd (m * n)"],
ef782bbf2d09 Added cancel simprocs for dvd on nat and int
nipkow
parents: 23881
diff changeset
   317
     K DvdCancelNumeralFactor.proc)];
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   318
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   319
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   320
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   321
(*** Applying ExtractCommonTermFun ***)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   322
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   323
(*this version ALWAYS includes a trailing one*)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   324
fun long_mk_prod []        = one
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   325
  | long_mk_prod (t :: ts) = mk_times (t, mk_prod ts);
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   326
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   327
(*Find first term that matches u*)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   328
fun find_first_t past u []         = raise TERM("find_first_t", [])
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   329
  | find_first_t past u (t::terms) =
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   330
        if u aconv t then (rev past @ terms)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   331
        else find_first_t (t::past) u terms
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   332
        handle TERM _ => find_first_t (t::past) u terms;
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   333
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   334
(** Final simplification for the CancelFactor simprocs **)
30518
07b45c1aa788 moved some generic nonsense to arith_data.ML
haftmann
parents: 30496
diff changeset
   335
val simplify_one = Arith_Data.simplify_meta_eq  
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   336
  [@{thm mult_1_left}, @{thm mult_1_right}, @{thm div_1}, @{thm numeral_1_eq_Suc_0}];
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   337
30649
57753e0ec1d4 1. New cancellation simprocs for common factors in inequations
nipkow
parents: 30518
diff changeset
   338
fun cancel_simplify_meta_eq ss cancel_th th =
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   339
    simplify_one ss (([th, cancel_th]) MRS trans);
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   340
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   341
structure CancelFactorCommon =
44945
haftmann
parents: 40878
diff changeset
   342
struct
haftmann
parents: 40878
diff changeset
   343
  val mk_sum = (fn T : typ => long_mk_prod)
haftmann
parents: 40878
diff changeset
   344
  val dest_sum = dest_prod
haftmann
parents: 40878
diff changeset
   345
  val mk_coeff = mk_coeff
haftmann
parents: 40878
diff changeset
   346
  val dest_coeff = dest_coeff
haftmann
parents: 40878
diff changeset
   347
  val find_first = find_first_t []
44947
8ae418dfe561 dropped unused argument – avoids problem with SML/NJ
haftmann
parents: 44945
diff changeset
   348
  val trans_tac = Numeral_Simprocs.trans_tac
23881
851c74f1bb69 moved class ord from Orderings.thy to HOL.thy
haftmann
parents: 23471
diff changeset
   349
  val norm_ss = HOL_ss addsimps mult_1s @ @{thms mult_ac}
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   350
  fun norm_tac ss = ALLGOALS (simp_tac (Simplifier.inherit_context ss norm_ss))
30649
57753e0ec1d4 1. New cancellation simprocs for common factors in inequations
nipkow
parents: 30518
diff changeset
   351
  val simplify_meta_eq  = cancel_simplify_meta_eq
45270
d5b5c9259afd fix bug in cancel_factor simprocs so they will work on goals like 'x * y < x * z' where the common term is already on the left
huffman
parents: 44947
diff changeset
   352
  fun mk_eq (a, b) = HOLogic.mk_Trueprop (HOLogic.mk_eq (a, b))
44945
haftmann
parents: 40878
diff changeset
   353
end;
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   354
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   355
structure EqCancelFactor = ExtractCommonTermFun
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   356
 (open CancelFactorCommon
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   357
  val mk_bal   = HOLogic.mk_eq
38864
4abe644fcea5 formerly unnamed infix equality now named HOL.eq
haftmann
parents: 37388
diff changeset
   358
  val dest_bal = HOLogic.dest_bin @{const_name HOL.eq} HOLogic.natT
31368
763f4b0fd579 made SML/NJ happy;
wenzelm
parents: 31068
diff changeset
   359
  fun simp_conv _ _ = SOME @{thm nat_mult_eq_cancel_disj}
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   360
);
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   361
44945
haftmann
parents: 40878
diff changeset
   362
structure LeCancelFactor = ExtractCommonTermFun
haftmann
parents: 40878
diff changeset
   363
 (open CancelFactorCommon
haftmann
parents: 40878
diff changeset
   364
  val mk_bal   = HOLogic.mk_binrel @{const_name Orderings.less_eq}
haftmann
parents: 40878
diff changeset
   365
  val dest_bal = HOLogic.dest_bin @{const_name Orderings.less_eq} HOLogic.natT
haftmann
parents: 40878
diff changeset
   366
  fun simp_conv _ _ = SOME @{thm nat_mult_le_cancel_disj}
haftmann
parents: 40878
diff changeset
   367
);
haftmann
parents: 40878
diff changeset
   368
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   369
structure LessCancelFactor = ExtractCommonTermFun
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   370
 (open CancelFactorCommon
35092
cfe605c54e50 moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
haftmann
parents: 35064
diff changeset
   371
  val mk_bal   = HOLogic.mk_binrel @{const_name Orderings.less}
cfe605c54e50 moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
haftmann
parents: 35064
diff changeset
   372
  val dest_bal = HOLogic.dest_bin @{const_name Orderings.less} HOLogic.natT
31368
763f4b0fd579 made SML/NJ happy;
wenzelm
parents: 31068
diff changeset
   373
  fun simp_conv _ _ = SOME @{thm nat_mult_less_cancel_disj}
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   374
);
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   375
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   376
structure DivideCancelFactor = ExtractCommonTermFun
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   377
 (open CancelFactorCommon
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   378
  val mk_bal   = HOLogic.mk_binop @{const_name Divides.div}
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   379
  val dest_bal = HOLogic.dest_bin @{const_name Divides.div} HOLogic.natT
31368
763f4b0fd579 made SML/NJ happy;
wenzelm
parents: 31068
diff changeset
   380
  fun simp_conv _ _ = SOME @{thm nat_mult_div_cancel_disj}
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   381
);
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   382
23969
ef782bbf2d09 Added cancel simprocs for dvd on nat and int
nipkow
parents: 23881
diff changeset
   383
structure DvdCancelFactor = ExtractCommonTermFun
ef782bbf2d09 Added cancel simprocs for dvd on nat and int
nipkow
parents: 23881
diff changeset
   384
 (open CancelFactorCommon
35050
9f841f20dca6 renamed OrderedGroup to Groups; split theory Ring_and_Field into Rings Fields
haftmann
parents: 34974
diff changeset
   385
  val mk_bal   = HOLogic.mk_binrel @{const_name Rings.dvd}
9f841f20dca6 renamed OrderedGroup to Groups; split theory Ring_and_Field into Rings Fields
haftmann
parents: 34974
diff changeset
   386
  val dest_bal = HOLogic.dest_bin @{const_name Rings.dvd} HOLogic.natT
31368
763f4b0fd579 made SML/NJ happy;
wenzelm
parents: 31068
diff changeset
   387
  fun simp_conv _ _ = SOME @{thm nat_mult_dvd_cancel_disj}
23969
ef782bbf2d09 Added cancel simprocs for dvd on nat and int
nipkow
parents: 23881
diff changeset
   388
);
ef782bbf2d09 Added cancel simprocs for dvd on nat and int
nipkow
parents: 23881
diff changeset
   389
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   390
val cancel_factor =
44945
haftmann
parents: 40878
diff changeset
   391
  map (Numeral_Simprocs.prep_simproc @{theory})
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   392
   [("nat_eq_cancel_factor",
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   393
     ["(l::nat) * m = n", "(l::nat) = m * n"],
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   394
     K EqCancelFactor.proc),
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   395
    ("nat_less_cancel_factor",
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   396
     ["(l::nat) * m < n", "(l::nat) < m * n"],
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   397
     K LessCancelFactor.proc),
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   398
    ("nat_le_cancel_factor",
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   399
     ["(l::nat) * m <= n", "(l::nat) <= m * n"],
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   400
     K LeCancelFactor.proc),
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   401
    ("nat_divide_cancel_factor",
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   402
     ["((l::nat) * m) div n", "(l::nat) div (m * n)"],
23969
ef782bbf2d09 Added cancel simprocs for dvd on nat and int
nipkow
parents: 23881
diff changeset
   403
     K DivideCancelFactor.proc),
ef782bbf2d09 Added cancel simprocs for dvd on nat and int
nipkow
parents: 23881
diff changeset
   404
    ("nat_dvd_cancel_factor",
ef782bbf2d09 Added cancel simprocs for dvd on nat and int
nipkow
parents: 23881
diff changeset
   405
     ["((l::nat) * m) dvd n", "(l::nat) dvd (m * n)"],
ef782bbf2d09 Added cancel simprocs for dvd on nat and int
nipkow
parents: 23881
diff changeset
   406
     K DvdCancelFactor.proc)];
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   407
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   408
end;
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   409
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   410
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   411
Addsimprocs [Nat_Numeral_Simprocs.combine_numerals];
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   412
Addsimprocs Nat_Numeral_Simprocs.cancel_numeral_factors;
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   413
Addsimprocs Nat_Numeral_Simprocs.cancel_factor;
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   414
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   415
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   416
(*examples:
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   417
print_depth 22;
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   418
set timing;
40878
7695e4de4d86 renamed trace_simp to simp_trace, and debug_simp to simp_debug;
wenzelm
parents: 38864
diff changeset
   419
set simp_trace;
23164
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   420
fun test s = (Goal s; by (Simp_tac 1));
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   421
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   422
(*combine_numerals*)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   423
test "k + 3*k = (u::nat)";
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   424
test "Suc (i + 3) = u";
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   425
test "Suc (i + j + 3 + k) = u";
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   426
test "k + j + 3*k + j = (u::nat)";
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   427
test "Suc (j*i + i + k + 5 + 3*k + i*j*4) = (u::nat)";
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   428
test "(2*n*m) + (3*(m*n)) = (u::nat)";
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   429
(*negative numerals: FAIL*)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   430
test "Suc (i + j + -3 + k) = u";
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   431
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   432
(*cancel_numeral_factors*)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   433
test "9*x = 12 * (y::nat)";
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   434
test "(9*x) div (12 * (y::nat)) = z";
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   435
test "9*x < 12 * (y::nat)";
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   436
test "9*x <= 12 * (y::nat)";
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   437
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   438
(*cancel_factor*)
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   439
test "x*k = k*(y::nat)";
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   440
test "k = k*(y::nat)";
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   441
test "a*(b*c) = (b::nat)";
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   442
test "a*(b*c) = d*(b::nat)*(x*a)";
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   443
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   444
test "x*k < k*(y::nat)";
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   445
test "k < k*(y::nat)";
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   446
test "a*(b*c) < (b::nat)";
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   447
test "a*(b*c) < d*(b::nat)*(x*a)";
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   448
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   449
test "x*k <= k*(y::nat)";
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   450
test "k <= k*(y::nat)";
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   451
test "a*(b*c) <= (b::nat)";
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   452
test "a*(b*c) <= d*(b::nat)*(x*a)";
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   453
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   454
test "(x*k) div (k*(y::nat)) = (uu::nat)";
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   455
test "(k) div (k*(y::nat)) = (uu::nat)";
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   456
test "(a*(b*c)) div ((b::nat)) = (uu::nat)";
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   457
test "(a*(b*c)) div (d*(b::nat)*(x*a)) = (uu::nat)";
69e55066dbca moved Integ files to canonical place;
wenzelm
parents:
diff changeset
   458
*)