src/HOL/arith_data.ML
author nipkow
Tue, 07 Sep 2004 11:42:50 +0200
changeset 15185 8c43ffe2bb32
parent 15184 d2c19aea17bc
child 15195 197e00ce3f20
permissions -rw-r--r--
tuned "discrete" field
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
9436
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
     1
(*  Title:      HOL/arith_data.ML
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
     2
    ID:         $Id$
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
     3
    Author:     Markus Wenzel, Stefan Berghofer and Tobias Nipkow
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
     4
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
     5
Various arithmetic proof procedures.
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
     6
*)
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
     7
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
     8
(*---------------------------------------------------------------------------*)
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
     9
(* 1. Cancellation of common terms                                           *)
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
    10
(*---------------------------------------------------------------------------*)
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
    11
13517
42efec18f5b2 Added div+mod cancelling simproc
nipkow
parents: 13499
diff changeset
    12
structure NatArithUtils =
9436
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
    13
struct
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
    14
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
    15
(** abstract syntax of structure nat: 0, Suc, + **)
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
    16
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
    17
(* mk_sum, mk_norm_sum *)
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
    18
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
    19
val one = HOLogic.mk_nat 1;
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
    20
val mk_plus = HOLogic.mk_binop "op +";
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
    21
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
    22
fun mk_sum [] = HOLogic.zero
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
    23
  | mk_sum [t] = t
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
    24
  | mk_sum (t :: ts) = mk_plus (t, mk_sum ts);
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
    25
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
    26
(*normal form of sums: Suc (... (Suc (a + (b + ...))))*)
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
    27
fun mk_norm_sum ts =
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
    28
  let val (ones, sums) = partition (equal one) ts in
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
    29
    funpow (length ones) HOLogic.mk_Suc (mk_sum sums)
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
    30
  end;
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
    31
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
    32
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
    33
(* dest_sum *)
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
    34
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
    35
val dest_plus = HOLogic.dest_bin "op +" HOLogic.natT;
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
    36
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
    37
fun dest_sum tm =
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
    38
  if HOLogic.is_zero tm then []
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
    39
  else
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
    40
    (case try HOLogic.dest_Suc tm of
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
    41
      Some t => one :: dest_sum t
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
    42
    | None =>
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
    43
        (case try dest_plus tm of
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
    44
          Some (t, u) => dest_sum t @ dest_sum u
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
    45
        | None => [tm]));
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
    46
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
    47
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
    48
(** generic proof tools **)
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
    49
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
    50
(* prove conversions *)
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
    51
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
    52
val mk_eqv = HOLogic.mk_Trueprop o HOLogic.mk_eq;
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
    53
13517
42efec18f5b2 Added div+mod cancelling simproc
nipkow
parents: 13499
diff changeset
    54
fun prove_conv expand_tac norm_tac sg tu =
42efec18f5b2 Added div+mod cancelling simproc
nipkow
parents: 13499
diff changeset
    55
  mk_meta_eq (prove_goalw_cterm_nocheck [] (cterm_of sg (mk_eqv tu))
9436
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
    56
    (K [expand_tac, norm_tac]))
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
    57
  handle ERROR => error ("The error(s) above occurred while trying to prove " ^
13517
42efec18f5b2 Added div+mod cancelling simproc
nipkow
parents: 13499
diff changeset
    58
    (string_of_cterm (cterm_of sg (mk_eqv tu))));
9436
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
    59
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
    60
val subst_equals = prove_goal HOL.thy "[| t = s; u = t |] ==> u = s"
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
    61
  (fn prems => [cut_facts_tac prems 1, SIMPSET' asm_simp_tac 1]);
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
    62
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
    63
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
    64
(* rewriting *)
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
    65
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
    66
fun simp_all rules = ALLGOALS (simp_tac (HOL_ss addsimps rules));
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
    67
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
    68
val add_rules = [add_Suc, add_Suc_right, add_0, add_0_right];
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
    69
val mult_rules = [mult_Suc, mult_Suc_right, mult_0, mult_0_right];
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
    70
13517
42efec18f5b2 Added div+mod cancelling simproc
nipkow
parents: 13499
diff changeset
    71
fun prep_simproc (name, pats, proc) =
42efec18f5b2 Added div+mod cancelling simproc
nipkow
parents: 13499
diff changeset
    72
  Simplifier.simproc (Theory.sign_of (the_context ())) name pats proc;
42efec18f5b2 Added div+mod cancelling simproc
nipkow
parents: 13499
diff changeset
    73
42efec18f5b2 Added div+mod cancelling simproc
nipkow
parents: 13499
diff changeset
    74
end;
42efec18f5b2 Added div+mod cancelling simproc
nipkow
parents: 13499
diff changeset
    75
42efec18f5b2 Added div+mod cancelling simproc
nipkow
parents: 13499
diff changeset
    76
signature ARITH_DATA =
42efec18f5b2 Added div+mod cancelling simproc
nipkow
parents: 13499
diff changeset
    77
sig
42efec18f5b2 Added div+mod cancelling simproc
nipkow
parents: 13499
diff changeset
    78
  val nat_cancel_sums_add: simproc list
42efec18f5b2 Added div+mod cancelling simproc
nipkow
parents: 13499
diff changeset
    79
  val nat_cancel_sums: simproc list
42efec18f5b2 Added div+mod cancelling simproc
nipkow
parents: 13499
diff changeset
    80
end;
42efec18f5b2 Added div+mod cancelling simproc
nipkow
parents: 13499
diff changeset
    81
42efec18f5b2 Added div+mod cancelling simproc
nipkow
parents: 13499
diff changeset
    82
structure ArithData: ARITH_DATA =
42efec18f5b2 Added div+mod cancelling simproc
nipkow
parents: 13499
diff changeset
    83
struct
42efec18f5b2 Added div+mod cancelling simproc
nipkow
parents: 13499
diff changeset
    84
42efec18f5b2 Added div+mod cancelling simproc
nipkow
parents: 13499
diff changeset
    85
open NatArithUtils;
9436
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
    86
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
    87
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
    88
(** cancel common summands **)
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
    89
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
    90
structure Sum =
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
    91
struct
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
    92
  val mk_sum = mk_norm_sum;
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
    93
  val dest_sum = dest_sum;
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
    94
  val prove_conv = prove_conv;
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
    95
  val norm_tac = simp_all add_rules THEN simp_all add_ac;
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
    96
end;
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
    97
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
    98
fun gen_uncancel_tac rule ct =
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
    99
  rtac (instantiate' [] [None, Some ct] (rule RS subst_equals)) 1;
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   100
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   101
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   102
(* nat eq *)
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   103
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   104
structure EqCancelSums = CancelSumsFun
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   105
(struct
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   106
  open Sum;
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   107
  val mk_bal = HOLogic.mk_eq;
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   108
  val dest_bal = HOLogic.dest_bin "op =" HOLogic.natT;
14331
8dbbb7cf3637 re-organized numeric lemmas
paulson
parents: 13902
diff changeset
   109
  val uncancel_tac = gen_uncancel_tac nat_add_left_cancel;
9436
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   110
end);
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   111
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   112
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   113
(* nat less *)
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   114
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   115
structure LessCancelSums = CancelSumsFun
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   116
(struct
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   117
  open Sum;
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   118
  val mk_bal = HOLogic.mk_binrel "op <";
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   119
  val dest_bal = HOLogic.dest_bin "op <" HOLogic.natT;
14331
8dbbb7cf3637 re-organized numeric lemmas
paulson
parents: 13902
diff changeset
   120
  val uncancel_tac = gen_uncancel_tac nat_add_left_cancel_less;
9436
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   121
end);
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   122
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   123
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   124
(* nat le *)
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   125
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   126
structure LeCancelSums = CancelSumsFun
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   127
(struct
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   128
  open Sum;
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   129
  val mk_bal = HOLogic.mk_binrel "op <=";
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   130
  val dest_bal = HOLogic.dest_bin "op <=" HOLogic.natT;
14331
8dbbb7cf3637 re-organized numeric lemmas
paulson
parents: 13902
diff changeset
   131
  val uncancel_tac = gen_uncancel_tac nat_add_left_cancel_le;
9436
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   132
end);
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   133
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   134
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   135
(* nat diff *)
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   136
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   137
structure DiffCancelSums = CancelSumsFun
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   138
(struct
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   139
  open Sum;
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   140
  val mk_bal = HOLogic.mk_binop "op -";
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   141
  val dest_bal = HOLogic.dest_bin "op -" HOLogic.natT;
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   142
  val uncancel_tac = gen_uncancel_tac diff_cancel;
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   143
end);
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   144
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   145
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   146
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   147
(** prepare nat_cancel simprocs **)
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   148
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   149
val nat_cancel_sums_add = map prep_simproc
13462
56610e2ba220 sane interface for simprocs;
wenzelm
parents: 12949
diff changeset
   150
  [("nateq_cancel_sums",
56610e2ba220 sane interface for simprocs;
wenzelm
parents: 12949
diff changeset
   151
     ["(l::nat) + m = n", "(l::nat) = m + n", "Suc m = n", "m = Suc n"], EqCancelSums.proc),
56610e2ba220 sane interface for simprocs;
wenzelm
parents: 12949
diff changeset
   152
   ("natless_cancel_sums",
56610e2ba220 sane interface for simprocs;
wenzelm
parents: 12949
diff changeset
   153
     ["(l::nat) + m < n", "(l::nat) < m + n", "Suc m < n", "m < Suc n"], LessCancelSums.proc),
56610e2ba220 sane interface for simprocs;
wenzelm
parents: 12949
diff changeset
   154
   ("natle_cancel_sums",
56610e2ba220 sane interface for simprocs;
wenzelm
parents: 12949
diff changeset
   155
     ["(l::nat) + m <= n", "(l::nat) <= m + n", "Suc m <= n", "m <= Suc n"], LeCancelSums.proc)];
9436
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   156
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   157
val nat_cancel_sums = nat_cancel_sums_add @
13462
56610e2ba220 sane interface for simprocs;
wenzelm
parents: 12949
diff changeset
   158
  [prep_simproc ("natdiff_cancel_sums",
56610e2ba220 sane interface for simprocs;
wenzelm
parents: 12949
diff changeset
   159
    ["((l::nat) + m) - n", "(l::nat) - (m + n)", "Suc m - n", "m - Suc n"], DiffCancelSums.proc)];
9436
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   160
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   161
end;
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   162
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   163
open ArithData;
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   164
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   165
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   166
(*---------------------------------------------------------------------------*)
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   167
(* 2. Linear arithmetic                                                      *)
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   168
(*---------------------------------------------------------------------------*)
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   169
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   170
(* Parameters data for general linear arithmetic functor *)
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   171
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   172
structure LA_Logic: LIN_ARITH_LOGIC =
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   173
struct
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   174
val ccontr = ccontr;
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   175
val conjI = conjI;
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   176
val neqE = linorder_neqE;
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   177
val notI = notI;
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   178
val sym = sym;
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   179
val not_lessD = linorder_not_less RS iffD1;
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   180
val not_leD = linorder_not_le RS iffD1;
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   181
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   182
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   183
fun mk_Eq thm = (thm RS Eq_FalseI) handle THM _ => (thm RS Eq_TrueI);
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   184
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   185
val mk_Trueprop = HOLogic.mk_Trueprop;
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   186
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   187
fun neg_prop(TP$(Const("Not",_)$t)) = TP$t
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   188
  | neg_prop(TP$t) = TP $ (Const("Not",HOLogic.boolT-->HOLogic.boolT)$t);
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   189
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   190
fun is_False thm =
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   191
  let val _ $ t = #prop(rep_thm thm)
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   192
  in t = Const("False",HOLogic.boolT) end;
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   193
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   194
fun is_nat(t) = fastype_of1 t = HOLogic.natT;
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   195
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   196
fun mk_nat_thm sg t =
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   197
  let val ct = cterm_of sg t  and cn = cterm_of sg (Var(("n",0),HOLogic.natT))
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   198
  in instantiate ([],[(cn,ct)]) le0 end;
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   199
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   200
end;
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   201
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   202
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   203
(* arith theory data *)
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   204
9593
b732997cfc11 tuned names;
wenzelm
parents: 9436
diff changeset
   205
structure ArithTheoryDataArgs =
9436
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   206
struct
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   207
  val name = "HOL/arith";
15185
8c43ffe2bb32 tuned "discrete" field
nipkow
parents: 15184
diff changeset
   208
  type T = {splits: thm list, inj_consts: (string * typ)list, discrete: string  list, presburger: (int -> tactic) option};
9436
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   209
13877
a6b825ee48d9 Added hook for presburger arithmetic decision procedure.
berghofe
parents: 13517
diff changeset
   210
  val empty = {splits = [], inj_consts = [], discrete = [], presburger = None};
9436
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   211
  val copy = I;
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   212
  val prep_ext = I;
13877
a6b825ee48d9 Added hook for presburger arithmetic decision procedure.
berghofe
parents: 13517
diff changeset
   213
  fun merge ({splits= splits1, inj_consts= inj_consts1, discrete= discrete1, presburger= presburger1},
a6b825ee48d9 Added hook for presburger arithmetic decision procedure.
berghofe
parents: 13517
diff changeset
   214
             {splits= splits2, inj_consts= inj_consts2, discrete= discrete2, presburger= presburger2}) =
9436
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   215
   {splits = Drule.merge_rules (splits1, splits2),
10574
8f98f0301d67 Linear arithmetic now copes with mixed nat/int formulae.
nipkow
parents: 10516
diff changeset
   216
    inj_consts = merge_lists inj_consts1 inj_consts2,
15185
8c43ffe2bb32 tuned "discrete" field
nipkow
parents: 15184
diff changeset
   217
    discrete = merge_lists discrete1 discrete2,
13877
a6b825ee48d9 Added hook for presburger arithmetic decision procedure.
berghofe
parents: 13517
diff changeset
   218
    presburger = (case presburger1 of None => presburger2 | p => p)};
9436
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   219
  fun print _ _ = ();
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   220
end;
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   221
9593
b732997cfc11 tuned names;
wenzelm
parents: 9436
diff changeset
   222
structure ArithTheoryData = TheoryDataFun(ArithTheoryDataArgs);
9436
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   223
13877
a6b825ee48d9 Added hook for presburger arithmetic decision procedure.
berghofe
parents: 13517
diff changeset
   224
fun arith_split_add (thy, thm) = (ArithTheoryData.map (fn {splits,inj_consts,discrete,presburger} =>
a6b825ee48d9 Added hook for presburger arithmetic decision procedure.
berghofe
parents: 13517
diff changeset
   225
  {splits= thm::splits, inj_consts= inj_consts, discrete= discrete, presburger= presburger}) thy, thm);
9436
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   226
13877
a6b825ee48d9 Added hook for presburger arithmetic decision procedure.
berghofe
parents: 13517
diff changeset
   227
fun arith_discrete d = ArithTheoryData.map (fn {splits,inj_consts,discrete,presburger} =>
a6b825ee48d9 Added hook for presburger arithmetic decision procedure.
berghofe
parents: 13517
diff changeset
   228
  {splits = splits, inj_consts = inj_consts, discrete = d :: discrete, presburger= presburger});
10574
8f98f0301d67 Linear arithmetic now copes with mixed nat/int formulae.
nipkow
parents: 10516
diff changeset
   229
13877
a6b825ee48d9 Added hook for presburger arithmetic decision procedure.
berghofe
parents: 13517
diff changeset
   230
fun arith_inj_const c = ArithTheoryData.map (fn {splits,inj_consts,discrete,presburger} =>
a6b825ee48d9 Added hook for presburger arithmetic decision procedure.
berghofe
parents: 13517
diff changeset
   231
  {splits = splits, inj_consts = c :: inj_consts, discrete = discrete, presburger = presburger});
9436
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   232
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   233
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   234
structure LA_Data_Ref: LIN_ARITH_DATA =
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   235
struct
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   236
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   237
(* Decomposition of terms *)
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   238
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   239
fun nT (Type("fun",[N,_])) = N = HOLogic.natT
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   240
  | nT _ = false;
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   241
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   242
fun add_atom(t,m,(p,i)) = (case assoc(p,t) of None => ((t,m)::p,i)
10693
9e4a0e84d0d6 moved mk_bin from Numerals to HOLogic
nipkow
parents: 10574
diff changeset
   243
                           | Some n => (overwrite(p,(t,ratadd(n,m))), i));
9e4a0e84d0d6 moved mk_bin from Numerals to HOLogic
nipkow
parents: 10574
diff changeset
   244
9e4a0e84d0d6 moved mk_bin from Numerals to HOLogic
nipkow
parents: 10574
diff changeset
   245
exception Zero;
9436
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   246
10693
9e4a0e84d0d6 moved mk_bin from Numerals to HOLogic
nipkow
parents: 10574
diff changeset
   247
fun rat_of_term(numt,dent) =
9e4a0e84d0d6 moved mk_bin from Numerals to HOLogic
nipkow
parents: 10574
diff changeset
   248
  let val num = HOLogic.dest_binum numt and den = HOLogic.dest_binum dent
9e4a0e84d0d6 moved mk_bin from Numerals to HOLogic
nipkow
parents: 10574
diff changeset
   249
  in if den = 0 then raise Zero else int_ratdiv(num,den) end;
10718
c058f78c3544 rational arithmetic
nipkow
parents: 10693
diff changeset
   250
c058f78c3544 rational arithmetic
nipkow
parents: 10693
diff changeset
   251
(* Warning: in rare cases number_of encloses a non-numeral,
c058f78c3544 rational arithmetic
nipkow
parents: 10693
diff changeset
   252
   in which case dest_binum raises TERM; hence all the handles below.
11334
a16eaf2a1edd Allow Suc-numerals as coefficients in lin-arith formulae
nipkow
parents: 10906
diff changeset
   253
   Same for Suc-terms that turn out not to be numerals -
a16eaf2a1edd Allow Suc-numerals as coefficients in lin-arith formulae
nipkow
parents: 10906
diff changeset
   254
   although the simplifier should eliminate those anyway...
10718
c058f78c3544 rational arithmetic
nipkow
parents: 10693
diff changeset
   255
*)
c058f78c3544 rational arithmetic
nipkow
parents: 10693
diff changeset
   256
11334
a16eaf2a1edd Allow Suc-numerals as coefficients in lin-arith formulae
nipkow
parents: 10906
diff changeset
   257
fun number_of_Sucs (Const("Suc",_) $ n) = number_of_Sucs n + 1
a16eaf2a1edd Allow Suc-numerals as coefficients in lin-arith formulae
nipkow
parents: 10906
diff changeset
   258
  | number_of_Sucs t = if HOLogic.is_zero t then 0
a16eaf2a1edd Allow Suc-numerals as coefficients in lin-arith formulae
nipkow
parents: 10906
diff changeset
   259
                       else raise TERM("number_of_Sucs",[])
a16eaf2a1edd Allow Suc-numerals as coefficients in lin-arith formulae
nipkow
parents: 10906
diff changeset
   260
10718
c058f78c3544 rational arithmetic
nipkow
parents: 10693
diff changeset
   261
(* decompose nested multiplications, bracketing them to the right and combining all
c058f78c3544 rational arithmetic
nipkow
parents: 10693
diff changeset
   262
   their coefficients
c058f78c3544 rational arithmetic
nipkow
parents: 10693
diff changeset
   263
*)
c058f78c3544 rational arithmetic
nipkow
parents: 10693
diff changeset
   264
13499
f95f5818f24f Counter example generation mods.
nipkow
parents: 13462
diff changeset
   265
fun demult inj_consts =
f95f5818f24f Counter example generation mods.
nipkow
parents: 13462
diff changeset
   266
let
10718
c058f78c3544 rational arithmetic
nipkow
parents: 10693
diff changeset
   267
fun demult((mC as Const("op *",_)) $ s $ t,m) = ((case s of
c058f78c3544 rational arithmetic
nipkow
parents: 10693
diff changeset
   268
        Const("Numeral.number_of",_)$n
c058f78c3544 rational arithmetic
nipkow
parents: 10693
diff changeset
   269
        => demult(t,ratmul(m,rat_of_int(HOLogic.dest_binum n)))
12480
32e67277a4b9 tuned conversion from terms to "polynomials" for arith_tac: takes care
nipkow
parents: 12338
diff changeset
   270
      | Const("uminus",_)$(Const("Numeral.number_of",_)$n)
32e67277a4b9 tuned conversion from terms to "polynomials" for arith_tac: takes care
nipkow
parents: 12338
diff changeset
   271
        => demult(t,ratmul(m,rat_of_int(~(HOLogic.dest_binum n))))
11334
a16eaf2a1edd Allow Suc-numerals as coefficients in lin-arith formulae
nipkow
parents: 10906
diff changeset
   272
      | Const("Suc",_) $ _
a16eaf2a1edd Allow Suc-numerals as coefficients in lin-arith formulae
nipkow
parents: 10906
diff changeset
   273
        => demult(t,ratmul(m,rat_of_int(number_of_Sucs s)))
10718
c058f78c3544 rational arithmetic
nipkow
parents: 10693
diff changeset
   274
      | Const("op *",_) $ s1 $ s2 => demult(mC $ s1 $ (mC $ s2 $ t),m)
c058f78c3544 rational arithmetic
nipkow
parents: 10693
diff changeset
   275
      | Const("HOL.divide",_) $ numt $ (Const("Numeral.number_of",_)$dent) =>
c058f78c3544 rational arithmetic
nipkow
parents: 10693
diff changeset
   276
          let val den = HOLogic.dest_binum dent
c058f78c3544 rational arithmetic
nipkow
parents: 10693
diff changeset
   277
          in if den = 0 then raise Zero
c058f78c3544 rational arithmetic
nipkow
parents: 10693
diff changeset
   278
             else demult(mC $ numt $ t,ratmul(m, ratinv(rat_of_int den)))
c058f78c3544 rational arithmetic
nipkow
parents: 10693
diff changeset
   279
          end
c058f78c3544 rational arithmetic
nipkow
parents: 10693
diff changeset
   280
      | _ => atomult(mC,s,t,m)
c058f78c3544 rational arithmetic
nipkow
parents: 10693
diff changeset
   281
      ) handle TERM _ => atomult(mC,s,t,m))
c058f78c3544 rational arithmetic
nipkow
parents: 10693
diff changeset
   282
  | demult(atom as Const("HOL.divide",_) $ t $ (Const("Numeral.number_of",_)$dent), m) =
c058f78c3544 rational arithmetic
nipkow
parents: 10693
diff changeset
   283
      (let val den = HOLogic.dest_binum dent
c058f78c3544 rational arithmetic
nipkow
parents: 10693
diff changeset
   284
       in if den = 0 then raise Zero else demult(t,ratmul(m, ratinv(rat_of_int den))) end
c058f78c3544 rational arithmetic
nipkow
parents: 10693
diff changeset
   285
       handle TERM _ => (Some atom,m))
14356
9e3ce012f843 fixed old bugs in "decomp" (conversion from term to lin.arith. format).
nipkow
parents: 14331
diff changeset
   286
  | demult(Const("0",_),m) = (None, rat_of_int 0)
9e3ce012f843 fixed old bugs in "decomp" (conversion from term to lin.arith. format).
nipkow
parents: 14331
diff changeset
   287
  | demult(Const("1",_),m) = (None, m)
10718
c058f78c3544 rational arithmetic
nipkow
parents: 10693
diff changeset
   288
  | demult(t as Const("Numeral.number_of",_)$n,m) =
c058f78c3544 rational arithmetic
nipkow
parents: 10693
diff changeset
   289
      ((None,ratmul(m,rat_of_int(HOLogic.dest_binum n)))
c058f78c3544 rational arithmetic
nipkow
parents: 10693
diff changeset
   290
       handle TERM _ => (Some t,m))
12480
32e67277a4b9 tuned conversion from terms to "polynomials" for arith_tac: takes care
nipkow
parents: 12338
diff changeset
   291
  | demult(Const("uminus",_)$t, m) = demult(t,ratmul(m,rat_of_int(~1)))
13499
f95f5818f24f Counter example generation mods.
nipkow
parents: 13462
diff changeset
   292
  | demult(t as Const f $ x, m) =
f95f5818f24f Counter example generation mods.
nipkow
parents: 13462
diff changeset
   293
      (if f mem inj_consts then Some x else Some t,m)
10718
c058f78c3544 rational arithmetic
nipkow
parents: 10693
diff changeset
   294
  | demult(atom,m) = (Some atom,m)
c058f78c3544 rational arithmetic
nipkow
parents: 10693
diff changeset
   295
c058f78c3544 rational arithmetic
nipkow
parents: 10693
diff changeset
   296
and atomult(mC,atom,t,m) = (case demult(t,m) of (None,m') => (Some atom,m')
c058f78c3544 rational arithmetic
nipkow
parents: 10693
diff changeset
   297
                            | (Some t',m') => (Some(mC $ atom $ t'),m'))
13499
f95f5818f24f Counter example generation mods.
nipkow
parents: 13462
diff changeset
   298
in demult end;
10718
c058f78c3544 rational arithmetic
nipkow
parents: 10693
diff changeset
   299
10574
8f98f0301d67 Linear arithmetic now copes with mixed nat/int formulae.
nipkow
parents: 10516
diff changeset
   300
fun decomp2 inj_consts (rel,lhs,rhs) =
8f98f0301d67 Linear arithmetic now copes with mixed nat/int formulae.
nipkow
parents: 10516
diff changeset
   301
let
9436
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   302
(* Turn term into list of summand * multiplicity plus a constant *)
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   303
fun poly(Const("op +",_) $ s $ t, m, pi) = poly(s,m,poly(t,m,pi))
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   304
  | poly(all as Const("op -",T) $ s $ t, m, pi) =
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   305
      if nT T then add_atom(all,m,pi)
10693
9e4a0e84d0d6 moved mk_bin from Numerals to HOLogic
nipkow
parents: 10574
diff changeset
   306
      else poly(s,m,poly(t,ratneg m,pi))
9e4a0e84d0d6 moved mk_bin from Numerals to HOLogic
nipkow
parents: 10574
diff changeset
   307
  | poly(Const("uminus",_) $ t, m, pi) = poly(t,ratneg m,pi)
9436
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   308
  | poly(Const("0",_), _, pi) = pi
11464
ddea204de5bc turned translation for 1::nat into def.
nipkow
parents: 11334
diff changeset
   309
  | poly(Const("1",_), m, (p,i)) = (p,ratadd(i,m))
10693
9e4a0e84d0d6 moved mk_bin from Numerals to HOLogic
nipkow
parents: 10574
diff changeset
   310
  | poly(Const("Suc",_)$t, m, (p,i)) = poly(t, m, (p,ratadd(i,m)))
10718
c058f78c3544 rational arithmetic
nipkow
parents: 10693
diff changeset
   311
  | poly(t as Const("op *",_) $ _ $ _, m, pi as (p,i)) =
13499
f95f5818f24f Counter example generation mods.
nipkow
parents: 13462
diff changeset
   312
      (case demult inj_consts (t,m) of
10718
c058f78c3544 rational arithmetic
nipkow
parents: 10693
diff changeset
   313
         (None,m') => (p,ratadd(i,m))
c058f78c3544 rational arithmetic
nipkow
parents: 10693
diff changeset
   314
       | (Some u,m') => add_atom(u,m',pi))
c058f78c3544 rational arithmetic
nipkow
parents: 10693
diff changeset
   315
  | poly(t as Const("HOL.divide",_) $ _ $ _, m, pi as (p,i)) =
13499
f95f5818f24f Counter example generation mods.
nipkow
parents: 13462
diff changeset
   316
      (case demult inj_consts (t,m) of
14356
9e3ce012f843 fixed old bugs in "decomp" (conversion from term to lin.arith. format).
nipkow
parents: 14331
diff changeset
   317
         (None,m') => (p,ratadd(i,m'))
10718
c058f78c3544 rational arithmetic
nipkow
parents: 10693
diff changeset
   318
       | (Some u,m') => add_atom(u,m',pi))
c058f78c3544 rational arithmetic
nipkow
parents: 10693
diff changeset
   319
  | poly(all as (Const("Numeral.number_of",_)$t,m,(p,i))) =
c058f78c3544 rational arithmetic
nipkow
parents: 10693
diff changeset
   320
      ((p,ratadd(i,ratmul(m,rat_of_int(HOLogic.dest_binum t))))
c058f78c3544 rational arithmetic
nipkow
parents: 10693
diff changeset
   321
       handle TERM _ => add_atom all)
10574
8f98f0301d67 Linear arithmetic now copes with mixed nat/int formulae.
nipkow
parents: 10516
diff changeset
   322
  | poly(all as Const f $ x, m, pi) =
8f98f0301d67 Linear arithmetic now copes with mixed nat/int formulae.
nipkow
parents: 10516
diff changeset
   323
      if f mem inj_consts then poly(x,m,pi) else add_atom(all,m,pi)
9436
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   324
  | poly x  = add_atom x;
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   325
10718
c058f78c3544 rational arithmetic
nipkow
parents: 10693
diff changeset
   326
val (p,i) = poly(lhs,rat_of_int 1,([],rat_of_int 0))
c058f78c3544 rational arithmetic
nipkow
parents: 10693
diff changeset
   327
and (q,j) = poly(rhs,rat_of_int 1,([],rat_of_int 0))
10693
9e4a0e84d0d6 moved mk_bin from Numerals to HOLogic
nipkow
parents: 10574
diff changeset
   328
9436
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   329
  in case rel of
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   330
       "op <"  => Some(p,i,"<",q,j)
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   331
     | "op <=" => Some(p,i,"<=",q,j)
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   332
     | "op ="  => Some(p,i,"=",q,j)
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   333
     | _       => None
10693
9e4a0e84d0d6 moved mk_bin from Numerals to HOLogic
nipkow
parents: 10574
diff changeset
   334
  end handle Zero => None;
9436
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   335
14509
9d8978a2ae56 got rid of ignore_neq again.
nipkow
parents: 14507
diff changeset
   336
fun negate(Some(x,i,rel,y,j,d)) = Some(x,i,"~"^rel,y,j,d)
9436
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   337
  | negate None = None;
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   338
15121
1198032bad25 Initial changes to extend arithmetic from individual types to type classes.
nipkow
parents: 14738
diff changeset
   339
fun of_lin_arith_sort sg U =
1198032bad25 Initial changes to extend arithmetic from individual types to type classes.
nipkow
parents: 14738
diff changeset
   340
  Type.of_sort (Sign.tsig_of sg) (U,["Ring_and_Field.ordered_idom"])
1198032bad25 Initial changes to extend arithmetic from individual types to type classes.
nipkow
parents: 14738
diff changeset
   341
1198032bad25 Initial changes to extend arithmetic from individual types to type classes.
nipkow
parents: 14738
diff changeset
   342
fun allows_lin_arith sg discrete (U as Type(D,[])) =
1198032bad25 Initial changes to extend arithmetic from individual types to type classes.
nipkow
parents: 14738
diff changeset
   343
      if of_lin_arith_sort sg U
15185
8c43ffe2bb32 tuned "discrete" field
nipkow
parents: 15184
diff changeset
   344
      then (true, D mem discrete)
15121
1198032bad25 Initial changes to extend arithmetic from individual types to type classes.
nipkow
parents: 14738
diff changeset
   345
      else (* special cases *)
15185
8c43ffe2bb32 tuned "discrete" field
nipkow
parents: 15184
diff changeset
   346
           if D mem discrete then (true,true) else (false,false)
15121
1198032bad25 Initial changes to extend arithmetic from individual types to type classes.
nipkow
parents: 14738
diff changeset
   347
  | allows_lin_arith sg discrete U = (of_lin_arith_sort sg U, false);
1198032bad25 Initial changes to extend arithmetic from individual types to type classes.
nipkow
parents: 14738
diff changeset
   348
1198032bad25 Initial changes to extend arithmetic from individual types to type classes.
nipkow
parents: 14738
diff changeset
   349
fun decomp1 (sg,discrete,inj_consts) (T,xxx) =
9436
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   350
  (case T of
15121
1198032bad25 Initial changes to extend arithmetic from individual types to type classes.
nipkow
parents: 14738
diff changeset
   351
     Type("fun",[U,_]) =>
1198032bad25 Initial changes to extend arithmetic from individual types to type classes.
nipkow
parents: 14738
diff changeset
   352
       (case allows_lin_arith sg discrete U of
1198032bad25 Initial changes to extend arithmetic from individual types to type classes.
nipkow
parents: 14738
diff changeset
   353
          (true,d) => (case decomp2 inj_consts xxx of None => None
1198032bad25 Initial changes to extend arithmetic from individual types to type classes.
nipkow
parents: 14738
diff changeset
   354
                       | Some(p,i,rel,q,j) => Some(p,i,rel,q,j,d))
1198032bad25 Initial changes to extend arithmetic from individual types to type classes.
nipkow
parents: 14738
diff changeset
   355
        | (false,_) => None)
9436
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   356
   | _ => None);
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   357
10574
8f98f0301d67 Linear arithmetic now copes with mixed nat/int formulae.
nipkow
parents: 10516
diff changeset
   358
fun decomp2 data (_$(Const(rel,T)$lhs$rhs)) = decomp1 data (T,(rel,lhs,rhs))
8f98f0301d67 Linear arithmetic now copes with mixed nat/int formulae.
nipkow
parents: 10516
diff changeset
   359
  | decomp2 data (_$(Const("Not",_)$(Const(rel,T)$lhs$rhs))) =
8f98f0301d67 Linear arithmetic now copes with mixed nat/int formulae.
nipkow
parents: 10516
diff changeset
   360
      negate(decomp1 data (T,(rel,lhs,rhs)))
8f98f0301d67 Linear arithmetic now copes with mixed nat/int formulae.
nipkow
parents: 10516
diff changeset
   361
  | decomp2 data _ = None
9436
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   362
10574
8f98f0301d67 Linear arithmetic now copes with mixed nat/int formulae.
nipkow
parents: 10516
diff changeset
   363
fun decomp sg =
8f98f0301d67 Linear arithmetic now copes with mixed nat/int formulae.
nipkow
parents: 10516
diff changeset
   364
  let val {discrete, inj_consts, ...} = ArithTheoryData.get_sg sg
15121
1198032bad25 Initial changes to extend arithmetic from individual types to type classes.
nipkow
parents: 14738
diff changeset
   365
  in decomp2 (sg,discrete,inj_consts) end
9436
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   366
10693
9e4a0e84d0d6 moved mk_bin from Numerals to HOLogic
nipkow
parents: 10574
diff changeset
   367
fun number_of(n,T) = HOLogic.number_of_const T $ (HOLogic.mk_bin n)
9e4a0e84d0d6 moved mk_bin from Numerals to HOLogic
nipkow
parents: 10574
diff changeset
   368
9436
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   369
end;
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   370
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   371
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   372
structure Fast_Arith =
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   373
  Fast_Lin_Arith(structure LA_Logic=LA_Logic and LA_Data=LA_Data_Ref);
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   374
13499
f95f5818f24f Counter example generation mods.
nipkow
parents: 13462
diff changeset
   375
val fast_arith_tac    = Fast_Arith.lin_arith_tac false
f95f5818f24f Counter example generation mods.
nipkow
parents: 13462
diff changeset
   376
and fast_ex_arith_tac = Fast_Arith.lin_arith_tac
14517
7ae3b247c6e9 exposed fast_arith_neq_limit
nipkow
parents: 14509
diff changeset
   377
and trace_arith    = Fast_Arith.trace
7ae3b247c6e9 exposed fast_arith_neq_limit
nipkow
parents: 14509
diff changeset
   378
and fast_arith_neq_limit = Fast_Arith.fast_arith_neq_limit;
9436
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   379
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   380
local
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   381
13902
b41fc9a31975 added isolate_Suc to counteract deficiencies in one of Larry's simprocs.
nipkow
parents: 13877
diff changeset
   382
val isolateSuc =
b41fc9a31975 added isolate_Suc to counteract deficiencies in one of Larry's simprocs.
nipkow
parents: 13877
diff changeset
   383
  let val thy = theory "Nat"
b41fc9a31975 added isolate_Suc to counteract deficiencies in one of Larry's simprocs.
nipkow
parents: 13877
diff changeset
   384
  in prove_goal thy "Suc(i+j) = i+j + Suc 0"
b41fc9a31975 added isolate_Suc to counteract deficiencies in one of Larry's simprocs.
nipkow
parents: 13877
diff changeset
   385
     (fn _ => [simp_tac (simpset_of thy) 1])
b41fc9a31975 added isolate_Suc to counteract deficiencies in one of Larry's simprocs.
nipkow
parents: 13877
diff changeset
   386
  end;
b41fc9a31975 added isolate_Suc to counteract deficiencies in one of Larry's simprocs.
nipkow
parents: 13877
diff changeset
   387
9436
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   388
(* reduce contradictory <= to False.
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   389
   Most of the work is done by the cancel tactics.
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   390
*)
12931
2c0251fada94 solved the problem that Larry's simproce cancle_numerals(?) returns
nipkow
parents: 12480
diff changeset
   391
val add_rules =
14368
2763da611ad9 converted Real/Lubs to Isar script. Converting arithmetic setup
paulson
parents: 14356
diff changeset
   392
 [add_zero_left,add_zero_right,Zero_not_Suc,Suc_not_Zero,le_0_eq,
15184
d2c19aea17bc made mult_mono_thms generic.
nipkow
parents: 15121
diff changeset
   393
  One_nat_def,isolateSuc,
d2c19aea17bc made mult_mono_thms generic.
nipkow
parents: 15121
diff changeset
   394
  order_less_irrefl];
9436
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   395
14368
2763da611ad9 converted Real/Lubs to Isar script. Converting arithmetic setup
paulson
parents: 14356
diff changeset
   396
val add_mono_thms_ordered_semiring = map (fn s => prove_goal (the_context ()) s
9436
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   397
 (fn prems => [cut_facts_tac prems 1,
14368
2763da611ad9 converted Real/Lubs to Isar script. Converting arithmetic setup
paulson
parents: 14356
diff changeset
   398
               blast_tac (claset() addIs [add_mono]) 1]))
15121
1198032bad25 Initial changes to extend arithmetic from individual types to type classes.
nipkow
parents: 14738
diff changeset
   399
["(i <= j) & (k <= l) ==> i + k <= j + (l::'a::pordered_ab_semigroup_add)",
1198032bad25 Initial changes to extend arithmetic from individual types to type classes.
nipkow
parents: 14738
diff changeset
   400
 "(i  = j) & (k <= l) ==> i + k <= j + (l::'a::pordered_ab_semigroup_add)",
1198032bad25 Initial changes to extend arithmetic from individual types to type classes.
nipkow
parents: 14738
diff changeset
   401
 "(i <= j) & (k  = l) ==> i + k <= j + (l::'a::pordered_ab_semigroup_add)",
1198032bad25 Initial changes to extend arithmetic from individual types to type classes.
nipkow
parents: 14738
diff changeset
   402
 "(i  = j) & (k  = l) ==> i + k  = j + (l::'a::pordered_ab_semigroup_add)"
9436
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   403
];
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   404
15121
1198032bad25 Initial changes to extend arithmetic from individual types to type classes.
nipkow
parents: 14738
diff changeset
   405
val mono_ss = simpset() addsimps
1198032bad25 Initial changes to extend arithmetic from individual types to type classes.
nipkow
parents: 14738
diff changeset
   406
                [add_mono,add_strict_mono,add_less_le_mono,add_le_less_mono];
1198032bad25 Initial changes to extend arithmetic from individual types to type classes.
nipkow
parents: 14738
diff changeset
   407
1198032bad25 Initial changes to extend arithmetic from individual types to type classes.
nipkow
parents: 14738
diff changeset
   408
val add_mono_thms_ordered_field =
1198032bad25 Initial changes to extend arithmetic from individual types to type classes.
nipkow
parents: 14738
diff changeset
   409
  map (fn s => prove_goal (the_context ()) s
1198032bad25 Initial changes to extend arithmetic from individual types to type classes.
nipkow
parents: 14738
diff changeset
   410
                 (fn prems => [cut_facts_tac prems 1, asm_simp_tac mono_ss 1]))
1198032bad25 Initial changes to extend arithmetic from individual types to type classes.
nipkow
parents: 14738
diff changeset
   411
    ["(i<j) & (k=l)   ==> i+k < j+(l::'a::pordered_cancel_ab_semigroup_add)",
1198032bad25 Initial changes to extend arithmetic from individual types to type classes.
nipkow
parents: 14738
diff changeset
   412
     "(i=j) & (k<l)   ==> i+k < j+(l::'a::pordered_cancel_ab_semigroup_add)",
1198032bad25 Initial changes to extend arithmetic from individual types to type classes.
nipkow
parents: 14738
diff changeset
   413
     "(i<j) & (k<=l)  ==> i+k < j+(l::'a::pordered_cancel_ab_semigroup_add)",
1198032bad25 Initial changes to extend arithmetic from individual types to type classes.
nipkow
parents: 14738
diff changeset
   414
     "(i<=j) & (k<l)  ==> i+k < j+(l::'a::pordered_cancel_ab_semigroup_add)",
1198032bad25 Initial changes to extend arithmetic from individual types to type classes.
nipkow
parents: 14738
diff changeset
   415
     "(i<j) & (k<l)   ==> i+k < j+(l::'a::pordered_cancel_ab_semigroup_add)"];
1198032bad25 Initial changes to extend arithmetic from individual types to type classes.
nipkow
parents: 14738
diff changeset
   416
9436
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   417
in
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   418
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   419
val init_lin_arith_data =
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   420
 Fast_Arith.setup @
10693
9e4a0e84d0d6 moved mk_bin from Numerals to HOLogic
nipkow
parents: 10574
diff changeset
   421
 [Fast_Arith.map_data (fn {add_mono_thms, mult_mono_thms, inj_thms, lessD, simpset = _} =>
15121
1198032bad25 Initial changes to extend arithmetic from individual types to type classes.
nipkow
parents: 14738
diff changeset
   422
   {add_mono_thms = add_mono_thms @
1198032bad25 Initial changes to extend arithmetic from individual types to type classes.
nipkow
parents: 14738
diff changeset
   423
    add_mono_thms_ordered_semiring @ add_mono_thms_ordered_field,
10693
9e4a0e84d0d6 moved mk_bin from Numerals to HOLogic
nipkow
parents: 10574
diff changeset
   424
    mult_mono_thms = mult_mono_thms,
10574
8f98f0301d67 Linear arithmetic now copes with mixed nat/int formulae.
nipkow
parents: 10516
diff changeset
   425
    inj_thms = inj_thms,
9436
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   426
    lessD = lessD @ [Suc_leI],
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   427
    simpset = HOL_basic_ss addsimps add_rules addsimprocs nat_cancel_sums_add}),
15185
8c43ffe2bb32 tuned "discrete" field
nipkow
parents: 15184
diff changeset
   428
  ArithTheoryData.init, arith_discrete "nat"];
9436
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   429
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   430
end;
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   431
13462
56610e2ba220 sane interface for simprocs;
wenzelm
parents: 12949
diff changeset
   432
val fast_nat_arith_simproc =
56610e2ba220 sane interface for simprocs;
wenzelm
parents: 12949
diff changeset
   433
  Simplifier.simproc (Theory.sign_of (the_context ())) "fast_nat_arith"
56610e2ba220 sane interface for simprocs;
wenzelm
parents: 12949
diff changeset
   434
    ["(m::nat) < n","(m::nat) <= n", "(m::nat) = n"] Fast_Arith.lin_arith_prover;
9436
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   435
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   436
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   437
(* Because of fast_nat_arith_simproc, the arithmetic solver is really only
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   438
useful to detect inconsistencies among the premises for subgoals which are
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   439
*not* themselves (in)equalities, because the latter activate
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   440
fast_nat_arith_simproc anyway. However, it seems cheaper to activate the
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   441
solver all the time rather than add the additional check. *)
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   442
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   443
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   444
(* arith proof method *)
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   445
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   446
(* FIXME: K true should be replaced by a sensible test to speed things up
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   447
   in case there are lots of irrelevant terms involved;
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   448
   elimination of min/max can be optimized:
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   449
   (max m n + k <= r) = (m+k <= r & n+k <= r)
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   450
   (l <= min m n + k) = (l <= m+k & l <= n+k)
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   451
*)
10516
dc113303d101 arith_tac: atomize;
wenzelm
parents: 9893
diff changeset
   452
local
dc113303d101 arith_tac: atomize;
wenzelm
parents: 9893
diff changeset
   453
13499
f95f5818f24f Counter example generation mods.
nipkow
parents: 13462
diff changeset
   454
fun raw_arith_tac ex i st =
f95f5818f24f Counter example generation mods.
nipkow
parents: 13462
diff changeset
   455
  refute_tac (K true)
f95f5818f24f Counter example generation mods.
nipkow
parents: 13462
diff changeset
   456
   (REPEAT o split_tac (#splits (ArithTheoryData.get_sg (Thm.sign_of_thm st))))
14509
9d8978a2ae56 got rid of ignore_neq again.
nipkow
parents: 14507
diff changeset
   457
   ((REPEAT_DETERM o etac linorder_neqE) THEN' fast_ex_arith_tac ex)
9d8978a2ae56 got rid of ignore_neq again.
nipkow
parents: 14507
diff changeset
   458
   i st;
9436
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   459
13877
a6b825ee48d9 Added hook for presburger arithmetic decision procedure.
berghofe
parents: 13517
diff changeset
   460
fun presburger_tac i st =
a6b825ee48d9 Added hook for presburger arithmetic decision procedure.
berghofe
parents: 13517
diff changeset
   461
  (case ArithTheoryData.get_sg (sign_of_thm st) of
a6b825ee48d9 Added hook for presburger arithmetic decision procedure.
berghofe
parents: 13517
diff changeset
   462
     {presburger = Some tac, ...} =>
a6b825ee48d9 Added hook for presburger arithmetic decision procedure.
berghofe
parents: 13517
diff changeset
   463
       (tracing "Simple arithmetic decision procedure failed.\nNow trying full Presburger arithmetic..."; tac i st)
a6b825ee48d9 Added hook for presburger arithmetic decision procedure.
berghofe
parents: 13517
diff changeset
   464
   | _ => no_tac st);
a6b825ee48d9 Added hook for presburger arithmetic decision procedure.
berghofe
parents: 13517
diff changeset
   465
10516
dc113303d101 arith_tac: atomize;
wenzelm
parents: 9893
diff changeset
   466
in
dc113303d101 arith_tac: atomize;
wenzelm
parents: 9893
diff changeset
   467
13877
a6b825ee48d9 Added hook for presburger arithmetic decision procedure.
berghofe
parents: 13517
diff changeset
   468
val simple_arith_tac = FIRST' [fast_arith_tac,
a6b825ee48d9 Added hook for presburger arithmetic decision procedure.
berghofe
parents: 13517
diff changeset
   469
  ObjectLogic.atomize_tac THEN' raw_arith_tac true];
a6b825ee48d9 Added hook for presburger arithmetic decision procedure.
berghofe
parents: 13517
diff changeset
   470
a6b825ee48d9 Added hook for presburger arithmetic decision procedure.
berghofe
parents: 13517
diff changeset
   471
val arith_tac = FIRST' [fast_arith_tac,
a6b825ee48d9 Added hook for presburger arithmetic decision procedure.
berghofe
parents: 13517
diff changeset
   472
  ObjectLogic.atomize_tac THEN' raw_arith_tac true,
a6b825ee48d9 Added hook for presburger arithmetic decision procedure.
berghofe
parents: 13517
diff changeset
   473
  presburger_tac];
a6b825ee48d9 Added hook for presburger arithmetic decision procedure.
berghofe
parents: 13517
diff changeset
   474
a6b825ee48d9 Added hook for presburger arithmetic decision procedure.
berghofe
parents: 13517
diff changeset
   475
val silent_arith_tac = FIRST' [fast_arith_tac,
a6b825ee48d9 Added hook for presburger arithmetic decision procedure.
berghofe
parents: 13517
diff changeset
   476
  ObjectLogic.atomize_tac THEN' raw_arith_tac false,
a6b825ee48d9 Added hook for presburger arithmetic decision procedure.
berghofe
parents: 13517
diff changeset
   477
  presburger_tac];
10516
dc113303d101 arith_tac: atomize;
wenzelm
parents: 9893
diff changeset
   478
9436
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   479
fun arith_method prems =
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   480
  Method.METHOD (fn facts => HEADGOAL (Method.insert_tac (prems @ facts) THEN' arith_tac));
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   481
10516
dc113303d101 arith_tac: atomize;
wenzelm
parents: 9893
diff changeset
   482
end;
dc113303d101 arith_tac: atomize;
wenzelm
parents: 9893
diff changeset
   483
9436
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   484
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   485
(* theory setup *)
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   486
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   487
val arith_setup =
10766
ace2ba2d4fd1 removal of the nat_cancel_factor simproc
paulson
parents: 10718
diff changeset
   488
 [Simplifier.change_simpset_of (op addsimprocs) nat_cancel_sums] @
9436
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   489
  init_lin_arith_data @
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   490
  [Simplifier.change_simpset_of (op addSolver)
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   491
   (mk_solver "lin. arith." Fast_Arith.cut_lin_arith_tac),
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   492
  Simplifier.change_simpset_of (op addsimprocs) [fast_nat_arith_simproc],
11704
3c50a2cd6f00 * sane numerals (stage 2): plain "num" syntax (removed "#");
wenzelm
parents: 11701
diff changeset
   493
  Method.add_methods [("arith", (arith_method o #2) oo Method.syntax Args.bang_facts,
9436
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   494
    "decide linear arithmethic")],
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   495
  Attrib.add_attributes [("arith_split",
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents:
diff changeset
   496
    (Attrib.no_args arith_split_add, Attrib.no_args Attrib.undef_local_attribute),
9893
93d2fde0306c tuned msg;
wenzelm
parents: 9593
diff changeset
   497
    "declaration of split rules for arithmetic procedure")]];