src/ZF/arith_data.ML
author kleing
Sat, 30 Apr 2005 14:18:36 +0200
changeset 15900 d6156cb8dc2e
parent 15570 8d8c70b41bab
child 15965 f422f8283491
permissions -rw-r--r--
fixed typo
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
9548
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
     1
(*  Title:      ZF/arith_data.ML
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
     2
    ID:         $Id$
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
     3
    Author:     Lawrence C Paulson, Cambridge University Computer Laboratory
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
     4
    Copyright   2000  University of Cambridge
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
     5
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
     6
Arithmetic simplification: cancellation of common terms
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
     7
*)
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
     8
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
     9
signature ARITH_DATA =
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    10
sig
9570
e16e168984e1 installation of cancellation simprocs for the integers
paulson
parents: 9548
diff changeset
    11
  (*the main outcome*)
9548
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    12
  val nat_cancel: simproc list
9570
e16e168984e1 installation of cancellation simprocs for the integers
paulson
parents: 9548
diff changeset
    13
  (*tools for use in similar applications*)
e16e168984e1 installation of cancellation simprocs for the integers
paulson
parents: 9548
diff changeset
    14
  val gen_trans_tac: thm -> thm option -> tactic
13462
56610e2ba220 sane interface for simprocs;
wenzelm
parents: 13259
diff changeset
    15
  val prove_conv: string -> tactic list -> Sign.sg ->
13487
wenzelm
parents: 13462
diff changeset
    16
                  thm list -> string list -> term * term -> thm option
9570
e16e168984e1 installation of cancellation simprocs for the integers
paulson
parents: 9548
diff changeset
    17
  val simplify_meta_eq: thm list -> thm -> thm
9874
0aa0874ab66b bug fix for arithmetic simprocs (nat & int)
paulson
parents: 9649
diff changeset
    18
  (*debugging*)
0aa0874ab66b bug fix for arithmetic simprocs (nat & int)
paulson
parents: 9649
diff changeset
    19
  structure EqCancelNumeralsData   : CANCEL_NUMERALS_DATA
0aa0874ab66b bug fix for arithmetic simprocs (nat & int)
paulson
parents: 9649
diff changeset
    20
  structure LessCancelNumeralsData : CANCEL_NUMERALS_DATA
0aa0874ab66b bug fix for arithmetic simprocs (nat & int)
paulson
parents: 9649
diff changeset
    21
  structure DiffCancelNumeralsData : CANCEL_NUMERALS_DATA
9548
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    22
end;
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    23
9570
e16e168984e1 installation of cancellation simprocs for the integers
paulson
parents: 9548
diff changeset
    24
9548
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    25
structure ArithData: ARITH_DATA =
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    26
struct
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    27
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    28
val iT = Ind_Syntax.iT;
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    29
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    30
val zero = Const("0", iT);
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    31
val succ = Const("succ", iT --> iT);
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    32
fun mk_succ t = succ $ t;
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    33
val one = mk_succ zero;
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    34
9570
e16e168984e1 installation of cancellation simprocs for the integers
paulson
parents: 9548
diff changeset
    35
val mk_plus = FOLogic.mk_binop "Arith.add";
9548
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    36
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    37
(*Thus mk_sum[t] yields t+#0; longer sums don't have a trailing zero*)
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    38
fun mk_sum []        = zero
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    39
  | mk_sum [t,u]     = mk_plus (t, u)
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    40
  | mk_sum (t :: ts) = mk_plus (t, mk_sum ts);
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    41
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    42
(*this version ALWAYS includes a trailing zero*)
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    43
fun long_mk_sum []        = zero
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    44
  | long_mk_sum (t :: ts) = mk_plus (t, mk_sum ts);
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    45
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    46
val dest_plus = FOLogic.dest_bin "Arith.add" iT;
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    47
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    48
(* dest_sum *)
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    49
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    50
fun dest_sum (Const("0",_)) = []
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    51
  | dest_sum (Const("succ",_) $ t) = one :: dest_sum t
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    52
  | dest_sum (Const("Arith.add",_) $ t $ u) = dest_sum t @ dest_sum u
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    53
  | dest_sum tm = [tm];
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    54
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    55
(*Apply the given rewrite (if present) just once*)
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 14387
diff changeset
    56
fun gen_trans_tac th2 NONE      = all_tac
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 14387
diff changeset
    57
  | gen_trans_tac th2 (SOME th) = ALLGOALS (rtac (th RS th2));
9548
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    58
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    59
(*Use <-> or = depending on the type of t*)
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    60
fun mk_eq_iff(t,u) =
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    61
  if fastype_of t = iT then FOLogic.mk_eq(t,u)
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    62
                       else FOLogic.mk_iff(t,u);
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    63
9874
0aa0874ab66b bug fix for arithmetic simprocs (nat & int)
paulson
parents: 9649
diff changeset
    64
(*We remove equality assumptions because they confuse the simplifier and
0aa0874ab66b bug fix for arithmetic simprocs (nat & int)
paulson
parents: 9649
diff changeset
    65
  because only type-checking assumptions are necessary.*)
13462
56610e2ba220 sane interface for simprocs;
wenzelm
parents: 13259
diff changeset
    66
fun is_eq_thm th =
9874
0aa0874ab66b bug fix for arithmetic simprocs (nat & int)
paulson
parents: 9649
diff changeset
    67
    can FOLogic.dest_eq (FOLogic.dest_Trueprop (#prop (rep_thm th)));
9649
89155e48fa53 simproc bug fix: only TYPING assumptions are given to the simplifier
paulson
parents: 9570
diff changeset
    68
9548
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    69
fun add_chyps chyps ct = Drule.list_implies (map cprop_of chyps, ct);
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    70
13487
wenzelm
parents: 13462
diff changeset
    71
fun prove_conv name tacs sg hyps xs (t,u) =
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 14387
diff changeset
    72
  if t aconv u then NONE
9548
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    73
  else
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
    74
  let val hyps' = List.filter (not o is_eq_thm) hyps
12134
7049eead7a50 use Tactic.prove;
wenzelm
parents: 9874
diff changeset
    75
      val goal = Logic.list_implies (map (#prop o Thm.rep_thm) hyps',
7049eead7a50 use Tactic.prove;
wenzelm
parents: 9874
diff changeset
    76
        FOLogic.mk_Trueprop (mk_eq_iff (t, u)));
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 14387
diff changeset
    77
  in SOME (hyps' MRS Tactic.prove sg xs [] goal (K (EVERY tacs)))
13462
56610e2ba220 sane interface for simprocs;
wenzelm
parents: 13259
diff changeset
    78
      handle ERROR_MESSAGE msg =>
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 14387
diff changeset
    79
        (warning (msg ^ "\nCancellation failed: no typing information? (" ^ name ^ ")"); NONE)
9548
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    80
  end;
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    81
13462
56610e2ba220 sane interface for simprocs;
wenzelm
parents: 13259
diff changeset
    82
fun prep_simproc (name, pats, proc) =
56610e2ba220 sane interface for simprocs;
wenzelm
parents: 13259
diff changeset
    83
  Simplifier.simproc (Theory.sign_of (the_context ())) name pats proc;
9548
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    84
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    85
13462
56610e2ba220 sane interface for simprocs;
wenzelm
parents: 13259
diff changeset
    86
(*** Use CancelNumerals simproc without binary numerals,
9548
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    87
     just for cancellation ***)
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    88
9570
e16e168984e1 installation of cancellation simprocs for the integers
paulson
parents: 9548
diff changeset
    89
val mk_times = FOLogic.mk_binop "Arith.mult";
9548
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    90
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    91
fun mk_prod [] = one
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    92
  | mk_prod [t] = t
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    93
  | mk_prod (t :: ts) = if t = one then mk_prod ts
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    94
                        else mk_times (t, mk_prod ts);
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    95
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    96
val dest_times = FOLogic.dest_bin "Arith.mult" iT;
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    97
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    98
fun dest_prod t =
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
    99
      let val (t,u) = dest_times t
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   100
      in  dest_prod t @ dest_prod u  end
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   101
      handle TERM _ => [t];
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   102
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   103
(*Dummy version: the only arguments are 0 and 1*)
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   104
fun mk_coeff (0, t) = zero
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   105
  | mk_coeff (1, t) = t
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   106
  | mk_coeff _       = raise TERM("mk_coeff", []);
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   107
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   108
(*Dummy version: the "coefficient" is always 1.
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   109
  In the result, the factors are sorted terms*)
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   110
fun dest_coeff t = (1, mk_prod (sort Term.term_ord (dest_prod t)));
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   111
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   112
(*Find first coefficient-term THAT MATCHES u*)
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   113
fun find_first_coeff past u [] = raise TERM("find_first_coeff", [])
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   114
  | find_first_coeff past u (t::terms) =
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   115
        let val (n,u') = dest_coeff t
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   116
        in  if u aconv u' then (n, rev past @ terms)
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   117
                          else find_first_coeff (t::past) u terms
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   118
        end
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   119
        handle TERM _ => find_first_coeff (t::past) u terms;
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   120
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   121
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   122
(*Simplify #1*n and n*#1 to n*)
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   123
val add_0s = [add_0_natify, add_0_right_natify];
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   124
val add_succs = [add_succ, add_succ_right];
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   125
val mult_1s = [mult_1_natify, mult_1_right_natify];
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   126
val tc_rules = [natify_in_nat, add_type, diff_type, mult_type];
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   127
val natifys = [natify_0, natify_ident, add_natify1, add_natify2,
9570
e16e168984e1 installation of cancellation simprocs for the integers
paulson
parents: 9548
diff changeset
   128
               diff_natify1, diff_natify2];
9548
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   129
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   130
(*Final simplification: cancel + and **)
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   131
fun simplify_meta_eq rules =
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   132
    mk_meta_eq o
13462
56610e2ba220 sane interface for simprocs;
wenzelm
parents: 13259
diff changeset
   133
    simplify (FOL_ss addeqcongs[eq_cong2,iff_cong2]
9548
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   134
                     delsimps iff_simps (*these could erase the whole rule!*)
13462
56610e2ba220 sane interface for simprocs;
wenzelm
parents: 13259
diff changeset
   135
                     addsimps rules);
9548
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   136
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   137
val final_rules = add_0s @ mult_1s @ [mult_0, mult_0_right];
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   138
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   139
structure CancelNumeralsCommon =
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   140
  struct
14387
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 13487
diff changeset
   141
  val mk_sum            = (fn T:typ => mk_sum)
9548
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   142
  val dest_sum          = dest_sum
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   143
  val mk_coeff          = mk_coeff
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   144
  val dest_coeff        = dest_coeff
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   145
  val find_first_coeff  = find_first_coeff []
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   146
  val norm_tac_ss1 = ZF_ss addsimps add_0s@add_succs@mult_1s@add_ac
13126
97e83120d6c8 fixed simproc bug
paulson
parents: 12206
diff changeset
   147
  val norm_tac_ss2 = ZF_ss addsimps add_0s@mult_1s@
97e83120d6c8 fixed simproc bug
paulson
parents: 12206
diff changeset
   148
                                    add_ac@mult_ac@tc_rules@natifys
9548
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   149
  val norm_tac = ALLGOALS (asm_simp_tac norm_tac_ss1)
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   150
                 THEN ALLGOALS (asm_simp_tac norm_tac_ss2)
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   151
  val numeral_simp_tac_ss = ZF_ss addsimps add_0s@tc_rules@natifys
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   152
  val numeral_simp_tac  = ALLGOALS (asm_simp_tac numeral_simp_tac_ss)
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   153
  val simplify_meta_eq  = simplify_meta_eq final_rules
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   154
  end;
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   155
9874
0aa0874ab66b bug fix for arithmetic simprocs (nat & int)
paulson
parents: 9649
diff changeset
   156
(** The functor argumnets are declared as separate structures
0aa0874ab66b bug fix for arithmetic simprocs (nat & int)
paulson
parents: 9649
diff changeset
   157
    so that they can be exported to ease debugging. **)
9548
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   158
13462
56610e2ba220 sane interface for simprocs;
wenzelm
parents: 13259
diff changeset
   159
structure EqCancelNumeralsData =
9874
0aa0874ab66b bug fix for arithmetic simprocs (nat & int)
paulson
parents: 9649
diff changeset
   160
  struct
0aa0874ab66b bug fix for arithmetic simprocs (nat & int)
paulson
parents: 9649
diff changeset
   161
  open CancelNumeralsCommon
9548
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   162
  val prove_conv = prove_conv "nateq_cancel_numerals"
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   163
  val mk_bal   = FOLogic.mk_eq
9649
89155e48fa53 simproc bug fix: only TYPING assumptions are given to the simplifier
paulson
parents: 9570
diff changeset
   164
  val dest_bal = FOLogic.dest_eq
9548
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   165
  val bal_add1 = eq_add_iff RS iff_trans
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   166
  val bal_add2 = eq_add_iff RS iff_trans
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   167
  val trans_tac = gen_trans_tac iff_trans
9874
0aa0874ab66b bug fix for arithmetic simprocs (nat & int)
paulson
parents: 9649
diff changeset
   168
  end;
0aa0874ab66b bug fix for arithmetic simprocs (nat & int)
paulson
parents: 9649
diff changeset
   169
0aa0874ab66b bug fix for arithmetic simprocs (nat & int)
paulson
parents: 9649
diff changeset
   170
structure EqCancelNumerals = CancelNumeralsFun(EqCancelNumeralsData);
9548
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   171
13462
56610e2ba220 sane interface for simprocs;
wenzelm
parents: 13259
diff changeset
   172
structure LessCancelNumeralsData =
9874
0aa0874ab66b bug fix for arithmetic simprocs (nat & int)
paulson
parents: 9649
diff changeset
   173
  struct
0aa0874ab66b bug fix for arithmetic simprocs (nat & int)
paulson
parents: 9649
diff changeset
   174
  open CancelNumeralsCommon
9548
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   175
  val prove_conv = prove_conv "natless_cancel_numerals"
13155
dcbf6cb95534 converting Ordinal.ML to Isar format
paulson
parents: 13126
diff changeset
   176
  val mk_bal   = FOLogic.mk_binrel "Ordinal.lt"
dcbf6cb95534 converting Ordinal.ML to Isar format
paulson
parents: 13126
diff changeset
   177
  val dest_bal = FOLogic.dest_bin "Ordinal.lt" iT
9548
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   178
  val bal_add1 = less_add_iff RS iff_trans
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   179
  val bal_add2 = less_add_iff RS iff_trans
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   180
  val trans_tac = gen_trans_tac iff_trans
9874
0aa0874ab66b bug fix for arithmetic simprocs (nat & int)
paulson
parents: 9649
diff changeset
   181
  end;
0aa0874ab66b bug fix for arithmetic simprocs (nat & int)
paulson
parents: 9649
diff changeset
   182
0aa0874ab66b bug fix for arithmetic simprocs (nat & int)
paulson
parents: 9649
diff changeset
   183
structure LessCancelNumerals = CancelNumeralsFun(LessCancelNumeralsData);
9548
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   184
13462
56610e2ba220 sane interface for simprocs;
wenzelm
parents: 13259
diff changeset
   185
structure DiffCancelNumeralsData =
9874
0aa0874ab66b bug fix for arithmetic simprocs (nat & int)
paulson
parents: 9649
diff changeset
   186
  struct
0aa0874ab66b bug fix for arithmetic simprocs (nat & int)
paulson
parents: 9649
diff changeset
   187
  open CancelNumeralsCommon
9548
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   188
  val prove_conv = prove_conv "natdiff_cancel_numerals"
9570
e16e168984e1 installation of cancellation simprocs for the integers
paulson
parents: 9548
diff changeset
   189
  val mk_bal   = FOLogic.mk_binop "Arith.diff"
9548
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   190
  val dest_bal = FOLogic.dest_bin "Arith.diff" iT
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   191
  val bal_add1 = diff_add_eq RS trans
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   192
  val bal_add2 = diff_add_eq RS trans
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   193
  val trans_tac = gen_trans_tac trans
9874
0aa0874ab66b bug fix for arithmetic simprocs (nat & int)
paulson
parents: 9649
diff changeset
   194
  end;
0aa0874ab66b bug fix for arithmetic simprocs (nat & int)
paulson
parents: 9649
diff changeset
   195
0aa0874ab66b bug fix for arithmetic simprocs (nat & int)
paulson
parents: 9649
diff changeset
   196
structure DiffCancelNumerals = CancelNumeralsFun(DiffCancelNumeralsData);
9548
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   197
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   198
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   199
val nat_cancel =
13462
56610e2ba220 sane interface for simprocs;
wenzelm
parents: 13259
diff changeset
   200
  map prep_simproc
56610e2ba220 sane interface for simprocs;
wenzelm
parents: 13259
diff changeset
   201
   [("nateq_cancel_numerals",
56610e2ba220 sane interface for simprocs;
wenzelm
parents: 13259
diff changeset
   202
     ["l #+ m = n", "l = m #+ n",
56610e2ba220 sane interface for simprocs;
wenzelm
parents: 13259
diff changeset
   203
      "l #* m = n", "l = m #* n",
56610e2ba220 sane interface for simprocs;
wenzelm
parents: 13259
diff changeset
   204
      "succ(m) = n", "m = succ(n)"],
56610e2ba220 sane interface for simprocs;
wenzelm
parents: 13259
diff changeset
   205
     EqCancelNumerals.proc),
56610e2ba220 sane interface for simprocs;
wenzelm
parents: 13259
diff changeset
   206
    ("natless_cancel_numerals",
56610e2ba220 sane interface for simprocs;
wenzelm
parents: 13259
diff changeset
   207
     ["l #+ m < n", "l < m #+ n",
56610e2ba220 sane interface for simprocs;
wenzelm
parents: 13259
diff changeset
   208
      "l #* m < n", "l < m #* n",
56610e2ba220 sane interface for simprocs;
wenzelm
parents: 13259
diff changeset
   209
      "succ(m) < n", "m < succ(n)"],
56610e2ba220 sane interface for simprocs;
wenzelm
parents: 13259
diff changeset
   210
     LessCancelNumerals.proc),
56610e2ba220 sane interface for simprocs;
wenzelm
parents: 13259
diff changeset
   211
    ("natdiff_cancel_numerals",
56610e2ba220 sane interface for simprocs;
wenzelm
parents: 13259
diff changeset
   212
     ["(l #+ m) #- n", "l #- (m #+ n)",
56610e2ba220 sane interface for simprocs;
wenzelm
parents: 13259
diff changeset
   213
      "(l #* m) #- n", "l #- (m #* n)",
56610e2ba220 sane interface for simprocs;
wenzelm
parents: 13259
diff changeset
   214
      "succ(m) #- n", "m #- succ(n)"],
56610e2ba220 sane interface for simprocs;
wenzelm
parents: 13259
diff changeset
   215
     DiffCancelNumerals.proc)];
9548
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   216
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   217
end;
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   218
13259
01fa0c8dbc92 conversion of many files to Isar format
paulson
parents: 13155
diff changeset
   219
Addsimprocs ArithData.nat_cancel;
01fa0c8dbc92 conversion of many files to Isar format
paulson
parents: 13155
diff changeset
   220
01fa0c8dbc92 conversion of many files to Isar format
paulson
parents: 13155
diff changeset
   221
9548
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   222
(*examples:
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   223
print_depth 22;
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   224
set timing;
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   225
set trace_simp;
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   226
fun test s = (Goal s; by (Asm_simp_tac 1));
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   227
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   228
test "x #+ y = x #+ z";
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   229
test "y #+ x = x #+ z";
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   230
test "x #+ y #+ z = x #+ z";
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   231
test "y #+ (z #+ x) = z #+ x";
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   232
test "x #+ y #+ z = (z #+ y) #+ (x #+ w)";
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   233
test "x#*y #+ z = (z #+ y) #+ (y#*x #+ w)";
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   234
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   235
test "x #+ succ(y) = x #+ z";
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   236
test "x #+ succ(y) = succ(z #+ x)";
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   237
test "succ(x) #+ succ(y) #+ z = succ(z #+ y) #+ succ(x #+ w)";
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   238
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   239
test "(x #+ y) #- (x #+ z) = w";
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   240
test "(y #+ x) #- (x #+ z) = dd";
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   241
test "(x #+ y #+ z) #- (x #+ z) = dd";
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   242
test "(y #+ (z #+ x)) #- (z #+ x) = dd";
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   243
test "(x #+ y #+ z) #- ((z #+ y) #+ (x #+ w)) = dd";
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   244
test "(x#*y #+ z) #- ((z #+ y) #+ (y#*x #+ w)) = dd";
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   245
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   246
(*BAD occurrence of natify*)
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   247
test "(x #+ succ(y)) #- (x #+ z) = dd";
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   248
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   249
test "x #* y2 #+ y #* x2 = y #* x2 #+ x #* y2";
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   250
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   251
test "(x #+ succ(y)) #- (succ(z #+ x)) = dd";
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   252
test "(succ(x) #+ succ(y) #+ z) #- (succ(z #+ y) #+ succ(x #+ w)) = dd";
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   253
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   254
(*use of typing information*)
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   255
test "x : nat ==> x #+ y = x";
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   256
test "x : nat --> x #+ y = x";
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   257
test "x : nat ==> x #+ y < x";
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   258
test "x : nat ==> x < y#+x";
13126
97e83120d6c8 fixed simproc bug
paulson
parents: 12206
diff changeset
   259
test "x : nat ==> x le succ(x)";
9548
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   260
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   261
(*fails: no typing information isn't visible*)
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   262
test "x #+ y = x";
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   263
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   264
test "x #+ y < x #+ z";
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   265
test "y #+ x < x #+ z";
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   266
test "x #+ y #+ z < x #+ z";
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   267
test "y #+ z #+ x < x #+ z";
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   268
test "y #+ (z #+ x) < z #+ x";
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   269
test "x #+ y #+ z < (z #+ y) #+ (x #+ w)";
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   270
test "x#*y #+ z < (z #+ y) #+ (y#*x #+ w)";
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   271
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   272
test "x #+ succ(y) < x #+ z";
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   273
test "x #+ succ(y) < succ(z #+ x)";
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   274
test "succ(x) #+ succ(y) #+ z < succ(z #+ y) #+ succ(x #+ w)";
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   275
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   276
test "x #+ succ(y) le succ(z #+ x)";
15bee2731e43 instantiated Cancel_Numerals for "nat" in ZF
paulson
parents:
diff changeset
   277
*)