| author | traytel | 
| Thu, 14 Apr 2016 20:29:42 +0200 | |
| changeset 63045 | c50c764aab10 | 
| parent 62342 | 1cf129590be8 | 
| child 63201 | f151704c08e4 | 
| permissions | -rw-r--r-- | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 1 | (* Title: HOL/Tools/lin_arith.ML | 
| 29288 | 2 | Author: Tjark Weber and Tobias Nipkow, TU Muenchen | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 3 | |
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 4 | HOL setup for linear arithmetic (see Provers/Arith/fast_lin_arith.ML). | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 5 | *) | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 6 | |
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 7 | signature LIN_ARITH = | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 8 | sig | 
| 51717 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 wenzelm parents: 
48560diff
changeset | 9 | val pre_tac: Proof.context -> int -> tactic | 
| 31101 
26c7bb764a38
qualified names for Lin_Arith tactics and simprocs
 haftmann parents: 
31100diff
changeset | 10 | val simple_tac: Proof.context -> int -> tactic | 
| 
26c7bb764a38
qualified names for Lin_Arith tactics and simprocs
 haftmann parents: 
31100diff
changeset | 11 | val tac: Proof.context -> int -> tactic | 
| 61144 | 12 | val simproc: Proof.context -> cterm -> thm option | 
| 31100 | 13 | val add_inj_thms: thm list -> Context.generic -> Context.generic | 
| 14 | val add_lessD: thm -> Context.generic -> Context.generic | |
| 15 | val add_simps: thm list -> Context.generic -> Context.generic | |
| 16 | val add_simprocs: simproc list -> Context.generic -> Context.generic | |
| 31082 | 17 | val add_inj_const: string * typ -> Context.generic -> Context.generic | 
| 31100 | 18 | val add_discrete_type: string -> Context.generic -> Context.generic | 
| 59996 | 19 | val set_number_of: (Proof.context -> typ -> int -> cterm) -> Context.generic -> Context.generic | 
| 31082 | 20 | val setup: Context.generic -> Context.generic | 
| 31100 | 21 | val global_setup: theory -> theory | 
| 31082 | 22 | val split_limit: int Config.T | 
| 23 | val neq_limit: int Config.T | |
| 44654 | 24 | val trace: bool Config.T | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 25 | end; | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 26 | |
| 30686 
47a32dd1b86e
moved generic arith_tac (formerly silent_arith_tac), verbose_arith_tac (formerly arith_tac) to Arith_Data; simple_arith-tac now named linear_arith_tac
 haftmann parents: 
30528diff
changeset | 27 | structure Lin_Arith: LIN_ARITH = | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 28 | struct | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 29 | |
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 30 | (* Parameters data for general linear arithmetic functor *) | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 31 | |
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 32 | structure LA_Logic: LIN_ARITH_LOGIC = | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 33 | struct | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 34 | |
| 55990 | 35 | val ccontr = @{thm ccontr};
 | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 36 | val conjI = conjI; | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 37 | val notI = notI; | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 38 | val sym = sym; | 
| 31510 
e0f2bb4b0021
fast_lin_arith uses proper multiplication instead of unfolding to additions
 boehmes parents: 
31101diff
changeset | 39 | val trueI = TrueI; | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 40 | val not_lessD = @{thm linorder_not_less} RS iffD1;
 | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 41 | val not_leD = @{thm linorder_not_le} RS iffD1;
 | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 42 | |
| 35410 | 43 | fun mk_Eq thm = thm RS @{thm Eq_FalseI} handle THM _ => thm RS @{thm Eq_TrueI};
 | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 44 | |
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 45 | val mk_Trueprop = HOLogic.mk_Trueprop; | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 46 | |
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 47 | fun atomize thm = case Thm.prop_of thm of | 
| 38795 
848be46708dc
formerly unnamed infix conjunction and disjunction now named HOL.conj and HOL.disj
 haftmann parents: 
38715diff
changeset | 48 |     Const (@{const_name Trueprop}, _) $ (Const (@{const_name HOL.conj}, _) $ _ $ _) =>
 | 
| 31100 | 49 | atomize (thm RS conjunct1) @ atomize (thm RS conjunct2) | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 50 | | _ => [thm]; | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 51 | |
| 38558 | 52 | fun neg_prop ((TP as Const(@{const_name Trueprop}, _)) $ (Const (@{const_name Not}, _) $ t)) = TP $ t
 | 
| 53 |   | neg_prop ((TP as Const(@{const_name Trueprop}, _)) $ t) = TP $ (HOLogic.Not $t)
 | |
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 54 |   | neg_prop t = raise TERM ("neg_prop", [t]);
 | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 55 | |
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 56 | fun is_False thm = | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 57 | let val _ $ t = Thm.prop_of thm | 
| 45740 | 58 |   in t = @{term False} end;
 | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 59 | |
| 30686 
47a32dd1b86e
moved generic arith_tac (formerly silent_arith_tac), verbose_arith_tac (formerly arith_tac) to Arith_Data; simple_arith-tac now named linear_arith_tac
 haftmann parents: 
30528diff
changeset | 60 | fun is_nat t = (fastype_of1 t = HOLogic.natT); | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 61 | |
| 31100 | 62 | fun mk_nat_thm thy t = | 
| 60642 
48dd1cefb4ae
simplified Thm.instantiate and derivatives: the LHS refers to non-certified variables -- this merely serves as index into already certified structures (or is ignored);
 wenzelm parents: 
60352diff
changeset | 63 | let val ct = Thm.global_cterm_of thy t | 
| 
48dd1cefb4ae
simplified Thm.instantiate and derivatives: the LHS refers to non-certified variables -- this merely serves as index into already certified structures (or is ignored);
 wenzelm parents: 
60352diff
changeset | 64 |   in Drule.instantiate_normalize ([], [((("n", 0), HOLogic.natT), ct)]) @{thm le0} end;
 | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 65 | |
| 43333 
2bdec7f430d3
renamed Drule.instantiate to Drule.instantiate_normalize to emphasize its meaning as opposed to plain Thm.instantiate;
 wenzelm parents: 
42616diff
changeset | 66 | end; | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 67 | |
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 68 | |
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 69 | (* arith context data *) | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 70 | |
| 33519 | 71 | structure Lin_Arith_Data = Generic_Data | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 72 | ( | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 73 |   type T = {splits: thm list,
 | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 74 | inj_consts: (string * typ) list, | 
| 30686 
47a32dd1b86e
moved generic arith_tac (formerly silent_arith_tac), verbose_arith_tac (formerly arith_tac) to Arith_Data; simple_arith-tac now named linear_arith_tac
 haftmann parents: 
30528diff
changeset | 75 | discrete: string list}; | 
| 
47a32dd1b86e
moved generic arith_tac (formerly silent_arith_tac), verbose_arith_tac (formerly arith_tac) to Arith_Data; simple_arith-tac now named linear_arith_tac
 haftmann parents: 
30528diff
changeset | 76 |   val empty = {splits = [], inj_consts = [], discrete = []};
 | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 77 | val extend = I; | 
| 33519 | 78 | fun merge | 
| 44946 | 79 |    ({splits = splits1, inj_consts = inj_consts1, discrete = discrete1},
 | 
| 80 |     {splits = splits2, inj_consts = inj_consts2, discrete = discrete2}) : T =
 | |
| 33520 | 81 |    {splits = Thm.merge_thms (splits1, splits2),
 | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 82 | inj_consts = Library.merge (op =) (inj_consts1, inj_consts2), | 
| 30686 
47a32dd1b86e
moved generic arith_tac (formerly silent_arith_tac), verbose_arith_tac (formerly arith_tac) to Arith_Data; simple_arith-tac now named linear_arith_tac
 haftmann parents: 
30528diff
changeset | 83 | discrete = Library.merge (op =) (discrete1, discrete2)}; | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 84 | ); | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 85 | |
| 31100 | 86 | val get_arith_data = Lin_Arith_Data.get o Context.Proof; | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 87 | |
| 31100 | 88 | fun add_split thm = Lin_Arith_Data.map (fn {splits, inj_consts, discrete} =>
 | 
| 89 |   {splits = update Thm.eq_thm_prop thm splits,
 | |
| 90 | inj_consts = inj_consts, discrete = discrete}); | |
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 91 | |
| 31100 | 92 | fun add_discrete_type d = Lin_Arith_Data.map (fn {splits, inj_consts, discrete} =>
 | 
| 30686 
47a32dd1b86e
moved generic arith_tac (formerly silent_arith_tac), verbose_arith_tac (formerly arith_tac) to Arith_Data; simple_arith-tac now named linear_arith_tac
 haftmann parents: 
30528diff
changeset | 93 |   {splits = splits, inj_consts = inj_consts,
 | 
| 
47a32dd1b86e
moved generic arith_tac (formerly silent_arith_tac), verbose_arith_tac (formerly arith_tac) to Arith_Data; simple_arith-tac now named linear_arith_tac
 haftmann parents: 
30528diff
changeset | 94 | discrete = update (op =) d discrete}); | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 95 | |
| 31100 | 96 | fun add_inj_const c = Lin_Arith_Data.map (fn {splits, inj_consts, discrete} =>
 | 
| 30686 
47a32dd1b86e
moved generic arith_tac (formerly silent_arith_tac), verbose_arith_tac (formerly arith_tac) to Arith_Data; simple_arith-tac now named linear_arith_tac
 haftmann parents: 
30528diff
changeset | 97 |   {splits = splits, inj_consts = update (op =) c inj_consts,
 | 
| 
47a32dd1b86e
moved generic arith_tac (formerly silent_arith_tac), verbose_arith_tac (formerly arith_tac) to Arith_Data; simple_arith-tac now named linear_arith_tac
 haftmann parents: 
30528diff
changeset | 98 | discrete = discrete}); | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 99 | |
| 42616 
92715b528e78
added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
 wenzelm parents: 
42439diff
changeset | 100 | val split_limit = Attrib.setup_config_int @{binding linarith_split_limit} (K 9);
 | 
| 
92715b528e78
added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
 wenzelm parents: 
42439diff
changeset | 101 | val neq_limit = Attrib.setup_config_int @{binding linarith_neq_limit} (K 9);
 | 
| 44654 | 102 | val trace = Attrib.setup_config_bool @{binding linarith_trace} (K false);
 | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 103 | |
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 104 | |
| 60349 
26700f36d6f1
tuned, including proper signature for functor argument
 haftmann parents: 
59996diff
changeset | 105 | structure LA_Data: LIN_ARITH_DATA = | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 106 | struct | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 107 | |
| 44654 | 108 | val neq_limit = neq_limit; | 
| 109 | val trace = trace; | |
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 110 | |
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 111 | |
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 112 | (* Decomposition of terms *) | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 113 | |
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 114 | (*internal representation of linear (in-)equations*) | 
| 26942 | 115 | type decomp = | 
| 24328 
83afe527504d
fixed a bug in demult: -a in (-a * b) is no longer treated as atomic
 webertj parents: 
24271diff
changeset | 116 | ((term * Rat.rat) list * Rat.rat * string * (term * Rat.rat) list * Rat.rat * bool); | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 117 | |
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 118 | fun nT (Type ("fun", [N, _])) = (N = HOLogic.natT)
 | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 119 | | nT _ = false; | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 120 | |
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 121 | fun add_atom (t : term) (m : Rat.rat) (p : (term * Rat.rat) list, i : Rat.rat) : | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 122 | (term * Rat.rat) list * Rat.rat = | 
| 52131 | 123 | case AList.lookup Envir.aeconv p t of | 
| 24328 
83afe527504d
fixed a bug in demult: -a in (-a * b) is no longer treated as atomic
 webertj parents: 
24271diff
changeset | 124 | NONE => ((t, m) :: p, i) | 
| 52131 | 125 | | SOME n => (AList.update Envir.aeconv (t, Rat.add n m) p, i); | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 126 | |
| 24328 
83afe527504d
fixed a bug in demult: -a in (-a * b) is no longer treated as atomic
 webertj parents: 
24271diff
changeset | 127 | (* decompose nested multiplications, bracketing them to the right and combining | 
| 
83afe527504d
fixed a bug in demult: -a in (-a * b) is no longer treated as atomic
 webertj parents: 
24271diff
changeset | 128 | all their coefficients | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 129 | |
| 24328 
83afe527504d
fixed a bug in demult: -a in (-a * b) is no longer treated as atomic
 webertj parents: 
24271diff
changeset | 130 | inj_consts: list of constants to be ignored when encountered | 
| 
83afe527504d
fixed a bug in demult: -a in (-a * b) is no longer treated as atomic
 webertj parents: 
24271diff
changeset | 131 | (e.g. arithmetic type conversions that preserve value) | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 132 | |
| 24328 
83afe527504d
fixed a bug in demult: -a in (-a * b) is no longer treated as atomic
 webertj parents: 
24271diff
changeset | 133 | m: multiplicity associated with the entire product | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 134 | |
| 24328 
83afe527504d
fixed a bug in demult: -a in (-a * b) is no longer treated as atomic
 webertj parents: 
24271diff
changeset | 135 | returns either (SOME term, associated multiplicity) or (NONE, constant) | 
| 
83afe527504d
fixed a bug in demult: -a in (-a * b) is no longer treated as atomic
 webertj parents: 
24271diff
changeset | 136 | *) | 
| 60351 
5cdf3903a302
explicit check for field sort, to anticipate situation where syntactic checking alone will not be sufficient any longer
 haftmann parents: 
60350diff
changeset | 137 | fun of_field_sort thy U = Sign.of_sort thy (U, @{sort inverse});
 | 
| 
5cdf3903a302
explicit check for field sort, to anticipate situation where syntactic checking alone will not be sufficient any longer
 haftmann parents: 
60350diff
changeset | 138 | |
| 
5cdf3903a302
explicit check for field sort, to anticipate situation where syntactic checking alone will not be sufficient any longer
 haftmann parents: 
60350diff
changeset | 139 | fun demult thy (inj_consts : (string * typ) list) : term * Rat.rat -> term option * Rat.rat = | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 140 | let | 
| 35267 
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
 haftmann parents: 
35092diff
changeset | 141 |   fun demult ((mC as Const (@{const_name Groups.times}, _)) $ s $ t, m) =
 | 
| 
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
 haftmann parents: 
35092diff
changeset | 142 |       (case s of Const (@{const_name Groups.times}, _) $ s1 $ s2 =>
 | 
| 24328 
83afe527504d
fixed a bug in demult: -a in (-a * b) is no longer treated as atomic
 webertj parents: 
24271diff
changeset | 143 | (* bracketing to the right: '(s1 * s2) * t' becomes 's1 * (s2 * t)' *) | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 144 | demult (mC $ s1 $ (mC $ s2 $ t), m) | 
| 24328 
83afe527504d
fixed a bug in demult: -a in (-a * b) is no longer treated as atomic
 webertj parents: 
24271diff
changeset | 145 | | _ => | 
| 
83afe527504d
fixed a bug in demult: -a in (-a * b) is no longer treated as atomic
 webertj parents: 
24271diff
changeset | 146 | (* product 's * t', where either factor can be 'NONE' *) | 
| 
83afe527504d
fixed a bug in demult: -a in (-a * b) is no longer treated as atomic
 webertj parents: 
24271diff
changeset | 147 | (case demult (s, m) of | 
| 
83afe527504d
fixed a bug in demult: -a in (-a * b) is no longer treated as atomic
 webertj parents: 
24271diff
changeset | 148 | (SOME s', m') => | 
| 
83afe527504d
fixed a bug in demult: -a in (-a * b) is no longer treated as atomic
 webertj parents: 
24271diff
changeset | 149 | (case demult (t, m') of | 
| 
83afe527504d
fixed a bug in demult: -a in (-a * b) is no longer treated as atomic
 webertj parents: 
24271diff
changeset | 150 | (SOME t', m'') => (SOME (mC $ s' $ t'), m'') | 
| 
83afe527504d
fixed a bug in demult: -a in (-a * b) is no longer treated as atomic
 webertj parents: 
24271diff
changeset | 151 | | (NONE, m'') => (SOME s', m'')) | 
| 
83afe527504d
fixed a bug in demult: -a in (-a * b) is no longer treated as atomic
 webertj parents: 
24271diff
changeset | 152 | | (NONE, m') => demult (t, m'))) | 
| 60352 
d46de31a50c4
separate class for division operator, with particular syntax added in more specific classes
 haftmann parents: 
60351diff
changeset | 153 |     | demult (atom as (mC as Const (@{const_name Rings.divide}, T)) $ s $ t, m) =
 | 
| 24328 
83afe527504d
fixed a bug in demult: -a in (-a * b) is no longer treated as atomic
 webertj parents: 
24271diff
changeset | 154 | (* FIXME: Shouldn't we simplify nested quotients, e.g. '(s/t)/u' could | 
| 
83afe527504d
fixed a bug in demult: -a in (-a * b) is no longer treated as atomic
 webertj parents: 
24271diff
changeset | 155 | become 's/(t*u)', and '(s*t)/u' could become 's*(t/u)' ? Note that | 
| 
83afe527504d
fixed a bug in demult: -a in (-a * b) is no longer treated as atomic
 webertj parents: 
24271diff
changeset | 156 | if we choose to do so here, the simpset used by arith must be able to | 
| 
83afe527504d
fixed a bug in demult: -a in (-a * b) is no longer treated as atomic
 webertj parents: 
24271diff
changeset | 157 | perform the same simplifications. *) | 
| 
83afe527504d
fixed a bug in demult: -a in (-a * b) is no longer treated as atomic
 webertj parents: 
24271diff
changeset | 158 | (* quotient 's / t', where the denominator t can be NONE *) | 
| 
83afe527504d
fixed a bug in demult: -a in (-a * b) is no longer treated as atomic
 webertj parents: 
24271diff
changeset | 159 | (* Note: will raise Rat.DIVZERO iff m' is Rat.zero *) | 
| 60351 
5cdf3903a302
explicit check for field sort, to anticipate situation where syntactic checking alone will not be sufficient any longer
 haftmann parents: 
60350diff
changeset | 160 | if of_field_sort thy (domain_type T) then | 
| 
5cdf3903a302
explicit check for field sort, to anticipate situation where syntactic checking alone will not be sufficient any longer
 haftmann parents: 
60350diff
changeset | 161 | let | 
| 
5cdf3903a302
explicit check for field sort, to anticipate situation where syntactic checking alone will not be sufficient any longer
 haftmann parents: 
60350diff
changeset | 162 | val (os',m') = demult (s, m); | 
| 55375 | 163 | val (ot',p) = demult (t, Rat.one) | 
| 60351 
5cdf3903a302
explicit check for field sort, to anticipate situation where syntactic checking alone will not be sufficient any longer
 haftmann parents: 
60350diff
changeset | 164 | in (case (os',ot') of | 
| 55375 | 165 | (SOME s', SOME t') => SOME (mC $ s' $ t') | 
| 166 | | (SOME s', NONE) => SOME s' | |
| 167 | | (NONE, SOME t') => | |
| 60349 
26700f36d6f1
tuned, including proper signature for functor argument
 haftmann parents: 
59996diff
changeset | 168 |                SOME (mC $ Const (@{const_name Groups.one}, domain_type (snd (dest_Const mC))) $ t')
 | 
| 55375 | 169 | | (NONE, NONE) => NONE, | 
| 170 | Rat.mult m' (Rat.inv p)) | |
| 60351 
5cdf3903a302
explicit check for field sort, to anticipate situation where syntactic checking alone will not be sufficient any longer
 haftmann parents: 
60350diff
changeset | 171 | end | 
| 
5cdf3903a302
explicit check for field sort, to anticipate situation where syntactic checking alone will not be sufficient any longer
 haftmann parents: 
60350diff
changeset | 172 | else (SOME atom, m) | 
| 24328 
83afe527504d
fixed a bug in demult: -a in (-a * b) is no longer treated as atomic
 webertj parents: 
24271diff
changeset | 173 | (* terms that evaluate to numeric constants *) | 
| 35267 
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
 haftmann parents: 
35092diff
changeset | 174 |     | demult (Const (@{const_name Groups.uminus}, _) $ t, m) = demult (t, Rat.neg m)
 | 
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46709diff
changeset | 175 |     | demult (Const (@{const_name Groups.zero}, _), _) = (NONE, Rat.zero)
 | 
| 35267 
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
 haftmann parents: 
35092diff
changeset | 176 |     | demult (Const (@{const_name Groups.one}, _), m) = (NONE, m)
 | 
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46709diff
changeset | 177 | (*Warning: in rare cases (neg_)numeral encloses a non-numeral, | 
| 62342 | 178 | in which case dest_numeral raises TERM; hence all the handles below. | 
| 24328 
83afe527504d
fixed a bug in demult: -a in (-a * b) is no longer treated as atomic
 webertj parents: 
24271diff
changeset | 179 | Same for Suc-terms that turn out not to be numerals - | 
| 
83afe527504d
fixed a bug in demult: -a in (-a * b) is no longer treated as atomic
 webertj parents: 
24271diff
changeset | 180 | although the simplifier should eliminate those anyway ...*) | 
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46709diff
changeset | 181 |     | demult (t as Const ("Num.numeral_class.numeral", _) $ n, m) =
 | 
| 62342 | 182 | ((NONE, Rat.mult m (Rat.rat_of_int (HOLogic.dest_numeral n))) | 
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46709diff
changeset | 183 | handle TERM _ => (SOME t, m)) | 
| 24328 
83afe527504d
fixed a bug in demult: -a in (-a * b) is no longer treated as atomic
 webertj parents: 
24271diff
changeset | 184 |     | demult (t as Const (@{const_name Suc}, _) $ _, m) =
 | 
| 
83afe527504d
fixed a bug in demult: -a in (-a * b) is no longer treated as atomic
 webertj parents: 
24271diff
changeset | 185 | ((NONE, Rat.mult m (Rat.rat_of_int (HOLogic.dest_nat t))) | 
| 
83afe527504d
fixed a bug in demult: -a in (-a * b) is no longer treated as atomic
 webertj parents: 
24271diff
changeset | 186 | handle TERM _ => (SOME t, m)) | 
| 
83afe527504d
fixed a bug in demult: -a in (-a * b) is no longer treated as atomic
 webertj parents: 
24271diff
changeset | 187 | (* injection constants are ignored *) | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 188 | | demult (t as Const f $ x, m) = | 
| 24328 
83afe527504d
fixed a bug in demult: -a in (-a * b) is no longer treated as atomic
 webertj parents: 
24271diff
changeset | 189 | if member (op =) inj_consts f then demult (x, m) else (SOME t, m) | 
| 
83afe527504d
fixed a bug in demult: -a in (-a * b) is no longer treated as atomic
 webertj parents: 
24271diff
changeset | 190 | (* everything else is considered atomic *) | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 191 | | demult (atom, m) = (SOME atom, m) | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 192 | in demult end; | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 193 | |
| 60351 
5cdf3903a302
explicit check for field sort, to anticipate situation where syntactic checking alone will not be sufficient any longer
 haftmann parents: 
60350diff
changeset | 194 | fun decomp0 thy (inj_consts : (string * typ) list) (rel : string, lhs : term, rhs : term) : | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 195 | ((term * Rat.rat) list * Rat.rat * string * (term * Rat.rat) list * Rat.rat) option = | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 196 | let | 
| 24328 
83afe527504d
fixed a bug in demult: -a in (-a * b) is no longer treated as atomic
 webertj parents: 
24271diff
changeset | 197 | (* Turns a term 'all' and associated multiplicity 'm' into a list 'p' of | 
| 
83afe527504d
fixed a bug in demult: -a in (-a * b) is no longer treated as atomic
 webertj parents: 
24271diff
changeset | 198 | summands and associated multiplicities, plus a constant 'i' (with implicit | 
| 
83afe527504d
fixed a bug in demult: -a in (-a * b) is no longer treated as atomic
 webertj parents: 
24271diff
changeset | 199 | multiplicity 1) *) | 
| 35267 
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
 haftmann parents: 
35092diff
changeset | 200 |   fun poly (Const (@{const_name Groups.plus}, _) $ s $ t,
 | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 201 | m : Rat.rat, pi : (term * Rat.rat) list * Rat.rat) = poly (s, m, poly (t, m, pi)) | 
| 35267 
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
 haftmann parents: 
35092diff
changeset | 202 |     | poly (all as Const (@{const_name Groups.minus}, T) $ s $ t, m, pi) =
 | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 203 | if nT T then add_atom all m pi else poly (s, m, poly (t, Rat.neg m, pi)) | 
| 35267 
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
 haftmann parents: 
35092diff
changeset | 204 |     | poly (all as Const (@{const_name Groups.uminus}, T) $ t, m, pi) =
 | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 205 | if nT T then add_atom all m pi else poly (t, Rat.neg m, pi) | 
| 35267 
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
 haftmann parents: 
35092diff
changeset | 206 |     | poly (Const (@{const_name Groups.zero}, _), _, pi) =
 | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 207 | pi | 
| 35267 
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
 haftmann parents: 
35092diff
changeset | 208 |     | poly (Const (@{const_name Groups.one}, _), m, (p, i)) =
 | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 209 | (p, Rat.add i m) | 
| 54489 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 210 |     | poly (all as Const ("Num.numeral_class.numeral", Type(_,[_,_])) $ t, m, pi as (p, i)) =
 | 
| 62342 | 211 | (let val k = HOLogic.dest_numeral t | 
| 54489 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 212 | in (p, Rat.add i (Rat.mult m (Rat.rat_of_int k))) end | 
| 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 213 | handle TERM _ => add_atom all m pi) | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 214 |     | poly (Const (@{const_name Suc}, _) $ t, m, (p, i)) =
 | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 215 | poly (t, m, (p, Rat.add i m)) | 
| 35267 
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
 haftmann parents: 
35092diff
changeset | 216 |     | poly (all as Const (@{const_name Groups.times}, _) $ _ $ _, m, pi as (p, i)) =
 | 
| 60351 
5cdf3903a302
explicit check for field sort, to anticipate situation where syntactic checking alone will not be sufficient any longer
 haftmann parents: 
60350diff
changeset | 217 | (case demult thy inj_consts (all, m) of | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 218 | (NONE, m') => (p, Rat.add i m') | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 219 | | (SOME u, m') => add_atom u m' pi) | 
| 60352 
d46de31a50c4
separate class for division operator, with particular syntax added in more specific classes
 haftmann parents: 
60351diff
changeset | 220 |     | poly (all as Const (@{const_name Rings.divide}, T) $ _ $ _, m, pi as (p, i)) =
 | 
| 60351 
5cdf3903a302
explicit check for field sort, to anticipate situation where syntactic checking alone will not be sufficient any longer
 haftmann parents: 
60350diff
changeset | 221 | if of_field_sort thy (domain_type T) then | 
| 
5cdf3903a302
explicit check for field sort, to anticipate situation where syntactic checking alone will not be sufficient any longer
 haftmann parents: 
60350diff
changeset | 222 | (case demult thy inj_consts (all, m) of | 
| 
5cdf3903a302
explicit check for field sort, to anticipate situation where syntactic checking alone will not be sufficient any longer
 haftmann parents: 
60350diff
changeset | 223 | (NONE, m') => (p, Rat.add i m') | 
| 
5cdf3903a302
explicit check for field sort, to anticipate situation where syntactic checking alone will not be sufficient any longer
 haftmann parents: 
60350diff
changeset | 224 | | (SOME u, m') => add_atom u m' pi) | 
| 
5cdf3903a302
explicit check for field sort, to anticipate situation where syntactic checking alone will not be sufficient any longer
 haftmann parents: 
60350diff
changeset | 225 | else add_atom all m pi | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 226 | | poly (all as Const f $ x, m, pi) = | 
| 36692 
54b64d4ad524
farewell to old-style mem infixes -- type inference in situations with mem_int and mem_string should provide enough information to resolve the type of (op =)
 haftmann parents: 
36001diff
changeset | 227 | if member (op =) inj_consts f then poly (x, m, pi) else add_atom all m pi | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 228 | | poly (all, m, pi) = | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 229 | add_atom all m pi | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 230 | val (p, i) = poly (lhs, Rat.one, ([], Rat.zero)) | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 231 | val (q, j) = poly (rhs, Rat.one, ([], Rat.zero)) | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 232 | in | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 233 | case rel of | 
| 35092 
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
 haftmann parents: 
35084diff
changeset | 234 |     @{const_name Orderings.less}    => SOME (p, i, "<", q, j)
 | 
| 
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
 haftmann parents: 
35084diff
changeset | 235 |   | @{const_name Orderings.less_eq} => SOME (p, i, "<=", q, j)
 | 
| 38864 
4abe644fcea5
formerly unnamed infix equality now named HOL.eq
 haftmann parents: 
38797diff
changeset | 236 |   | @{const_name HOL.eq}            => SOME (p, i, "=", q, j)
 | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 237 | | _ => NONE | 
| 24328 
83afe527504d
fixed a bug in demult: -a in (-a * b) is no longer treated as atomic
 webertj parents: 
24271diff
changeset | 238 | end handle Rat.DIVZERO => NONE; | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 239 | |
| 24271 | 240 | fun of_lin_arith_sort thy U = | 
| 35050 
9f841f20dca6
renamed OrderedGroup to Groups; split theory Ring_and_Field into Rings Fields
 haftmann parents: 
35028diff
changeset | 241 |   Sign.of_sort thy (U, @{sort Rings.linordered_idom});
 | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 242 | |
| 31101 
26c7bb764a38
qualified names for Lin_Arith tactics and simprocs
 haftmann parents: 
31100diff
changeset | 243 | fun allows_lin_arith thy (discrete : string list) (U as Type (D, [])) : bool * bool = | 
| 
26c7bb764a38
qualified names for Lin_Arith tactics and simprocs
 haftmann parents: 
31100diff
changeset | 244 | if of_lin_arith_sort thy U then (true, member (op =) discrete D) | 
| 
26c7bb764a38
qualified names for Lin_Arith tactics and simprocs
 haftmann parents: 
31100diff
changeset | 245 | else if member (op =) discrete D then (true, true) else (false, false) | 
| 
26c7bb764a38
qualified names for Lin_Arith tactics and simprocs
 haftmann parents: 
31100diff
changeset | 246 | | allows_lin_arith sg discrete U = (of_lin_arith_sort sg U, false); | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 247 | |
| 60351 
5cdf3903a302
explicit check for field sort, to anticipate situation where syntactic checking alone will not be sufficient any longer
 haftmann parents: 
60350diff
changeset | 248 | fun decomp_typecheck thy (discrete, inj_consts) (T : typ, xxx) : decomp option = | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 249 | case T of | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 250 |     Type ("fun", [U, _]) =>
 | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 251 | (case allows_lin_arith thy discrete U of | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 252 | (true, d) => | 
| 60351 
5cdf3903a302
explicit check for field sort, to anticipate situation where syntactic checking alone will not be sufficient any longer
 haftmann parents: 
60350diff
changeset | 253 | (case decomp0 thy inj_consts xxx of | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 254 | NONE => NONE | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 255 | | SOME (p, i, rel, q, j) => SOME (p, i, rel, q, j, d)) | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 256 | | (false, _) => | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 257 | NONE) | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 258 | | _ => NONE; | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 259 | |
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 260 | fun negate (SOME (x, i, rel, y, j, d)) = SOME (x, i, "~" ^ rel, y, j, d) | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 261 | | negate NONE = NONE; | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 262 | |
| 60351 
5cdf3903a302
explicit check for field sort, to anticipate situation where syntactic checking alone will not be sufficient any longer
 haftmann parents: 
60350diff
changeset | 263 | fun decomp_negation thy data | 
| 
5cdf3903a302
explicit check for field sort, to anticipate situation where syntactic checking alone will not be sufficient any longer
 haftmann parents: 
60350diff
changeset | 264 |       ((Const (@{const_name Trueprop}, _)) $ (Const (rel, T) $ lhs $ rhs)) : decomp option =
 | 
| 
5cdf3903a302
explicit check for field sort, to anticipate situation where syntactic checking alone will not be sufficient any longer
 haftmann parents: 
60350diff
changeset | 265 | decomp_typecheck thy data (T, (rel, lhs, rhs)) | 
| 
5cdf3903a302
explicit check for field sort, to anticipate situation where syntactic checking alone will not be sufficient any longer
 haftmann parents: 
60350diff
changeset | 266 | | decomp_negation thy data | 
| 
5cdf3903a302
explicit check for field sort, to anticipate situation where syntactic checking alone will not be sufficient any longer
 haftmann parents: 
60350diff
changeset | 267 |       ((Const (@{const_name Trueprop}, _)) $ (Const (@{const_name Not}, _) $ (Const (rel, T) $ lhs $ rhs))) =
 | 
| 
5cdf3903a302
explicit check for field sort, to anticipate situation where syntactic checking alone will not be sufficient any longer
 haftmann parents: 
60350diff
changeset | 268 | negate (decomp_typecheck thy data (T, (rel, lhs, rhs))) | 
| 
5cdf3903a302
explicit check for field sort, to anticipate situation where syntactic checking alone will not be sufficient any longer
 haftmann parents: 
60350diff
changeset | 269 | | decomp_negation thy data _ = | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 270 | NONE; | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 271 | |
| 26942 | 272 | fun decomp ctxt : term -> decomp option = | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 273 | let | 
| 42361 | 274 | val thy = Proof_Context.theory_of ctxt | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 275 |     val {discrete, inj_consts, ...} = get_arith_data ctxt
 | 
| 60351 
5cdf3903a302
explicit check for field sort, to anticipate situation where syntactic checking alone will not be sufficient any longer
 haftmann parents: 
60350diff
changeset | 276 | in decomp_negation thy (discrete, inj_consts) end; | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 277 | |
| 42439 
9efdd0af15ac
eliminated Display.string_of_thm_without_context;
 wenzelm parents: 
42361diff
changeset | 278 | fun domain_is_nat (_ $ (Const (_, T) $ _ $ _)) = nT T | 
| 38558 | 279 |   | domain_is_nat (_ $ (Const (@{const_name Not}, _) $ (Const (_, T) $ _ $ _))) = nT T
 | 
| 42439 
9efdd0af15ac
eliminated Display.string_of_thm_without_context;
 wenzelm parents: 
42361diff
changeset | 280 | | domain_is_nat _ = false; | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 281 | |
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 282 | |
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 283 | (*---------------------------------------------------------------------------*) | 
| 32369 | 284 | (* the following code performs splitting of certain constants (e.g., min, *) | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 285 | (* max) in a linear arithmetic problem; similar to what split_tac later does *) | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 286 | (* to the proof state *) | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 287 | (*---------------------------------------------------------------------------*) | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 288 | |
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 289 | (* checks if splitting with 'thm' is implemented *) | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 290 | |
| 42439 
9efdd0af15ac
eliminated Display.string_of_thm_without_context;
 wenzelm parents: 
42361diff
changeset | 291 | fun is_split_thm ctxt thm = | 
| 59582 | 292 | (case Thm.concl_of thm of _ $ (_ $ (_ $ lhs) $ _) => | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 293 | (* Trueprop $ ((op =) $ (?P $ lhs) $ rhs) *) | 
| 42439 
9efdd0af15ac
eliminated Display.string_of_thm_without_context;
 wenzelm parents: 
42361diff
changeset | 294 | (case head_of lhs of | 
| 
9efdd0af15ac
eliminated Display.string_of_thm_without_context;
 wenzelm parents: 
42361diff
changeset | 295 | Const (a, _) => | 
| 
9efdd0af15ac
eliminated Display.string_of_thm_without_context;
 wenzelm parents: 
42361diff
changeset | 296 | member (op =) | 
| 
9efdd0af15ac
eliminated Display.string_of_thm_without_context;
 wenzelm parents: 
42361diff
changeset | 297 |          [@{const_name Orderings.max},
 | 
| 
9efdd0af15ac
eliminated Display.string_of_thm_without_context;
 wenzelm parents: 
42361diff
changeset | 298 |           @{const_name Orderings.min},
 | 
| 
9efdd0af15ac
eliminated Display.string_of_thm_without_context;
 wenzelm parents: 
42361diff
changeset | 299 |           @{const_name Groups.abs},
 | 
| 
9efdd0af15ac
eliminated Display.string_of_thm_without_context;
 wenzelm parents: 
42361diff
changeset | 300 |           @{const_name Groups.minus},
 | 
| 
9efdd0af15ac
eliminated Display.string_of_thm_without_context;
 wenzelm parents: 
42361diff
changeset | 301 | "Int.nat" (*DYNAMIC BINDING!*), | 
| 
9efdd0af15ac
eliminated Display.string_of_thm_without_context;
 wenzelm parents: 
42361diff
changeset | 302 | "Divides.div_class.mod" (*DYNAMIC BINDING!*), | 
| 60352 
d46de31a50c4
separate class for division operator, with particular syntax added in more specific classes
 haftmann parents: 
60351diff
changeset | 303 |           @{const_name Rings.divide}] a
 | 
| 42439 
9efdd0af15ac
eliminated Display.string_of_thm_without_context;
 wenzelm parents: 
42361diff
changeset | 304 | | _ => | 
| 59352 
63c02d051661
tuned warnings: observe Context_Position.is_visible;
 wenzelm parents: 
59058diff
changeset | 305 | (if Context_Position.is_visible ctxt then | 
| 61268 | 306 |         warning ("Lin. Arith.: wrong format for split rule " ^ Thm.string_of_thm ctxt thm)
 | 
| 59352 
63c02d051661
tuned warnings: observe Context_Position.is_visible;
 wenzelm parents: 
59058diff
changeset | 307 | else (); false)) | 
| 42439 
9efdd0af15ac
eliminated Display.string_of_thm_without_context;
 wenzelm parents: 
42361diff
changeset | 308 | | _ => | 
| 59352 
63c02d051661
tuned warnings: observe Context_Position.is_visible;
 wenzelm parents: 
59058diff
changeset | 309 | (if Context_Position.is_visible ctxt then | 
| 61268 | 310 |       warning ("Lin. Arith.: wrong format for split rule " ^ Thm.string_of_thm ctxt thm)
 | 
| 59352 
63c02d051661
tuned warnings: observe Context_Position.is_visible;
 wenzelm parents: 
59058diff
changeset | 311 | else (); false)); | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 312 | |
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 313 | (* substitute new for occurrences of old in a term, incrementing bound *) | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 314 | (* variables as needed when substituting inside an abstraction *) | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 315 | |
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 316 | fun subst_term ([] : (term * term) list) (t : term) = t | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 317 | | subst_term pairs t = | 
| 52131 | 318 | (case AList.lookup Envir.aeconv pairs t of | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 319 | SOME new => | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 320 | new | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 321 | | NONE => | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 322 | (case t of Abs (a, T, body) => | 
| 59058 
a78612c67ec0
renamed "pairself" to "apply2", in accordance to @{apply 2};
 wenzelm parents: 
58956diff
changeset | 323 | let val pairs' = map (apply2 (incr_boundvars 1)) pairs | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 324 | in Abs (a, T, subst_term pairs' body) end | 
| 59058 
a78612c67ec0
renamed "pairself" to "apply2", in accordance to @{apply 2};
 wenzelm parents: 
58956diff
changeset | 325 | | t1 $ t2 => subst_term pairs t1 $ subst_term pairs t2 | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 326 | | _ => t)); | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 327 | |
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 328 | (* approximates the effect of one application of split_tac (followed by NNF *) | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 329 | (* normalization) on the subgoal represented by '(Ts, terms)'; returns a *) | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 330 | (* list of new subgoals (each again represented by a typ list for bound *) | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 331 | (* variables and a term list for premises), or NONE if split_tac would fail *) | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 332 | (* on the subgoal *) | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 333 | |
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 334 | (* FIXME: currently only the effect of certain split theorems is reproduced *) | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 335 | (* (which is why we need 'is_split_thm'). A more canonical *) | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 336 | (* implementation should analyze the right-hand side of the split *) | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 337 | (* theorem that can be applied, and modify the subgoal accordingly. *) | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 338 | (* Or even better, the splitter should be extended to provide *) | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 339 | (* splitting on terms as well as splitting on theorems (where the *) | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 340 | (* former can have a faster implementation as it does not need to be *) | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 341 | (* proof-producing). *) | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 342 | |
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 343 | fun split_once_items ctxt (Ts : typ list, terms : term list) : | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 344 | (typ list * term list) list option = | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 345 | let | 
| 42361 | 346 | val thy = Proof_Context.theory_of ctxt | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 347 | (* takes a list [t1, ..., tn] to the term *) | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 348 | (* tn' --> ... --> t1' --> False , *) | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 349 | (* where ti' = HOLogic.dest_Trueprop ti *) | 
| 32369 | 350 | fun REPEAT_DETERM_etac_rev_mp tms = | 
| 351 | fold (curry HOLogic.mk_imp) (map HOLogic.dest_Trueprop tms) | |
| 45740 | 352 |       @{term False}
 | 
| 42439 
9efdd0af15ac
eliminated Display.string_of_thm_without_context;
 wenzelm parents: 
42361diff
changeset | 353 | val split_thms = filter (is_split_thm ctxt) (#splits (get_arith_data ctxt)) | 
| 32369 | 354 | val cmap = Splitter.cmap_of_split_thms split_thms | 
| 355 | val goal_tm = REPEAT_DETERM_etac_rev_mp terms | |
| 356 | val splits = Splitter.split_posns cmap thy Ts goal_tm | |
| 31082 | 357 | val split_limit = Config.get ctxt split_limit | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 358 | in | 
| 32369 | 359 | if length splits > split_limit then ( | 
| 360 |     tracing ("linarith_split_limit exceeded (current value is " ^
 | |
| 361 | string_of_int split_limit ^ ")"); | |
| 362 | NONE | |
| 363 | ) else case splits of | |
| 364 | [] => | |
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 365 | (* split_tac would fail: no possible split *) | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 366 | NONE | 
| 32369 | 367 | | (_, _::_, _, _, _) :: _ => | 
| 368 | (* disallow a split that involves non-locally bound variables (except *) | |
| 369 | (* when bound by outermost meta-quantifiers) *) | |
| 370 | NONE | |
| 371 | | (_, [], _, split_type, split_term) :: _ => | |
| 372 | (* ignore all but the first possible split *) | |
| 373 | (case strip_comb split_term of | |
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 374 | (* ?P (max ?i ?j) = ((?i <= ?j --> ?P ?j) & (~ ?i <= ?j --> ?P ?i)) *) | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 375 |       (Const (@{const_name Orderings.max}, _), [t1, t2]) =>
 | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 376 | let | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 377 | val rev_terms = rev terms | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 378 | val terms1 = map (subst_term [(split_term, t1)]) rev_terms | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 379 | val terms2 = map (subst_term [(split_term, t2)]) rev_terms | 
| 35092 
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
 haftmann parents: 
35084diff
changeset | 380 |         val t1_leq_t2     = Const (@{const_name Orderings.less_eq},
 | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 381 | split_type --> split_type --> HOLogic.boolT) $ t1 $ t2 | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 382 | val not_t1_leq_t2 = HOLogic.Not $ t1_leq_t2 | 
| 45740 | 383 |         val not_false     = HOLogic.mk_Trueprop (HOLogic.Not $ @{term False})
 | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 384 | val subgoal1 = (HOLogic.mk_Trueprop t1_leq_t2) :: terms2 @ [not_false] | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 385 | val subgoal2 = (HOLogic.mk_Trueprop not_t1_leq_t2) :: terms1 @ [not_false] | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 386 | in | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 387 | SOME [(Ts, subgoal1), (Ts, subgoal2)] | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 388 | end | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 389 | (* ?P (min ?i ?j) = ((?i <= ?j --> ?P ?i) & (~ ?i <= ?j --> ?P ?j)) *) | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 390 |     | (Const (@{const_name Orderings.min}, _), [t1, t2]) =>
 | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 391 | let | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 392 | val rev_terms = rev terms | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 393 | val terms1 = map (subst_term [(split_term, t1)]) rev_terms | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 394 | val terms2 = map (subst_term [(split_term, t2)]) rev_terms | 
| 35092 
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
 haftmann parents: 
35084diff
changeset | 395 |         val t1_leq_t2     = Const (@{const_name Orderings.less_eq},
 | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 396 | split_type --> split_type --> HOLogic.boolT) $ t1 $ t2 | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 397 | val not_t1_leq_t2 = HOLogic.Not $ t1_leq_t2 | 
| 45740 | 398 |         val not_false     = HOLogic.mk_Trueprop (HOLogic.Not $ @{term False})
 | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 399 | val subgoal1 = (HOLogic.mk_Trueprop t1_leq_t2) :: terms1 @ [not_false] | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 400 | val subgoal2 = (HOLogic.mk_Trueprop not_t1_leq_t2) :: terms2 @ [not_false] | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 401 | in | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 402 | SOME [(Ts, subgoal1), (Ts, subgoal2)] | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 403 | end | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 404 | (* ?P (abs ?a) = ((0 <= ?a --> ?P ?a) & (?a < 0 --> ?P (- ?a))) *) | 
| 35092 
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
 haftmann parents: 
35084diff
changeset | 405 |     | (Const (@{const_name Groups.abs}, _), [t1]) =>
 | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 406 | let | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 407 | val rev_terms = rev terms | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 408 | val terms1 = map (subst_term [(split_term, t1)]) rev_terms | 
| 35267 
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
 haftmann parents: 
35092diff
changeset | 409 |         val terms2      = map (subst_term [(split_term, Const (@{const_name Groups.uminus},
 | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 410 | split_type --> split_type) $ t1)]) rev_terms | 
| 35267 
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
 haftmann parents: 
35092diff
changeset | 411 |         val zero        = Const (@{const_name Groups.zero}, split_type)
 | 
| 35092 
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
 haftmann parents: 
35084diff
changeset | 412 |         val zero_leq_t1 = Const (@{const_name Orderings.less_eq},
 | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 413 | split_type --> split_type --> HOLogic.boolT) $ zero $ t1 | 
| 35092 
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
 haftmann parents: 
35084diff
changeset | 414 |         val t1_lt_zero  = Const (@{const_name Orderings.less},
 | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 415 | split_type --> split_type --> HOLogic.boolT) $ t1 $ zero | 
| 45740 | 416 |         val not_false   = HOLogic.mk_Trueprop (HOLogic.Not $ @{term False})
 | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 417 | val subgoal1 = (HOLogic.mk_Trueprop zero_leq_t1) :: terms1 @ [not_false] | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 418 | val subgoal2 = (HOLogic.mk_Trueprop t1_lt_zero) :: terms2 @ [not_false] | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 419 | in | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 420 | SOME [(Ts, subgoal1), (Ts, subgoal2)] | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 421 | end | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 422 | (* ?P (?a - ?b) = ((?a < ?b --> ?P 0) & (ALL d. ?a = ?b + d --> ?P d)) *) | 
| 35267 
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
 haftmann parents: 
35092diff
changeset | 423 |     | (Const (@{const_name Groups.minus}, _), [t1, t2]) =>
 | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 424 | let | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 425 | (* "d" in the above theorem becomes a new bound variable after NNF *) | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 426 | (* transformation, therefore some adjustment of indices is necessary *) | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 427 | val rev_terms = rev terms | 
| 35267 
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
 haftmann parents: 
35092diff
changeset | 428 |         val zero            = Const (@{const_name Groups.zero}, split_type)
 | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 429 | val d = Bound 0 | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 430 | val terms1 = map (subst_term [(split_term, zero)]) rev_terms | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 431 | val terms2 = map (subst_term [(incr_boundvars 1 split_term, d)]) | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 432 | (map (incr_boundvars 1) rev_terms) | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 433 | val t1' = incr_boundvars 1 t1 | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 434 | val t2' = incr_boundvars 1 t2 | 
| 35092 
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
 haftmann parents: 
35084diff
changeset | 435 |         val t1_lt_t2        = Const (@{const_name Orderings.less},
 | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 436 | split_type --> split_type --> HOLogic.boolT) $ t1 $ t2 | 
| 38864 
4abe644fcea5
formerly unnamed infix equality now named HOL.eq
 haftmann parents: 
38797diff
changeset | 437 |         val t1_eq_t2_plus_d = Const (@{const_name HOL.eq}, split_type --> split_type --> HOLogic.boolT) $ t1' $
 | 
| 35267 
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
 haftmann parents: 
35092diff
changeset | 438 |                                 (Const (@{const_name Groups.plus},
 | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 439 | split_type --> split_type --> split_type) $ t2' $ d) | 
| 45740 | 440 |         val not_false       = HOLogic.mk_Trueprop (HOLogic.Not $ @{term False})
 | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 441 | val subgoal1 = (HOLogic.mk_Trueprop t1_lt_t2) :: terms1 @ [not_false] | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 442 | val subgoal2 = (HOLogic.mk_Trueprop t1_eq_t2_plus_d) :: terms2 @ [not_false] | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 443 | in | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 444 | SOME [(Ts, subgoal1), (split_type :: Ts, subgoal2)] | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 445 | end | 
| 33728 
cb4235333c30
Fixed splitting of div and mod on integers (split theorem differed from implementation).
 webertj parents: 
33719diff
changeset | 446 | (* ?P (nat ?i) = ((ALL n. ?i = of_nat n --> ?P n) & (?i < 0 --> ?P 0)) *) | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: 
25015diff
changeset | 447 |     | (Const ("Int.nat", _), [t1]) =>
 | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 448 | let | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 449 | val rev_terms = rev terms | 
| 35267 
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
 haftmann parents: 
35092diff
changeset | 450 |         val zero_int    = Const (@{const_name Groups.zero}, HOLogic.intT)
 | 
| 
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
 haftmann parents: 
35092diff
changeset | 451 |         val zero_nat    = Const (@{const_name Groups.zero}, HOLogic.natT)
 | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 452 | val n = Bound 0 | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 453 | val terms1 = map (subst_term [(incr_boundvars 1 split_term, n)]) | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 454 | (map (incr_boundvars 1) rev_terms) | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 455 | val terms2 = map (subst_term [(split_term, zero_nat)]) rev_terms | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 456 | val t1' = incr_boundvars 1 t1 | 
| 38864 
4abe644fcea5
formerly unnamed infix equality now named HOL.eq
 haftmann parents: 
38797diff
changeset | 457 |         val t1_eq_nat_n = Const (@{const_name HOL.eq}, HOLogic.intT --> HOLogic.intT --> HOLogic.boolT) $ t1' $
 | 
| 24196 | 458 |                             (Const (@{const_name of_nat}, HOLogic.natT --> HOLogic.intT) $ n)
 | 
| 35092 
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
 haftmann parents: 
35084diff
changeset | 459 |         val t1_lt_zero  = Const (@{const_name Orderings.less},
 | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 460 | HOLogic.intT --> HOLogic.intT --> HOLogic.boolT) $ t1 $ zero_int | 
| 45740 | 461 |         val not_false   = HOLogic.mk_Trueprop (HOLogic.Not $ @{term False})
 | 
| 33728 
cb4235333c30
Fixed splitting of div and mod on integers (split theorem differed from implementation).
 webertj parents: 
33719diff
changeset | 462 | val subgoal1 = (HOLogic.mk_Trueprop t1_eq_nat_n) :: terms1 @ [not_false] | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 463 | val subgoal2 = (HOLogic.mk_Trueprop t1_lt_zero) :: terms2 @ [not_false] | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 464 | in | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 465 | SOME [(HOLogic.natT :: Ts, subgoal1), (Ts, subgoal2)] | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 466 | end | 
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46709diff
changeset | 467 | (* ?P ((?n::nat) mod (numeral ?k)) = | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46709diff
changeset | 468 | ((numeral ?k = 0 --> ?P ?n) & (~ (numeral ?k = 0) --> | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46709diff
changeset | 469 | (ALL i j. j < numeral ?k --> ?n = numeral ?k * i + j --> ?P j))) *) | 
| 37388 | 470 |     | (Const ("Divides.div_class.mod", Type ("fun", [@{typ nat}, _])), [t1, t2]) =>
 | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 471 | let | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 472 | val rev_terms = rev terms | 
| 35267 
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
 haftmann parents: 
35092diff
changeset | 473 |         val zero                    = Const (@{const_name Groups.zero}, split_type)
 | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 474 | val i = Bound 1 | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 475 | val j = Bound 0 | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 476 | val terms1 = map (subst_term [(split_term, t1)]) rev_terms | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 477 | val terms2 = map (subst_term [(incr_boundvars 2 split_term, j)]) | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 478 | (map (incr_boundvars 2) rev_terms) | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 479 | val t1' = incr_boundvars 2 t1 | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 480 | val t2' = incr_boundvars 2 t2 | 
| 38864 
4abe644fcea5
formerly unnamed infix equality now named HOL.eq
 haftmann parents: 
38797diff
changeset | 481 |         val t2_eq_zero              = Const (@{const_name HOL.eq},
 | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 482 | split_type --> split_type --> HOLogic.boolT) $ t2 $ zero | 
| 38864 
4abe644fcea5
formerly unnamed infix equality now named HOL.eq
 haftmann parents: 
38797diff
changeset | 483 |         val t2_neq_zero             = HOLogic.mk_not (Const (@{const_name HOL.eq},
 | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 484 | split_type --> split_type --> HOLogic.boolT) $ t2' $ zero) | 
| 35092 
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
 haftmann parents: 
35084diff
changeset | 485 |         val j_lt_t2                 = Const (@{const_name Orderings.less},
 | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 486 | split_type --> split_type--> HOLogic.boolT) $ j $ t2' | 
| 38864 
4abe644fcea5
formerly unnamed infix equality now named HOL.eq
 haftmann parents: 
38797diff
changeset | 487 |         val t1_eq_t2_times_i_plus_j = Const (@{const_name HOL.eq}, split_type --> split_type --> HOLogic.boolT) $ t1' $
 | 
| 35267 
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
 haftmann parents: 
35092diff
changeset | 488 |                                        (Const (@{const_name Groups.plus}, split_type --> split_type --> split_type) $
 | 
| 
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
 haftmann parents: 
35092diff
changeset | 489 |                                          (Const (@{const_name Groups.times},
 | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 490 | split_type --> split_type --> split_type) $ t2' $ i) $ j) | 
| 45740 | 491 |         val not_false               = HOLogic.mk_Trueprop (HOLogic.Not $ @{term False})
 | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 492 | val subgoal1 = (HOLogic.mk_Trueprop t2_eq_zero) :: terms1 @ [not_false] | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 493 | val subgoal2 = (map HOLogic.mk_Trueprop | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 494 | [t2_neq_zero, j_lt_t2, t1_eq_t2_times_i_plus_j]) | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 495 | @ terms2 @ [not_false] | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 496 | in | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 497 | SOME [(Ts, subgoal1), (split_type :: split_type :: Ts, subgoal2)] | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 498 | end | 
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46709diff
changeset | 499 | (* ?P ((?n::nat) div (numeral ?k)) = | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46709diff
changeset | 500 | ((numeral ?k = 0 --> ?P 0) & (~ (numeral ?k = 0) --> | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46709diff
changeset | 501 | (ALL i j. j < numeral ?k --> ?n = numeral ?k * i + j --> ?P i))) *) | 
| 60352 
d46de31a50c4
separate class for division operator, with particular syntax added in more specific classes
 haftmann parents: 
60351diff
changeset | 502 |     | (Const (@{const_name Rings.divide}, Type ("fun", [@{typ nat}, _])), [t1, t2]) =>
 | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 503 | let | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 504 | val rev_terms = rev terms | 
| 35267 
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
 haftmann parents: 
35092diff
changeset | 505 |         val zero                    = Const (@{const_name Groups.zero}, split_type)
 | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 506 | val i = Bound 1 | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 507 | val j = Bound 0 | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 508 | val terms1 = map (subst_term [(split_term, zero)]) rev_terms | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 509 | val terms2 = map (subst_term [(incr_boundvars 2 split_term, i)]) | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 510 | (map (incr_boundvars 2) rev_terms) | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 511 | val t1' = incr_boundvars 2 t1 | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 512 | val t2' = incr_boundvars 2 t2 | 
| 38864 
4abe644fcea5
formerly unnamed infix equality now named HOL.eq
 haftmann parents: 
38797diff
changeset | 513 |         val t2_eq_zero              = Const (@{const_name HOL.eq},
 | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 514 | split_type --> split_type --> HOLogic.boolT) $ t2 $ zero | 
| 38864 
4abe644fcea5
formerly unnamed infix equality now named HOL.eq
 haftmann parents: 
38797diff
changeset | 515 |         val t2_neq_zero             = HOLogic.mk_not (Const (@{const_name HOL.eq},
 | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 516 | split_type --> split_type --> HOLogic.boolT) $ t2' $ zero) | 
| 35092 
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
 haftmann parents: 
35084diff
changeset | 517 |         val j_lt_t2                 = Const (@{const_name Orderings.less},
 | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 518 | split_type --> split_type--> HOLogic.boolT) $ j $ t2' | 
| 38864 
4abe644fcea5
formerly unnamed infix equality now named HOL.eq
 haftmann parents: 
38797diff
changeset | 519 |         val t1_eq_t2_times_i_plus_j = Const (@{const_name HOL.eq}, split_type --> split_type --> HOLogic.boolT) $ t1' $
 | 
| 35267 
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
 haftmann parents: 
35092diff
changeset | 520 |                                        (Const (@{const_name Groups.plus}, split_type --> split_type --> split_type) $
 | 
| 
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
 haftmann parents: 
35092diff
changeset | 521 |                                          (Const (@{const_name Groups.times},
 | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 522 | split_type --> split_type --> split_type) $ t2' $ i) $ j) | 
| 45740 | 523 |         val not_false               = HOLogic.mk_Trueprop (HOLogic.Not $ @{term False})
 | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 524 | val subgoal1 = (HOLogic.mk_Trueprop t2_eq_zero) :: terms1 @ [not_false] | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 525 | val subgoal2 = (map HOLogic.mk_Trueprop | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 526 | [t2_neq_zero, j_lt_t2, t1_eq_t2_times_i_plus_j]) | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 527 | @ terms2 @ [not_false] | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 528 | in | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 529 | SOME [(Ts, subgoal1), (split_type :: split_type :: Ts, subgoal2)] | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 530 | end | 
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46709diff
changeset | 531 | (* ?P ((?n::int) mod (numeral ?k)) = | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46709diff
changeset | 532 | ((numeral ?k = 0 --> ?P ?n) & | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46709diff
changeset | 533 | (0 < numeral ?k --> | 
| 33728 
cb4235333c30
Fixed splitting of div and mod on integers (split theorem differed from implementation).
 webertj parents: 
33719diff
changeset | 534 | (ALL i j. | 
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46709diff
changeset | 535 | 0 <= j & j < numeral ?k & ?n = numeral ?k * i + j --> ?P j)) & | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46709diff
changeset | 536 | (numeral ?k < 0 --> | 
| 33728 
cb4235333c30
Fixed splitting of div and mod on integers (split theorem differed from implementation).
 webertj parents: 
33719diff
changeset | 537 | (ALL i j. | 
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46709diff
changeset | 538 | numeral ?k < j & j <= 0 & ?n = numeral ?k * i + j --> ?P j))) *) | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 539 |     | (Const ("Divides.div_class.mod",
 | 
| 33728 
cb4235333c30
Fixed splitting of div and mod on integers (split theorem differed from implementation).
 webertj parents: 
33719diff
changeset | 540 |         Type ("fun", [Type ("Int.int", []), _])), [t1, t2]) =>
 | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 541 | let | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 542 | val rev_terms = rev terms | 
| 35267 
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
 haftmann parents: 
35092diff
changeset | 543 |         val zero                    = Const (@{const_name Groups.zero}, split_type)
 | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 544 | val i = Bound 1 | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 545 | val j = Bound 0 | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 546 | val terms1 = map (subst_term [(split_term, t1)]) rev_terms | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 547 | val terms2_3 = map (subst_term [(incr_boundvars 2 split_term, j)]) | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 548 | (map (incr_boundvars 2) rev_terms) | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 549 | val t1' = incr_boundvars 2 t1 | 
| 33728 
cb4235333c30
Fixed splitting of div and mod on integers (split theorem differed from implementation).
 webertj parents: 
33719diff
changeset | 550 | val t2' = incr_boundvars 2 t2 | 
| 38864 
4abe644fcea5
formerly unnamed infix equality now named HOL.eq
 haftmann parents: 
38797diff
changeset | 551 |         val t2_eq_zero              = Const (@{const_name HOL.eq},
 | 
| 33728 
cb4235333c30
Fixed splitting of div and mod on integers (split theorem differed from implementation).
 webertj parents: 
33719diff
changeset | 552 | split_type --> split_type --> HOLogic.boolT) $ t2 $ zero | 
| 35092 
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
 haftmann parents: 
35084diff
changeset | 553 |         val zero_lt_t2              = Const (@{const_name Orderings.less},
 | 
| 33728 
cb4235333c30
Fixed splitting of div and mod on integers (split theorem differed from implementation).
 webertj parents: 
33719diff
changeset | 554 | split_type --> split_type --> HOLogic.boolT) $ zero $ t2' | 
| 35092 
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
 haftmann parents: 
35084diff
changeset | 555 |         val t2_lt_zero              = Const (@{const_name Orderings.less},
 | 
| 33728 
cb4235333c30
Fixed splitting of div and mod on integers (split theorem differed from implementation).
 webertj parents: 
33719diff
changeset | 556 | split_type --> split_type --> HOLogic.boolT) $ t2' $ zero | 
| 35092 
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
 haftmann parents: 
35084diff
changeset | 557 |         val zero_leq_j              = Const (@{const_name Orderings.less_eq},
 | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 558 | split_type --> split_type --> HOLogic.boolT) $ zero $ j | 
| 35092 
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
 haftmann parents: 
35084diff
changeset | 559 |         val j_leq_zero              = Const (@{const_name Orderings.less_eq},
 | 
| 33728 
cb4235333c30
Fixed splitting of div and mod on integers (split theorem differed from implementation).
 webertj parents: 
33719diff
changeset | 560 | split_type --> split_type --> HOLogic.boolT) $ j $ zero | 
| 35092 
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
 haftmann parents: 
35084diff
changeset | 561 |         val j_lt_t2                 = Const (@{const_name Orderings.less},
 | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 562 | split_type --> split_type--> HOLogic.boolT) $ j $ t2' | 
| 35092 
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
 haftmann parents: 
35084diff
changeset | 563 |         val t2_lt_j                 = Const (@{const_name Orderings.less},
 | 
| 33728 
cb4235333c30
Fixed splitting of div and mod on integers (split theorem differed from implementation).
 webertj parents: 
33719diff
changeset | 564 | split_type --> split_type--> HOLogic.boolT) $ t2' $ j | 
| 38864 
4abe644fcea5
formerly unnamed infix equality now named HOL.eq
 haftmann parents: 
38797diff
changeset | 565 |         val t1_eq_t2_times_i_plus_j = Const (@{const_name HOL.eq}, split_type --> split_type --> HOLogic.boolT) $ t1' $
 | 
| 35267 
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
 haftmann parents: 
35092diff
changeset | 566 |                                        (Const (@{const_name Groups.plus}, split_type --> split_type --> split_type) $
 | 
| 
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
 haftmann parents: 
35092diff
changeset | 567 |                                          (Const (@{const_name Groups.times},
 | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 568 | split_type --> split_type --> split_type) $ t2' $ i) $ j) | 
| 45740 | 569 |         val not_false               = HOLogic.mk_Trueprop (HOLogic.Not $ @{term False})
 | 
| 33728 
cb4235333c30
Fixed splitting of div and mod on integers (split theorem differed from implementation).
 webertj parents: 
33719diff
changeset | 570 | val subgoal1 = (HOLogic.mk_Trueprop t2_eq_zero) :: terms1 @ [not_false] | 
| 
cb4235333c30
Fixed splitting of div and mod on integers (split theorem differed from implementation).
 webertj parents: 
33719diff
changeset | 571 | val subgoal2 = (map HOLogic.mk_Trueprop [zero_lt_t2, zero_leq_j]) | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 572 | @ hd terms2_3 | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 573 | :: (if tl terms2_3 = [] then [not_false] else []) | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 574 | @ (map HOLogic.mk_Trueprop [j_lt_t2, t1_eq_t2_times_i_plus_j]) | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 575 | @ (if tl terms2_3 = [] then [] else tl terms2_3 @ [not_false]) | 
| 33728 
cb4235333c30
Fixed splitting of div and mod on integers (split theorem differed from implementation).
 webertj parents: 
33719diff
changeset | 576 | val subgoal3 = (map HOLogic.mk_Trueprop [t2_lt_zero, t2_lt_j]) | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 577 | @ hd terms2_3 | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 578 | :: (if tl terms2_3 = [] then [not_false] else []) | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 579 | @ (map HOLogic.mk_Trueprop [j_leq_zero, t1_eq_t2_times_i_plus_j]) | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 580 | @ (if tl terms2_3 = [] then [] else tl terms2_3 @ [not_false]) | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 581 | val Ts' = split_type :: split_type :: Ts | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 582 | in | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 583 | SOME [(Ts, subgoal1), (Ts', subgoal2), (Ts', subgoal3)] | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 584 | end | 
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46709diff
changeset | 585 | (* ?P ((?n::int) div (numeral ?k)) = | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46709diff
changeset | 586 | ((numeral ?k = 0 --> ?P 0) & | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46709diff
changeset | 587 | (0 < numeral ?k --> | 
| 33728 
cb4235333c30
Fixed splitting of div and mod on integers (split theorem differed from implementation).
 webertj parents: 
33719diff
changeset | 588 | (ALL i j. | 
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46709diff
changeset | 589 | 0 <= j & j < numeral ?k & ?n = numeral ?k * i + j --> ?P i)) & | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46709diff
changeset | 590 | (numeral ?k < 0 --> | 
| 33728 
cb4235333c30
Fixed splitting of div and mod on integers (split theorem differed from implementation).
 webertj parents: 
33719diff
changeset | 591 | (ALL i j. | 
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46709diff
changeset | 592 | numeral ?k < j & j <= 0 & ?n = numeral ?k * i + j --> ?P i))) *) | 
| 60352 
d46de31a50c4
separate class for division operator, with particular syntax added in more specific classes
 haftmann parents: 
60351diff
changeset | 593 |     | (Const (@{const_name Rings.divide},
 | 
| 33728 
cb4235333c30
Fixed splitting of div and mod on integers (split theorem differed from implementation).
 webertj parents: 
33719diff
changeset | 594 |         Type ("fun", [Type ("Int.int", []), _])), [t1, t2]) =>
 | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 595 | let | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 596 | val rev_terms = rev terms | 
| 35267 
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
 haftmann parents: 
35092diff
changeset | 597 |         val zero                    = Const (@{const_name Groups.zero}, split_type)
 | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 598 | val i = Bound 1 | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 599 | val j = Bound 0 | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 600 | val terms1 = map (subst_term [(split_term, zero)]) rev_terms | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 601 | val terms2_3 = map (subst_term [(incr_boundvars 2 split_term, i)]) | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 602 | (map (incr_boundvars 2) rev_terms) | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 603 | val t1' = incr_boundvars 2 t1 | 
| 33728 
cb4235333c30
Fixed splitting of div and mod on integers (split theorem differed from implementation).
 webertj parents: 
33719diff
changeset | 604 | val t2' = incr_boundvars 2 t2 | 
| 38864 
4abe644fcea5
formerly unnamed infix equality now named HOL.eq
 haftmann parents: 
38797diff
changeset | 605 |         val t2_eq_zero              = Const (@{const_name HOL.eq},
 | 
| 33728 
cb4235333c30
Fixed splitting of div and mod on integers (split theorem differed from implementation).
 webertj parents: 
33719diff
changeset | 606 | split_type --> split_type --> HOLogic.boolT) $ t2 $ zero | 
| 35092 
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
 haftmann parents: 
35084diff
changeset | 607 |         val zero_lt_t2              = Const (@{const_name Orderings.less},
 | 
| 33728 
cb4235333c30
Fixed splitting of div and mod on integers (split theorem differed from implementation).
 webertj parents: 
33719diff
changeset | 608 | split_type --> split_type --> HOLogic.boolT) $ zero $ t2' | 
| 35092 
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
 haftmann parents: 
35084diff
changeset | 609 |         val t2_lt_zero              = Const (@{const_name Orderings.less},
 | 
| 33728 
cb4235333c30
Fixed splitting of div and mod on integers (split theorem differed from implementation).
 webertj parents: 
33719diff
changeset | 610 | split_type --> split_type --> HOLogic.boolT) $ t2' $ zero | 
| 35092 
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
 haftmann parents: 
35084diff
changeset | 611 |         val zero_leq_j              = Const (@{const_name Orderings.less_eq},
 | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 612 | split_type --> split_type --> HOLogic.boolT) $ zero $ j | 
| 35092 
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
 haftmann parents: 
35084diff
changeset | 613 |         val j_leq_zero              = Const (@{const_name Orderings.less_eq},
 | 
| 33728 
cb4235333c30
Fixed splitting of div and mod on integers (split theorem differed from implementation).
 webertj parents: 
33719diff
changeset | 614 | split_type --> split_type --> HOLogic.boolT) $ j $ zero | 
| 35092 
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
 haftmann parents: 
35084diff
changeset | 615 |         val j_lt_t2                 = Const (@{const_name Orderings.less},
 | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 616 | split_type --> split_type--> HOLogic.boolT) $ j $ t2' | 
| 35092 
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
 haftmann parents: 
35084diff
changeset | 617 |         val t2_lt_j                 = Const (@{const_name Orderings.less},
 | 
| 33728 
cb4235333c30
Fixed splitting of div and mod on integers (split theorem differed from implementation).
 webertj parents: 
33719diff
changeset | 618 | split_type --> split_type--> HOLogic.boolT) $ t2' $ j | 
| 38864 
4abe644fcea5
formerly unnamed infix equality now named HOL.eq
 haftmann parents: 
38797diff
changeset | 619 |         val t1_eq_t2_times_i_plus_j = Const (@{const_name HOL.eq}, split_type --> split_type --> HOLogic.boolT) $ t1' $
 | 
| 35267 
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
 haftmann parents: 
35092diff
changeset | 620 |                                        (Const (@{const_name Groups.plus}, split_type --> split_type --> split_type) $
 | 
| 
8dfd816713c6
moved remaning class operations from Algebras.thy to Groups.thy
 haftmann parents: 
35092diff
changeset | 621 |                                          (Const (@{const_name Groups.times},
 | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 622 | split_type --> split_type --> split_type) $ t2' $ i) $ j) | 
| 45740 | 623 |         val not_false               = HOLogic.mk_Trueprop (HOLogic.Not $ @{term False})
 | 
| 33728 
cb4235333c30
Fixed splitting of div and mod on integers (split theorem differed from implementation).
 webertj parents: 
33719diff
changeset | 624 | val subgoal1 = (HOLogic.mk_Trueprop t2_eq_zero) :: terms1 @ [not_false] | 
| 
cb4235333c30
Fixed splitting of div and mod on integers (split theorem differed from implementation).
 webertj parents: 
33719diff
changeset | 625 | val subgoal2 = (map HOLogic.mk_Trueprop [zero_lt_t2, zero_leq_j]) | 
| 
cb4235333c30
Fixed splitting of div and mod on integers (split theorem differed from implementation).
 webertj parents: 
33719diff
changeset | 626 | @ hd terms2_3 | 
| 
cb4235333c30
Fixed splitting of div and mod on integers (split theorem differed from implementation).
 webertj parents: 
33719diff
changeset | 627 | :: (if tl terms2_3 = [] then [not_false] else []) | 
| 
cb4235333c30
Fixed splitting of div and mod on integers (split theorem differed from implementation).
 webertj parents: 
33719diff
changeset | 628 | @ (map HOLogic.mk_Trueprop [j_lt_t2, t1_eq_t2_times_i_plus_j]) | 
| 
cb4235333c30
Fixed splitting of div and mod on integers (split theorem differed from implementation).
 webertj parents: 
33719diff
changeset | 629 | @ (if tl terms2_3 = [] then [] else tl terms2_3 @ [not_false]) | 
| 
cb4235333c30
Fixed splitting of div and mod on integers (split theorem differed from implementation).
 webertj parents: 
33719diff
changeset | 630 | val subgoal3 = (map HOLogic.mk_Trueprop [t2_lt_zero, t2_lt_j]) | 
| 
cb4235333c30
Fixed splitting of div and mod on integers (split theorem differed from implementation).
 webertj parents: 
33719diff
changeset | 631 | @ hd terms2_3 | 
| 
cb4235333c30
Fixed splitting of div and mod on integers (split theorem differed from implementation).
 webertj parents: 
33719diff
changeset | 632 | :: (if tl terms2_3 = [] then [not_false] else []) | 
| 
cb4235333c30
Fixed splitting of div and mod on integers (split theorem differed from implementation).
 webertj parents: 
33719diff
changeset | 633 | @ (map HOLogic.mk_Trueprop [j_leq_zero, t1_eq_t2_times_i_plus_j]) | 
| 
cb4235333c30
Fixed splitting of div and mod on integers (split theorem differed from implementation).
 webertj parents: 
33719diff
changeset | 634 | @ (if tl terms2_3 = [] then [] else tl terms2_3 @ [not_false]) | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 635 | val Ts' = split_type :: split_type :: Ts | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 636 | in | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 637 | SOME [(Ts, subgoal1), (Ts', subgoal2), (Ts', subgoal3)] | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 638 | end | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 639 | (* this will only happen if a split theorem can be applied for which no *) | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 640 | (* code exists above -- in which case either the split theorem should be *) | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 641 | (* implemented above, or 'is_split_thm' should be modified to filter it *) | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 642 | (* out *) | 
| 59352 
63c02d051661
tuned warnings: observe Context_Position.is_visible;
 wenzelm parents: 
59058diff
changeset | 643 | | (t, ts) => | 
| 
63c02d051661
tuned warnings: observe Context_Position.is_visible;
 wenzelm parents: 
59058diff
changeset | 644 | (if Context_Position.is_visible ctxt then | 
| 
63c02d051661
tuned warnings: observe Context_Position.is_visible;
 wenzelm parents: 
59058diff
changeset | 645 |         warning ("Lin. Arith.: split rule for " ^ Syntax.string_of_term ctxt t ^
 | 
| 
63c02d051661
tuned warnings: observe Context_Position.is_visible;
 wenzelm parents: 
59058diff
changeset | 646 | " (with " ^ string_of_int (length ts) ^ | 
| 
63c02d051661
tuned warnings: observe Context_Position.is_visible;
 wenzelm parents: 
59058diff
changeset | 647 | " argument(s)) not implemented; proof reconstruction is likely to fail") | 
| 
63c02d051661
tuned warnings: observe Context_Position.is_visible;
 wenzelm parents: 
59058diff
changeset | 648 | else (); NONE)) | 
| 32369 | 649 | end; (* split_once_items *) | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 650 | |
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 651 | (* remove terms that do not satisfy 'p'; change the order of the remaining *) | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 652 | (* terms in the same way as filter_prems_tac does *) | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 653 | |
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 654 | fun filter_prems_tac_items (p : term -> bool) (terms : term list) : term list = | 
| 42439 
9efdd0af15ac
eliminated Display.string_of_thm_without_context;
 wenzelm parents: 
42361diff
changeset | 655 | let | 
| 
9efdd0af15ac
eliminated Display.string_of_thm_without_context;
 wenzelm parents: 
42361diff
changeset | 656 | fun filter_prems t (left, right) = | 
| 
9efdd0af15ac
eliminated Display.string_of_thm_without_context;
 wenzelm parents: 
42361diff
changeset | 657 | if p t then (left, right @ [t]) else (left @ right, []) | 
| 
9efdd0af15ac
eliminated Display.string_of_thm_without_context;
 wenzelm parents: 
42361diff
changeset | 658 | val (left, right) = fold filter_prems terms ([], []) | 
| 
9efdd0af15ac
eliminated Display.string_of_thm_without_context;
 wenzelm parents: 
42361diff
changeset | 659 | in | 
| 
9efdd0af15ac
eliminated Display.string_of_thm_without_context;
 wenzelm parents: 
42361diff
changeset | 660 | right @ left | 
| 
9efdd0af15ac
eliminated Display.string_of_thm_without_context;
 wenzelm parents: 
42361diff
changeset | 661 | end; | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 662 | |
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 663 | (* return true iff TRY (etac notE) THEN eq_assume_tac would succeed on a *) | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 664 | (* subgoal that has 'terms' as premises *) | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 665 | |
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 666 | fun negated_term_occurs_positively (terms : term list) : bool = | 
| 58412 | 667 | exists | 
| 38558 | 668 |     (fn (Trueprop $ (Const (@{const_name Not}, _) $ t)) =>
 | 
| 52131 | 669 | member Envir.aeconv terms (Trueprop $ t) | 
| 32369 | 670 | | _ => false) | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 671 | terms; | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 672 | |
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 673 | fun pre_decomp ctxt (Ts : typ list, terms : term list) : (typ list * term list) list = | 
| 42439 
9efdd0af15ac
eliminated Display.string_of_thm_without_context;
 wenzelm parents: 
42361diff
changeset | 674 | let | 
| 
9efdd0af15ac
eliminated Display.string_of_thm_without_context;
 wenzelm parents: 
42361diff
changeset | 675 | (* repeatedly split (including newly emerging subgoals) until no further *) | 
| 
9efdd0af15ac
eliminated Display.string_of_thm_without_context;
 wenzelm parents: 
42361diff
changeset | 676 | (* splitting is possible *) | 
| 
9efdd0af15ac
eliminated Display.string_of_thm_without_context;
 wenzelm parents: 
42361diff
changeset | 677 | fun split_loop ([] : (typ list * term list) list) = ([] : (typ list * term list) list) | 
| 
9efdd0af15ac
eliminated Display.string_of_thm_without_context;
 wenzelm parents: 
42361diff
changeset | 678 | | split_loop (subgoal::subgoals) = | 
| 
9efdd0af15ac
eliminated Display.string_of_thm_without_context;
 wenzelm parents: 
42361diff
changeset | 679 | (case split_once_items ctxt subgoal of | 
| 
9efdd0af15ac
eliminated Display.string_of_thm_without_context;
 wenzelm parents: 
42361diff
changeset | 680 | SOME new_subgoals => split_loop (new_subgoals @ subgoals) | 
| 
9efdd0af15ac
eliminated Display.string_of_thm_without_context;
 wenzelm parents: 
42361diff
changeset | 681 | | NONE => subgoal :: split_loop subgoals) | 
| 
9efdd0af15ac
eliminated Display.string_of_thm_without_context;
 wenzelm parents: 
42361diff
changeset | 682 | fun is_relevant t = is_some (decomp ctxt t) | 
| 
9efdd0af15ac
eliminated Display.string_of_thm_without_context;
 wenzelm parents: 
42361diff
changeset | 683 | (* filter_prems_tac is_relevant: *) | 
| 
9efdd0af15ac
eliminated Display.string_of_thm_without_context;
 wenzelm parents: 
42361diff
changeset | 684 | val relevant_terms = filter_prems_tac_items is_relevant terms | 
| 
9efdd0af15ac
eliminated Display.string_of_thm_without_context;
 wenzelm parents: 
42361diff
changeset | 685 | (* split_tac, NNF normalization: *) | 
| 
9efdd0af15ac
eliminated Display.string_of_thm_without_context;
 wenzelm parents: 
42361diff
changeset | 686 | val split_goals = split_loop [(Ts, relevant_terms)] | 
| 
9efdd0af15ac
eliminated Display.string_of_thm_without_context;
 wenzelm parents: 
42361diff
changeset | 687 | (* necessary because split_once_tac may normalize terms: *) | 
| 
9efdd0af15ac
eliminated Display.string_of_thm_without_context;
 wenzelm parents: 
42361diff
changeset | 688 | val beta_eta_norm = map (apsnd (map (Envir.eta_contract o Envir.beta_norm))) | 
| 
9efdd0af15ac
eliminated Display.string_of_thm_without_context;
 wenzelm parents: 
42361diff
changeset | 689 | split_goals | 
| 
9efdd0af15ac
eliminated Display.string_of_thm_without_context;
 wenzelm parents: 
42361diff
changeset | 690 | (* TRY (etac notE) THEN eq_assume_tac: *) | 
| 
9efdd0af15ac
eliminated Display.string_of_thm_without_context;
 wenzelm parents: 
42361diff
changeset | 691 | val result = filter_out (negated_term_occurs_positively o snd) beta_eta_norm | 
| 
9efdd0af15ac
eliminated Display.string_of_thm_without_context;
 wenzelm parents: 
42361diff
changeset | 692 | in | 
| 
9efdd0af15ac
eliminated Display.string_of_thm_without_context;
 wenzelm parents: 
42361diff
changeset | 693 | result | 
| 
9efdd0af15ac
eliminated Display.string_of_thm_without_context;
 wenzelm parents: 
42361diff
changeset | 694 | end; | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 695 | |
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 696 | (* takes the i-th subgoal [| A1; ...; An |] ==> B to *) | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 697 | (* An --> ... --> A1 --> B, performs splitting with the given 'split_thms' *) | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 698 | (* (resulting in a different subgoal P), takes P to ~P ==> False, *) | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 699 | (* performs NNF-normalization of ~P, and eliminates conjunctions, *) | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 700 | (* disjunctions and existential quantifiers from the premises, possibly (in *) | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 701 | (* the case of disjunctions) resulting in several new subgoals, each of the *) | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 702 | (* general form [| Q1; ...; Qm |] ==> False. Fails if more than *) | 
| 31082 | 703 | (* !split_limit splits are possible. *) | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 704 | |
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 705 | local | 
| 51717 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 wenzelm parents: 
48560diff
changeset | 706 | fun nnf_simpset ctxt = | 
| 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 wenzelm parents: 
48560diff
changeset | 707 | (empty_simpset ctxt | 
| 45625 
750c5a47400b
modernized some old-style infix operations, which were left over from the time of ML proof scripts;
 wenzelm parents: 
45620diff
changeset | 708 | |> Simplifier.set_mkeqTrue mk_eq_True | 
| 
750c5a47400b
modernized some old-style infix operations, which were left over from the time of ML proof scripts;
 wenzelm parents: 
45620diff
changeset | 709 | |> Simplifier.set_mksimps (mksimps mksimps_pairs)) | 
| 35410 | 710 |     addsimps [@{thm imp_conv_disj}, @{thm iff_conv_conj_imp}, @{thm de_Morgan_disj},
 | 
| 711 |       @{thm de_Morgan_conj}, not_all, not_ex, not_not]
 | |
| 51717 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 wenzelm parents: 
48560diff
changeset | 712 | fun prem_nnf_tac ctxt = full_simp_tac (nnf_simpset ctxt) | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 713 | in | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 714 | |
| 51717 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 wenzelm parents: 
48560diff
changeset | 715 | fun split_once_tac ctxt split_thms = | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 716 | let | 
| 42361 | 717 | val thy = Proof_Context.theory_of ctxt | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 718 | val cond_split_tac = SUBGOAL (fn (subgoal, i) => | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 719 | let | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 720 | val Ts = rev (map snd (Logic.strip_params subgoal)) | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 721 | val concl = HOLogic.dest_Trueprop (Logic.strip_assums_concl subgoal) | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 722 | val cmap = Splitter.cmap_of_split_thms split_thms | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 723 | val splits = Splitter.split_posns cmap thy Ts concl | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 724 | in | 
| 32369 | 725 | if null splits orelse length splits > Config.get ctxt split_limit then | 
| 726 | no_tac | |
| 727 | else if null (#2 (hd splits)) then | |
| 58956 
a816aa3ff391
proper context for compose_tac, Splitter.split_tac (relevant for unify trace options);
 wenzelm parents: 
58839diff
changeset | 728 | split_tac ctxt split_thms i | 
| 32369 | 729 | else | 
| 730 | (* disallow a split that involves non-locally bound variables *) | |
| 731 | (* (except when bound by outermost meta-quantifiers) *) | |
| 732 | no_tac | |
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 733 | end) | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 734 | in | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 735 | EVERY' [ | 
| 59498 
50b60f501b05
proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
 wenzelm parents: 
59352diff
changeset | 736 | REPEAT_DETERM o eresolve_tac ctxt [rev_mp], | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 737 | cond_split_tac, | 
| 59498 
50b60f501b05
proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
 wenzelm parents: 
59352diff
changeset | 738 |       resolve_tac ctxt @{thms ccontr},
 | 
| 51717 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 wenzelm parents: 
48560diff
changeset | 739 | prem_nnf_tac ctxt, | 
| 59498 
50b60f501b05
proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
 wenzelm parents: 
59352diff
changeset | 740 | TRY o REPEAT_ALL_NEW | 
| 
50b60f501b05
proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
 wenzelm parents: 
59352diff
changeset | 741 | (DETERM o (eresolve_tac ctxt [conjE, exE] ORELSE' eresolve_tac ctxt [disjE])) | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 742 | ] | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 743 | end; | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 744 | |
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 745 | end; (* local *) | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 746 | |
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 747 | (* remove irrelevant premises, then split the i-th subgoal (and all new *) | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 748 | (* subgoals) by using 'split_once_tac' repeatedly. Beta-eta-normalize new *) | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 749 | (* subgoals and finally attempt to solve them by finding an immediate *) | 
| 32369 | 750 | (* contradiction (i.e., a term and its negation) in their premises. *) | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 751 | |
| 51717 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 wenzelm parents: 
48560diff
changeset | 752 | fun pre_tac ctxt i = | 
| 42439 
9efdd0af15ac
eliminated Display.string_of_thm_without_context;
 wenzelm parents: 
42361diff
changeset | 753 | let | 
| 
9efdd0af15ac
eliminated Display.string_of_thm_without_context;
 wenzelm parents: 
42361diff
changeset | 754 | val split_thms = filter (is_split_thm ctxt) (#splits (get_arith_data ctxt)) | 
| 
9efdd0af15ac
eliminated Display.string_of_thm_without_context;
 wenzelm parents: 
42361diff
changeset | 755 | fun is_relevant t = is_some (decomp ctxt t) | 
| 
9efdd0af15ac
eliminated Display.string_of_thm_without_context;
 wenzelm parents: 
42361diff
changeset | 756 | in | 
| 
9efdd0af15ac
eliminated Display.string_of_thm_without_context;
 wenzelm parents: 
42361diff
changeset | 757 | DETERM ( | 
| 59498 
50b60f501b05
proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
 wenzelm parents: 
59352diff
changeset | 758 | TRY (filter_prems_tac ctxt is_relevant i) | 
| 42439 
9efdd0af15ac
eliminated Display.string_of_thm_without_context;
 wenzelm parents: 
42361diff
changeset | 759 | THEN ( | 
| 51717 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 wenzelm parents: 
48560diff
changeset | 760 | (TRY o REPEAT_ALL_NEW (split_once_tac ctxt split_thms)) | 
| 42439 
9efdd0af15ac
eliminated Display.string_of_thm_without_context;
 wenzelm parents: 
42361diff
changeset | 761 | THEN_ALL_NEW | 
| 
9efdd0af15ac
eliminated Display.string_of_thm_without_context;
 wenzelm parents: 
42361diff
changeset | 762 | (CONVERSION Drule.beta_eta_conversion | 
| 
9efdd0af15ac
eliminated Display.string_of_thm_without_context;
 wenzelm parents: 
42361diff
changeset | 763 | THEN' | 
| 59498 
50b60f501b05
proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
 wenzelm parents: 
59352diff
changeset | 764 | (TRY o (eresolve_tac ctxt [notE] THEN' eq_assume_tac))) | 
| 42439 
9efdd0af15ac
eliminated Display.string_of_thm_without_context;
 wenzelm parents: 
42361diff
changeset | 765 | ) i | 
| 
9efdd0af15ac
eliminated Display.string_of_thm_without_context;
 wenzelm parents: 
42361diff
changeset | 766 | ) | 
| 
9efdd0af15ac
eliminated Display.string_of_thm_without_context;
 wenzelm parents: 
42361diff
changeset | 767 | end; | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 768 | |
| 31100 | 769 | end; (* LA_Data *) | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 770 | |
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 771 | |
| 31100 | 772 | val pre_tac = LA_Data.pre_tac; | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 773 | |
| 31100 | 774 | structure Fast_Arith = Fast_Lin_Arith(structure LA_Logic = LA_Logic and LA_Data = LA_Data); | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 775 | |
| 38762 
996afaa9254a
slightly more abstract data handling in Fast_Lin_Arith;
 wenzelm parents: 
38715diff
changeset | 776 | val add_inj_thms = Fast_Arith.add_inj_thms; | 
| 
996afaa9254a
slightly more abstract data handling in Fast_Lin_Arith;
 wenzelm parents: 
38715diff
changeset | 777 | val add_lessD = Fast_Arith.add_lessD; | 
| 
996afaa9254a
slightly more abstract data handling in Fast_Lin_Arith;
 wenzelm parents: 
38715diff
changeset | 778 | val add_simps = Fast_Arith.add_simps; | 
| 
996afaa9254a
slightly more abstract data handling in Fast_Lin_Arith;
 wenzelm parents: 
38715diff
changeset | 779 | val add_simprocs = Fast_Arith.add_simprocs; | 
| 
996afaa9254a
slightly more abstract data handling in Fast_Lin_Arith;
 wenzelm parents: 
38715diff
changeset | 780 | val set_number_of = Fast_Arith.set_number_of; | 
| 31510 
e0f2bb4b0021
fast_lin_arith uses proper multiplication instead of unfolding to additions
 boehmes parents: 
31101diff
changeset | 781 | |
| 59656 | 782 | val simple_tac = Fast_Arith.lin_arith_tac; | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 783 | |
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 784 | (* reduce contradictory <= to False. | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 785 | Most of the work is done by the cancel tactics. *) | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 786 | |
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 787 | val init_arith_data = | 
| 54249 | 788 |   Fast_Arith.map_data (fn {add_mono_thms, mult_mono_thms, inj_thms, lessD, neqE, number_of, ...} =>
 | 
| 61097 | 789 |    {add_mono_thms =
 | 
| 790 |       map Thm.trim_context @{thms add_mono_thms_linordered_semiring add_mono_thms_linordered_field}
 | |
| 791 | @ add_mono_thms, | |
| 792 | mult_mono_thms = | |
| 793 | map Thm.trim_context | |
| 794 |         (@{thms mult_strict_left_mono mult_left_mono} @
 | |
| 795 |           [@{lemma "a = b ==> c * a = c * b" by (rule arg_cong)}]) @ mult_mono_thms,
 | |
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 796 | inj_thms = inj_thms, | 
| 54249 | 797 | lessD = lessD, | 
| 61097 | 798 |     neqE = map Thm.trim_context @{thms linorder_neqE_nat linorder_neqE_linordered_idom} @ neqE,
 | 
| 799 | simpset = | |
| 800 |       put_simpset HOL_basic_ss @{context} |> Simplifier.add_cong @{thm if_weak_cong} |> simpset_of,
 | |
| 54249 | 801 | number_of = number_of}); | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 802 | |
| 51717 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 wenzelm parents: 
48560diff
changeset | 803 | (* FIXME !?? *) | 
| 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 wenzelm parents: 
48560diff
changeset | 804 | fun add_arith_facts ctxt = | 
| 57955 | 805 |   Simplifier.add_prems (rev (Named_Theorems.get ctxt @{named_theorems arith})) ctxt;
 | 
| 29849 
a2baf1b221be
new attribute "arith" for facts supplied to arith.
 nipkow parents: 
29548diff
changeset | 806 | |
| 31101 
26c7bb764a38
qualified names for Lin_Arith tactics and simprocs
 haftmann parents: 
31100diff
changeset | 807 | val simproc = add_arith_facts #> Fast_Arith.lin_arith_simproc; | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 808 | |
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 809 | |
| 26110 | 810 | (* generic refutation procedure *) | 
| 811 | ||
| 812 | (* parameters: | |
| 813 | ||
| 814 | test: term -> bool | |
| 815 | tests if a term is at all relevant to the refutation proof; | |
| 816 | if not, then it can be discarded. Can improve performance, | |
| 817 | esp. if disjunctions can be discarded (no case distinction needed!). | |
| 818 | ||
| 819 | prep_tac: int -> tactic | |
| 820 | A preparation tactic to be applied to the goal once all relevant premises | |
| 821 | have been moved to the conclusion. | |
| 822 | ||
| 823 | ref_tac: int -> tactic | |
| 824 | the actual refutation tactic. Should be able to deal with goals | |
| 825 | [| A1; ...; An |] ==> False | |
| 826 | where the Ai are atomic, i.e. no top-level &, | or EX | |
| 827 | *) | |
| 828 | ||
| 829 | local | |
| 51717 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 wenzelm parents: 
48560diff
changeset | 830 | fun nnf_simpset ctxt = | 
| 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 wenzelm parents: 
48560diff
changeset | 831 | (empty_simpset ctxt | 
| 45625 
750c5a47400b
modernized some old-style infix operations, which were left over from the time of ML proof scripts;
 wenzelm parents: 
45620diff
changeset | 832 | |> Simplifier.set_mkeqTrue mk_eq_True | 
| 
750c5a47400b
modernized some old-style infix operations, which were left over from the time of ML proof scripts;
 wenzelm parents: 
45620diff
changeset | 833 | |> Simplifier.set_mksimps (mksimps mksimps_pairs)) | 
| 26110 | 834 |     addsimps [@{thm imp_conv_disj}, @{thm iff_conv_conj_imp}, @{thm de_Morgan_disj},
 | 
| 835 |       @{thm de_Morgan_conj}, @{thm not_all}, @{thm not_ex}, @{thm not_not}];
 | |
| 51717 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 wenzelm parents: 
48560diff
changeset | 836 | fun prem_nnf_tac ctxt = full_simp_tac (nnf_simpset ctxt); | 
| 26110 | 837 | in | 
| 42439 
9efdd0af15ac
eliminated Display.string_of_thm_without_context;
 wenzelm parents: 
42361diff
changeset | 838 | |
| 51717 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 wenzelm parents: 
48560diff
changeset | 839 | fun refute_tac ctxt test prep_tac ref_tac = | 
| 26110 | 840 | let val refute_prems_tac = | 
| 841 | REPEAT_DETERM | |
| 59498 
50b60f501b05
proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
 wenzelm parents: 
59352diff
changeset | 842 |               (eresolve_tac ctxt [@{thm conjE}, @{thm exE}] 1 ORELSE
 | 
| 
50b60f501b05
proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
 wenzelm parents: 
59352diff
changeset | 843 | filter_prems_tac ctxt test 1 ORELSE | 
| 
50b60f501b05
proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
 wenzelm parents: 
59352diff
changeset | 844 |                eresolve_tac ctxt @{thms disjE} 1) THEN
 | 
| 
50b60f501b05
proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
 wenzelm parents: 
59352diff
changeset | 845 |         (DETERM (eresolve_tac ctxt @{thms notE} 1 THEN eq_assume_tac 1) ORELSE
 | 
| 26110 | 846 | ref_tac 1); | 
| 59498 
50b60f501b05
proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
 wenzelm parents: 
59352diff
changeset | 847 | in EVERY'[TRY o filter_prems_tac ctxt test, | 
| 
50b60f501b05
proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
 wenzelm parents: 
59352diff
changeset | 848 |             REPEAT_DETERM o eresolve_tac ctxt @{thms rev_mp}, prep_tac,
 | 
| 
50b60f501b05
proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
 wenzelm parents: 
59352diff
changeset | 849 |               resolve_tac ctxt @{thms ccontr}, prem_nnf_tac ctxt,
 | 
| 26110 | 850 | SELECT_GOAL (DEPTH_SOLVE refute_prems_tac)] | 
| 851 | end; | |
| 42439 
9efdd0af15ac
eliminated Display.string_of_thm_without_context;
 wenzelm parents: 
42361diff
changeset | 852 | |
| 26110 | 853 | end; | 
| 854 | ||
| 855 | ||
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 856 | (* arith proof method *) | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 857 | |
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 858 | local | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 859 | |
| 59656 | 860 | fun raw_tac ctxt = | 
| 33035 | 861 | (* FIXME: K true should be replaced by a sensible test (perhaps "is_some o | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 862 | decomp sg"? -- but note that the test is applied to terms already before | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 863 | they are split/normalized) to speed things up in case there are lots of | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 864 | irrelevant terms involved; elimination of min/max can be optimized: | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 865 | (max m n + k <= r) = (m+k <= r & n+k <= r) | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 866 | (l <= min m n + k) = (l <= m+k & l <= n+k) | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 867 | *) | 
| 51717 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 wenzelm parents: 
48560diff
changeset | 868 | refute_tac ctxt (K true) | 
| 33728 
cb4235333c30
Fixed splitting of div and mod on integers (split theorem differed from implementation).
 webertj parents: 
33719diff
changeset | 869 | (* Splitting is also done inside simple_tac, but not completely -- *) | 
| 
cb4235333c30
Fixed splitting of div and mod on integers (split theorem differed from implementation).
 webertj parents: 
33719diff
changeset | 870 | (* split_tac may use split theorems that have not been implemented in *) | 
| 
cb4235333c30
Fixed splitting of div and mod on integers (split theorem differed from implementation).
 webertj parents: 
33719diff
changeset | 871 | (* simple_tac (cf. pre_decomp and split_once_items above), and *) | 
| 
cb4235333c30
Fixed splitting of div and mod on integers (split theorem differed from implementation).
 webertj parents: 
33719diff
changeset | 872 | (* split_limit may trigger. *) | 
| 
cb4235333c30
Fixed splitting of div and mod on integers (split theorem differed from implementation).
 webertj parents: 
33719diff
changeset | 873 | (* Therefore splitting outside of simple_tac may allow us to prove *) | 
| 
cb4235333c30
Fixed splitting of div and mod on integers (split theorem differed from implementation).
 webertj parents: 
33719diff
changeset | 874 | (* some goals that simple_tac alone would fail on. *) | 
| 58956 
a816aa3ff391
proper context for compose_tac, Splitter.split_tac (relevant for unify trace options);
 wenzelm parents: 
58839diff
changeset | 875 | (REPEAT_DETERM o split_tac ctxt (#splits (get_arith_data ctxt))) | 
| 59656 | 876 | (Fast_Arith.lin_arith_tac ctxt); | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 877 | |
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 878 | in | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 879 | |
| 59656 | 880 | fun tac ctxt = | 
| 54742 
7a86358a3c0b
proper context for basic Simplifier operations: rewrite_rule, rewrite_goals_rule, rewrite_goals_tac etc.;
 wenzelm parents: 
54489diff
changeset | 881 | FIRST' [simple_tac ctxt, | 
| 58839 | 882 | Object_Logic.full_atomize_tac ctxt THEN' | 
| 59656 | 883 | (REPEAT_DETERM o resolve_tac ctxt [impI]) THEN' raw_tac ctxt]; | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 884 | |
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 885 | end; | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 886 | |
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 887 | |
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 888 | (* context setup *) | 
| 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 889 | |
| 31100 | 890 | val global_setup = | 
| 51717 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 wenzelm parents: 
48560diff
changeset | 891 | map_theory_simpset (fn ctxt => ctxt | 
| 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 wenzelm parents: 
48560diff
changeset | 892 | addSolver (mk_solver "lin_arith" (add_arith_facts #> Fast_Arith.prems_lin_arith_tac))) #> | 
| 31100 | 893 |   Attrib.setup @{binding arith_split} (Scan.succeed (Thm.declaration_attribute add_split))
 | 
| 894 | "declaration of split rules for arithmetic procedure" #> | |
| 895 |   Method.setup @{binding linarith}
 | |
| 33554 | 896 | (Scan.succeed (fn ctxt => | 
| 31100 | 897 | METHOD (fn facts => | 
| 61841 
4d3527b94f2a
more general types Proof.method / context_tactic;
 wenzelm parents: 
61268diff
changeset | 898 | HEADGOAL | 
| 
4d3527b94f2a
more general types Proof.method / context_tactic;
 wenzelm parents: 
61268diff
changeset | 899 | (Method.insert_tac ctxt | 
| 
4d3527b94f2a
more general types Proof.method / context_tactic;
 wenzelm parents: 
61268diff
changeset | 900 |             (rev (Named_Theorems.get ctxt @{named_theorems arith}) @ facts)
 | 
| 31101 
26c7bb764a38
qualified names for Lin_Arith tactics and simprocs
 haftmann parents: 
31100diff
changeset | 901 | THEN' tac ctxt)))) "linear arithmetic" #> | 
| 59657 
2441a80fb6c1
eliminated unused arith "verbose" flag -- tools that need options can use the context;
 wenzelm parents: 
59656diff
changeset | 902 | Arith_Data.add_tactic "linear arithmetic" tac; | 
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 903 | |
| 54249 | 904 | val setup = | 
| 905 | init_arith_data | |
| 906 |   #> add_discrete_type @{type_name nat}
 | |
| 907 |   #> add_lessD @{thm Suc_leI}
 | |
| 908 |   #> add_simps (@{thms simp_thms} @ @{thms ring_distribs} @ [@{thm if_True}, @{thm if_False},
 | |
| 909 |       @{thm add_0_left}, @{thm add_0_right}, @{thm order_less_irrefl},
 | |
| 910 |       @{thm zero_neq_one}, @{thm zero_less_one}, @{thm zero_le_one},
 | |
| 911 |       @{thm zero_neq_one} RS not_sym, @{thm not_one_le_zero}, @{thm not_one_less_zero}])
 | |
| 912 |   #> add_simps [@{thm add_Suc}, @{thm add_Suc_right}, @{thm nat.inject},
 | |
| 913 |       @{thm Suc_le_mono}, @{thm Suc_less_eq}, @{thm Zero_not_Suc},
 | |
| 914 |       @{thm Suc_not_Zero}, @{thm le_0_eq}, @{thm One_nat_def}]
 | |
| 915 |   #> add_simprocs [@{simproc group_cancel_add}, @{simproc group_cancel_diff},
 | |
| 916 |       @{simproc group_cancel_eq}, @{simproc group_cancel_le},
 | |
| 917 |       @{simproc group_cancel_less}]
 | |
| 918 | (*abel_cancel helps it work in abstract algebraic domains*) | |
| 919 |   #> add_simprocs [@{simproc nateq_cancel_sums},@{simproc natless_cancel_sums},
 | |
| 920 |       @{simproc natle_cancel_sums}];
 | |
| 921 | ||
| 24092 
71c27b320610
HOL setup for linear arithmetic -- moved here from arith_data.ML;
 wenzelm parents: diff
changeset | 922 | end; |