| author | haftmann | 
| Mon, 13 Sep 2010 16:43:23 +0200 | |
| changeset 39379 | ab1b070aa412 | 
| parent 39163 | 4d701c0388c3 | 
| child 40878 | 7695e4de4d86 | 
| permissions | -rw-r--r-- | 
| 10413 | 1 | (* Title: Pure/meta_simplifier.ML | 
| 29269 
5c25a2012975
moved term order operations to structure TermOrd (cf. Pure/term_ord.ML);
 wenzelm parents: 
28839diff
changeset | 2 | Author: Tobias Nipkow and Stefan Berghofer, TU Muenchen | 
| 10413 | 3 | |
| 11672 | 4 | Meta-level Simplification. | 
| 10413 | 5 | *) | 
| 6 | ||
| 15006 
107e4dfd3b96
Merging the meta-simplifier with the Provers-simplifier.  Next step:
 skalberg parents: 
15001diff
changeset | 7 | infix 4 | 
| 15023 | 8 | addsimps delsimps addeqcongs deleqcongs addcongs delcongs addsimprocs delsimprocs | 
| 15199 | 9 | setmksimps setmkcong setmksym setmkeqTrue settermless setsubgoaler | 
| 17882 
b6e44fc46cf0
added set/addloop' for simpset dependent loopers;
 wenzelm parents: 
17756diff
changeset | 10 | setloop' setloop addloop addloop' delloop setSSolver addSSolver setSolver addSolver; | 
| 15006 
107e4dfd3b96
Merging the meta-simplifier with the Provers-simplifier.  Next step:
 skalberg parents: 
15001diff
changeset | 11 | |
| 11672 | 12 | signature BASIC_META_SIMPLIFIER = | 
| 13 | sig | |
| 35979 
12bb31230550
replaced references 'trace_simp' and 'debug_simp' by configuration options stored in the context
 boehmes parents: 
35845diff
changeset | 14 | val debug_simp: bool Config.T | 
| 39163 
4d701c0388c3
more explicit indication of Config.raw options, which are only needed for bootstrapping Pure;
 wenzelm parents: 
39116diff
changeset | 15 | val debug_simp_raw: Config.raw | 
| 35979 
12bb31230550
replaced references 'trace_simp' and 'debug_simp' by configuration options stored in the context
 boehmes parents: 
35845diff
changeset | 16 | val trace_simp: bool Config.T | 
| 39163 
4d701c0388c3
more explicit indication of Config.raw options, which are only needed for bootstrapping Pure;
 wenzelm parents: 
39116diff
changeset | 17 | val trace_simp_raw: Config.raw | 
| 36006 
7ddc33baf959
the configuration option 'trace_simp' now uses the reference of the ProofGeneral settings menu as (dynamic) default value
 boehmes parents: 
36001diff
changeset | 18 | val trace_simp_default: bool Unsynchronized.ref | 
| 32738 | 19 | val trace_simp_depth_limit: int Unsynchronized.ref | 
| 15023 | 20 | type rrule | 
| 16807 | 21 | val eq_rrule: rrule * rrule -> bool | 
| 15023 | 22 | type simpset | 
| 23 | type proc | |
| 17614 | 24 | type solver | 
| 25 | val mk_solver': string -> (simpset -> int -> tactic) -> solver | |
| 26 | val mk_solver: string -> (thm list -> int -> tactic) -> solver | |
| 15023 | 27 | val empty_ss: simpset | 
| 28 | val merge_ss: simpset * simpset -> simpset | |
| 30356 | 29 | val dest_ss: simpset -> | 
| 30 |    {simps: (string * thm) list,
 | |
| 31 | procs: (string * cterm list) list, | |
| 32 | congs: (string * thm) list, | |
| 33 | weak_congs: string list, | |
| 34 | loopers: string list, | |
| 35 | unsafe_solvers: string list, | |
| 36 | safe_solvers: string list} | |
| 15023 | 37 | type simproc | 
| 22234 | 38 | val eq_simproc: simproc * simproc -> bool | 
| 39 | val morph_simproc: morphism -> simproc -> simproc | |
| 40 |   val make_simproc: {name: string, lhss: cterm list,
 | |
| 41 | proc: morphism -> simpset -> cterm -> thm option, identifier: thm list} -> simproc | |
| 22008 | 42 | val mk_simproc: string -> cterm list -> (theory -> simpset -> term -> thm option) -> simproc | 
| 15023 | 43 | val add_prems: thm list -> simpset -> simpset | 
| 44 | val prems_of_ss: simpset -> thm list | |
| 45 | val addsimps: simpset * thm list -> simpset | |
| 46 | val delsimps: simpset * thm list -> simpset | |
| 47 | val addeqcongs: simpset * thm list -> simpset | |
| 48 | val deleqcongs: simpset * thm list -> simpset | |
| 49 | val addcongs: simpset * thm list -> simpset | |
| 50 | val delcongs: simpset * thm list -> simpset | |
| 51 | val addsimprocs: simpset * simproc list -> simpset | |
| 52 | val delsimprocs: simpset * simproc list -> simpset | |
| 30318 
3d03190d2864
replaced archaic use of rep_ss by Simplifier.mksimps;
 wenzelm parents: 
29269diff
changeset | 53 | val mksimps: simpset -> thm -> thm list | 
| 36543 
0e7fc5bf38de
proper context for mksimps etc. -- via simpset of the running Simplifier;
 wenzelm parents: 
36354diff
changeset | 54 | val setmksimps: simpset * (simpset -> thm -> thm list) -> simpset | 
| 
0e7fc5bf38de
proper context for mksimps etc. -- via simpset of the running Simplifier;
 wenzelm parents: 
36354diff
changeset | 55 | val setmkcong: simpset * (simpset -> thm -> thm) -> simpset | 
| 
0e7fc5bf38de
proper context for mksimps etc. -- via simpset of the running Simplifier;
 wenzelm parents: 
36354diff
changeset | 56 | val setmksym: simpset * (simpset -> thm -> thm option) -> simpset | 
| 
0e7fc5bf38de
proper context for mksimps etc. -- via simpset of the running Simplifier;
 wenzelm parents: 
36354diff
changeset | 57 | val setmkeqTrue: simpset * (simpset -> thm -> thm option) -> simpset | 
| 15023 | 58 | val settermless: simpset * (term * term -> bool) -> simpset | 
| 59 | val setsubgoaler: simpset * (simpset -> int -> tactic) -> simpset | |
| 17882 
b6e44fc46cf0
added set/addloop' for simpset dependent loopers;
 wenzelm parents: 
17756diff
changeset | 60 | val setloop': simpset * (simpset -> int -> tactic) -> simpset | 
| 15023 | 61 | val setloop: simpset * (int -> tactic) -> simpset | 
| 17882 
b6e44fc46cf0
added set/addloop' for simpset dependent loopers;
 wenzelm parents: 
17756diff
changeset | 62 | val addloop': simpset * (string * (simpset -> int -> tactic)) -> simpset | 
| 15023 | 63 | val addloop: simpset * (string * (int -> tactic)) -> simpset | 
| 64 | val delloop: simpset * string -> simpset | |
| 65 | val setSSolver: simpset * solver -> simpset | |
| 66 | val addSSolver: simpset * solver -> simpset | |
| 67 | val setSolver: simpset * solver -> simpset | |
| 68 | val addSolver: simpset * solver -> simpset | |
| 21708 | 69 | |
| 70 | val rewrite_rule: thm list -> thm -> thm | |
| 71 | val rewrite_goals_rule: thm list -> thm -> thm | |
| 72 | val rewrite_goals_tac: thm list -> tactic | |
| 23536 
60a1672e298e
moved (asm_)rewrite_goal_tac from goal.ML to meta_simplifier.ML (no longer depends on SELECT_GOAL);
 wenzelm parents: 
23221diff
changeset | 73 | val rewrite_goal_tac: thm list -> int -> tactic | 
| 21708 | 74 | val rewtac: thm -> tactic | 
| 75 | val prune_params_tac: tactic | |
| 76 | val fold_rule: thm list -> thm -> thm | |
| 77 | val fold_goals_tac: thm list -> tactic | |
| 30552 
58db56278478
provide Simplifier.norm_hhf(_protect) as regular simplifier operation;
 wenzelm parents: 
30356diff
changeset | 78 | val norm_hhf: thm -> thm | 
| 
58db56278478
provide Simplifier.norm_hhf(_protect) as regular simplifier operation;
 wenzelm parents: 
30356diff
changeset | 79 | val norm_hhf_protect: thm -> thm | 
| 15006 
107e4dfd3b96
Merging the meta-simplifier with the Provers-simplifier.  Next step:
 skalberg parents: 
15001diff
changeset | 80 | end; | 
| 
107e4dfd3b96
Merging the meta-simplifier with the Provers-simplifier.  Next step:
 skalberg parents: 
15001diff
changeset | 81 | |
| 10413 | 82 | signature META_SIMPLIFIER = | 
| 83 | sig | |
| 11672 | 84 | include BASIC_META_SIMPLIFIER | 
| 10413 | 85 | exception SIMPLIFIER of string * thm | 
| 30336 | 86 | val internal_ss: simpset -> | 
| 87 |    {rules: rrule Net.net,
 | |
| 88 | prems: thm list, | |
| 89 | bounds: int * ((string * typ) * string) list, | |
| 32738 | 90 | depth: int * bool Unsynchronized.ref, | 
| 30336 | 91 | context: Proof.context option} * | 
| 30908 
7ccf4a3d764c
replace type cong = {thm : thm, lhs : term} by plain thm -- the other component has been unused for a long time.
 krauss parents: 
30552diff
changeset | 92 |    {congs: (string * thm) list * string list,
 | 
| 30336 | 93 | procs: proc Net.net, | 
| 94 | mk_rews: | |
| 36543 
0e7fc5bf38de
proper context for mksimps etc. -- via simpset of the running Simplifier;
 wenzelm parents: 
36354diff
changeset | 95 |      {mk: simpset -> thm -> thm list,
 | 
| 
0e7fc5bf38de
proper context for mksimps etc. -- via simpset of the running Simplifier;
 wenzelm parents: 
36354diff
changeset | 96 | mk_cong: simpset -> thm -> thm, | 
| 
0e7fc5bf38de
proper context for mksimps etc. -- via simpset of the running Simplifier;
 wenzelm parents: 
36354diff
changeset | 97 | mk_sym: simpset -> thm -> thm option, | 
| 
0e7fc5bf38de
proper context for mksimps etc. -- via simpset of the running Simplifier;
 wenzelm parents: 
36354diff
changeset | 98 | mk_eq_True: simpset -> thm -> thm option, | 
| 30336 | 99 | reorient: theory -> term list -> term -> term -> bool}, | 
| 100 | termless: term * term -> bool, | |
| 101 | subgoal_tac: simpset -> int -> tactic, | |
| 102 | loop_tacs: (string * (simpset -> int -> tactic)) list, | |
| 103 | solvers: solver list * solver list} | |
| 27558 | 104 | val add_simp: thm -> simpset -> simpset | 
| 105 | val del_simp: thm -> simpset -> simpset | |
| 17966 
34e420fa03ad
moved various simplification tactics and rules to simplifier.ML;
 wenzelm parents: 
17897diff
changeset | 106 | val solver: simpset -> solver -> int -> tactic | 
| 39163 
4d701c0388c3
more explicit indication of Config.raw options, which are only needed for bootstrapping Pure;
 wenzelm parents: 
39116diff
changeset | 107 | val simp_depth_limit_raw: Config.raw | 
| 24124 
4399175e3014
turned simp_depth_limit into configuration option;
 wenzelm parents: 
23938diff
changeset | 108 | val simp_depth_limit: int Config.T | 
| 15023 | 109 | val clear_ss: simpset -> simpset | 
| 38715 
6513ea67d95d
renamed Simplifier.simproc(_i) to Simplifier.simproc_global(_i) to emphasize that this is not the real thing;
 wenzelm parents: 
36944diff
changeset | 110 | val simproc_global_i: theory -> string -> term list | 
| 16458 | 111 | -> (theory -> simpset -> term -> thm option) -> simproc | 
| 38715 
6513ea67d95d
renamed Simplifier.simproc(_i) to Simplifier.simproc_global(_i) to emphasize that this is not the real thing;
 wenzelm parents: 
36944diff
changeset | 112 | val simproc_global: theory -> string -> string list | 
| 16458 | 113 | -> (theory -> simpset -> term -> thm option) -> simproc | 
| 17882 
b6e44fc46cf0
added set/addloop' for simpset dependent loopers;
 wenzelm parents: 
17756diff
changeset | 114 | val inherit_context: simpset -> simpset -> simpset | 
| 20289 | 115 | val the_context: simpset -> Proof.context | 
| 116 | val context: Proof.context -> simpset -> simpset | |
| 35232 
f588e1169c8b
renamed Simplifier.theory_context to Simplifier.global_context to emphasize that this is not the real thing;
 wenzelm parents: 
35231diff
changeset | 117 | val global_context: theory -> simpset -> simpset | 
| 36545 
5c5b5c7f1157
conditional warnings: explicitly observe context visibility flag, not just accidental presence of a context;
 wenzelm parents: 
36543diff
changeset | 118 | val with_context: Proof.context -> (simpset -> simpset) -> simpset -> simpset | 
| 32738 | 119 | val debug_bounds: bool Unsynchronized.ref | 
| 18208 | 120 | val set_reorient: (theory -> term list -> term -> term -> bool) -> simpset -> simpset | 
| 17966 
34e420fa03ad
moved various simplification tactics and rules to simplifier.ML;
 wenzelm parents: 
17897diff
changeset | 121 | val set_solvers: solver list -> simpset -> simpset | 
| 23598 | 122 | val rewrite_cterm: bool * bool * bool -> (simpset -> thm -> thm option) -> simpset -> conv | 
| 16458 | 123 | val rewrite_term: theory -> thm list -> (term -> term option) list -> term -> term | 
| 15023 | 124 | val rewrite_thm: bool * bool * bool -> | 
| 125 | (simpset -> thm -> thm option) -> simpset -> thm -> thm | |
| 126 | val rewrite_goal_rule: bool * bool * bool -> | |
| 127 | (simpset -> thm -> thm option) -> simpset -> int -> thm -> thm | |
| 23536 
60a1672e298e
moved (asm_)rewrite_goal_tac from goal.ML to meta_simplifier.ML (no longer depends on SELECT_GOAL);
 wenzelm parents: 
23221diff
changeset | 128 | val asm_rewrite_goal_tac: bool * bool * bool -> | 
| 
60a1672e298e
moved (asm_)rewrite_goal_tac from goal.ML to meta_simplifier.ML (no longer depends on SELECT_GOAL);
 wenzelm parents: 
23221diff
changeset | 129 | (simpset -> tactic) -> simpset -> int -> tactic | 
| 23598 | 130 | val rewrite: bool -> thm list -> conv | 
| 21708 | 131 | val simplify: bool -> thm list -> thm -> thm | 
| 10413 | 132 | end; | 
| 133 | ||
| 15023 | 134 | structure MetaSimplifier: META_SIMPLIFIER = | 
| 10413 | 135 | struct | 
| 136 | ||
| 15023 | 137 | (** datatype simpset **) | 
| 138 | ||
| 139 | (* rewrite rules *) | |
| 10413 | 140 | |
| 20546 
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
 wenzelm parents: 
20330diff
changeset | 141 | type rrule = | 
| 
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
 wenzelm parents: 
20330diff
changeset | 142 |  {thm: thm,         (*the rewrite rule*)
 | 
| 
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
 wenzelm parents: 
20330diff
changeset | 143 | name: string, (*name of theorem from which rewrite rule was extracted*) | 
| 
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
 wenzelm parents: 
20330diff
changeset | 144 | lhs: term, (*the left-hand side*) | 
| 
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
 wenzelm parents: 
20330diff
changeset | 145 | elhs: cterm, (*the etac-contracted lhs*) | 
| 
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
 wenzelm parents: 
20330diff
changeset | 146 | extra: bool, (*extra variables outside of elhs*) | 
| 
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
 wenzelm parents: 
20330diff
changeset | 147 | fo: bool, (*use first-order matching*) | 
| 
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
 wenzelm parents: 
20330diff
changeset | 148 | perm: bool}; (*the rewrite rule is permutative*) | 
| 15023 | 149 | |
| 20546 
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
 wenzelm parents: 
20330diff
changeset | 150 | (* | 
| 12603 | 151 | Remarks: | 
| 10413 | 152 | - elhs is used for matching, | 
| 15023 | 153 | lhs only for preservation of bound variable names; | 
| 10413 | 154 | - fo is set iff | 
| 155 | either elhs is first-order (no Var is applied), | |
| 15023 | 156 | in which case fo-matching is complete, | 
| 10413 | 157 | or elhs is not a pattern, | 
| 20546 
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
 wenzelm parents: 
20330diff
changeset | 158 | in which case there is nothing better to do; | 
| 
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
 wenzelm parents: 
20330diff
changeset | 159 | *) | 
| 10413 | 160 | |
| 161 | fun eq_rrule ({thm = thm1, ...}: rrule, {thm = thm2, ...}: rrule) =
 | |
| 22360 
26ead7ed4f4b
moved eq_thm etc. to structure Thm in Pure/more_thm.ML;
 wenzelm parents: 
22254diff
changeset | 162 | Thm.eq_thm_prop (thm1, thm2); | 
| 15023 | 163 | |
| 164 | ||
| 17614 | 165 | (* simplification sets, procedures, and solvers *) | 
| 15023 | 166 | |
| 167 | (*A simpset contains data required during conversion: | |
| 10413 | 168 | rules: discrimination net of rewrite rules; | 
| 15023 | 169 | prems: current premises; | 
| 15249 
0da6b3075bfa
Replaced list of bound variables in simpset by maximal index of bound
 berghofe parents: 
15199diff
changeset | 170 | bounds: maximal index of bound variables already used | 
| 15023 | 171 | (for generating new names when rewriting under lambda abstractions); | 
| 22892 
c77a1e1c7323
simp_depth: now proper value in simpset (prevents problems with lost exception trace, enables multi-threaded simplification);
 wenzelm parents: 
22717diff
changeset | 172 | depth: simp_depth and exceeded flag; | 
| 10413 | 173 | congs: association list of congruence rules and | 
| 174 | a list of `weak' congruence constants. | |
| 175 | A congruence is `weak' if it avoids normalization of some argument. | |
| 176 | procs: discrimination net of simplification procedures | |
| 177 | (functions that prove rewrite rules on the fly); | |
| 15023 | 178 | mk_rews: | 
| 179 | mk: turn simplification thms into rewrite rules; | |
| 180 | mk_cong: prepare congruence rules; | |
| 181 | mk_sym: turn == around; | |
| 182 | mk_eq_True: turn P into P == True; | |
| 183 | termless: relation for ordered rewriting;*) | |
| 15011 | 184 | |
| 15023 | 185 | datatype simpset = | 
| 186 | Simpset of | |
| 187 |    {rules: rrule Net.net,
 | |
| 10413 | 188 | prems: thm list, | 
| 17882 
b6e44fc46cf0
added set/addloop' for simpset dependent loopers;
 wenzelm parents: 
17756diff
changeset | 189 | bounds: int * ((string * typ) * string) list, | 
| 32738 | 190 | depth: int * bool Unsynchronized.ref, | 
| 20289 | 191 | context: Proof.context option} * | 
| 30908 
7ccf4a3d764c
replace type cong = {thm : thm, lhs : term} by plain thm -- the other component has been unused for a long time.
 krauss parents: 
30552diff
changeset | 192 |    {congs: (string * thm) list * string list,
 | 
| 15023 | 193 | procs: proc Net.net, | 
| 36543 
0e7fc5bf38de
proper context for mksimps etc. -- via simpset of the running Simplifier;
 wenzelm parents: 
36354diff
changeset | 194 | mk_rews: | 
| 
0e7fc5bf38de
proper context for mksimps etc. -- via simpset of the running Simplifier;
 wenzelm parents: 
36354diff
changeset | 195 |      {mk: simpset -> thm -> thm list,
 | 
| 
0e7fc5bf38de
proper context for mksimps etc. -- via simpset of the running Simplifier;
 wenzelm parents: 
36354diff
changeset | 196 | mk_cong: simpset -> thm -> thm, | 
| 
0e7fc5bf38de
proper context for mksimps etc. -- via simpset of the running Simplifier;
 wenzelm parents: 
36354diff
changeset | 197 | mk_sym: simpset -> thm -> thm option, | 
| 
0e7fc5bf38de
proper context for mksimps etc. -- via simpset of the running Simplifier;
 wenzelm parents: 
36354diff
changeset | 198 | mk_eq_True: simpset -> thm -> thm option, | 
| 
0e7fc5bf38de
proper context for mksimps etc. -- via simpset of the running Simplifier;
 wenzelm parents: 
36354diff
changeset | 199 | reorient: theory -> term list -> term -> term -> bool}, | 
| 11504 | 200 | termless: term * term -> bool, | 
| 15011 | 201 | subgoal_tac: simpset -> int -> tactic, | 
| 17882 
b6e44fc46cf0
added set/addloop' for simpset dependent loopers;
 wenzelm parents: 
17756diff
changeset | 202 | loop_tacs: (string * (simpset -> int -> tactic)) list, | 
| 15023 | 203 | solvers: solver list * solver list} | 
| 204 | and proc = | |
| 205 | Proc of | |
| 206 |    {name: string,
 | |
| 207 | lhs: cterm, | |
| 22008 | 208 | proc: simpset -> cterm -> thm option, | 
| 22234 | 209 | id: stamp * thm list} | 
| 17614 | 210 | and solver = | 
| 211 | Solver of | |
| 212 |    {name: string,
 | |
| 213 | solver: simpset -> int -> tactic, | |
| 15023 | 214 | id: stamp}; | 
| 215 | ||
| 216 | ||
| 30336 | 217 | fun internal_ss (Simpset args) = args; | 
| 10413 | 218 | |
| 22892 
c77a1e1c7323
simp_depth: now proper value in simpset (prevents problems with lost exception trace, enables multi-threaded simplification);
 wenzelm parents: 
22717diff
changeset | 219 | fun make_ss1 (rules, prems, bounds, depth, context) = | 
| 
c77a1e1c7323
simp_depth: now proper value in simpset (prevents problems with lost exception trace, enables multi-threaded simplification);
 wenzelm parents: 
22717diff
changeset | 220 |   {rules = rules, prems = prems, bounds = bounds, depth = depth, context = context};
 | 
| 15023 | 221 | |
| 22892 
c77a1e1c7323
simp_depth: now proper value in simpset (prevents problems with lost exception trace, enables multi-threaded simplification);
 wenzelm parents: 
22717diff
changeset | 222 | fun map_ss1 f {rules, prems, bounds, depth, context} =
 | 
| 
c77a1e1c7323
simp_depth: now proper value in simpset (prevents problems with lost exception trace, enables multi-threaded simplification);
 wenzelm parents: 
22717diff
changeset | 223 | make_ss1 (f (rules, prems, bounds, depth, context)); | 
| 10413 | 224 | |
| 15023 | 225 | fun make_ss2 (congs, procs, mk_rews, termless, subgoal_tac, loop_tacs, solvers) = | 
| 226 |   {congs = congs, procs = procs, mk_rews = mk_rews, termless = termless,
 | |
| 227 | subgoal_tac = subgoal_tac, loop_tacs = loop_tacs, solvers = solvers}; | |
| 228 | ||
| 229 | fun map_ss2 f {congs, procs, mk_rews, termless, subgoal_tac, loop_tacs, solvers} =
 | |
| 230 | make_ss2 (f (congs, procs, mk_rews, termless, subgoal_tac, loop_tacs, solvers)); | |
| 231 | ||
| 232 | fun make_simpset (args1, args2) = Simpset (make_ss1 args1, make_ss2 args2); | |
| 10413 | 233 | |
| 15023 | 234 | fun map_simpset1 f (Simpset (r1, r2)) = Simpset (map_ss1 f r1, r2); | 
| 235 | fun map_simpset2 f (Simpset (r1, r2)) = Simpset (r1, map_ss2 f r2); | |
| 236 | ||
| 17614 | 237 | fun prems_of_ss (Simpset ({prems, ...}, _)) = prems;
 | 
| 238 | ||
| 22234 | 239 | fun eq_procid ((s1: stamp, ths1: thm list), (s2, ths2)) = | 
| 22360 
26ead7ed4f4b
moved eq_thm etc. to structure Thm in Pure/more_thm.ML;
 wenzelm parents: 
22254diff
changeset | 240 | s1 = s2 andalso eq_list Thm.eq_thm (ths1, ths2); | 
| 22234 | 241 | fun eq_proc (Proc {id = id1, ...}, Proc {id = id2, ...}) = eq_procid (id1, id2);
 | 
| 17614 | 242 | |
| 243 | fun mk_solver' name solver = Solver {name = name, solver = solver, id = stamp ()};
 | |
| 244 | fun mk_solver name solver = mk_solver' name (solver o prems_of_ss); | |
| 245 | ||
| 246 | fun solver_name (Solver {name, ...}) = name;
 | |
| 17966 
34e420fa03ad
moved various simplification tactics and rules to simplifier.ML;
 wenzelm parents: 
17897diff
changeset | 247 | fun solver ss (Solver {solver = tac, ...}) = tac ss;
 | 
| 17614 | 248 | fun eq_solver (Solver {id = id1, ...}, Solver {id = id2, ...}) = (id1 = id2);
 | 
| 249 | ||
| 15023 | 250 | |
| 22892 
c77a1e1c7323
simp_depth: now proper value in simpset (prevents problems with lost exception trace, enables multi-threaded simplification);
 wenzelm parents: 
22717diff
changeset | 251 | (* simp depth *) | 
| 
c77a1e1c7323
simp_depth: now proper value in simpset (prevents problems with lost exception trace, enables multi-threaded simplification);
 wenzelm parents: 
22717diff
changeset | 252 | |
| 39163 
4d701c0388c3
more explicit indication of Config.raw options, which are only needed for bootstrapping Pure;
 wenzelm parents: 
39116diff
changeset | 253 | val simp_depth_limit_raw = Config.declare "simp_depth_limit" (K (Config.Int 100)); | 
| 
4d701c0388c3
more explicit indication of Config.raw options, which are only needed for bootstrapping Pure;
 wenzelm parents: 
39116diff
changeset | 254 | val simp_depth_limit = Config.int simp_depth_limit_raw; | 
| 24124 
4399175e3014
turned simp_depth_limit into configuration option;
 wenzelm parents: 
23938diff
changeset | 255 | |
| 32738 | 256 | val trace_simp_depth_limit = Unsynchronized.ref 1; | 
| 22892 
c77a1e1c7323
simp_depth: now proper value in simpset (prevents problems with lost exception trace, enables multi-threaded simplification);
 wenzelm parents: 
22717diff
changeset | 257 | |
| 
c77a1e1c7323
simp_depth: now proper value in simpset (prevents problems with lost exception trace, enables multi-threaded simplification);
 wenzelm parents: 
22717diff
changeset | 258 | fun trace_depth (Simpset ({depth = (depth, exceeded), ...}, _)) msg =
 | 
| 23938 | 259 | if depth > ! trace_simp_depth_limit then | 
| 260 | if ! exceeded then () else (tracing "trace_simp_depth_limit exceeded!"; exceeded := true) | |
| 22892 
c77a1e1c7323
simp_depth: now proper value in simpset (prevents problems with lost exception trace, enables multi-threaded simplification);
 wenzelm parents: 
22717diff
changeset | 261 | else | 
| 23938 | 262 | (tracing (enclose "[" "]" (string_of_int depth) ^ msg); exceeded := false); | 
| 22892 
c77a1e1c7323
simp_depth: now proper value in simpset (prevents problems with lost exception trace, enables multi-threaded simplification);
 wenzelm parents: 
22717diff
changeset | 263 | |
| 
c77a1e1c7323
simp_depth: now proper value in simpset (prevents problems with lost exception trace, enables multi-threaded simplification);
 wenzelm parents: 
22717diff
changeset | 264 | val inc_simp_depth = map_simpset1 (fn (rules, prems, bounds, (depth, exceeded), context) => | 
| 
c77a1e1c7323
simp_depth: now proper value in simpset (prevents problems with lost exception trace, enables multi-threaded simplification);
 wenzelm parents: 
22717diff
changeset | 265 | (rules, prems, bounds, | 
| 32738 | 266 | (depth + 1, | 
| 267 | if depth = ! trace_simp_depth_limit then Unsynchronized.ref false else exceeded), context)); | |
| 22892 
c77a1e1c7323
simp_depth: now proper value in simpset (prevents problems with lost exception trace, enables multi-threaded simplification);
 wenzelm parents: 
22717diff
changeset | 268 | |
| 
c77a1e1c7323
simp_depth: now proper value in simpset (prevents problems with lost exception trace, enables multi-threaded simplification);
 wenzelm parents: 
22717diff
changeset | 269 | fun simp_depth (Simpset ({depth = (depth, _), ...}, _)) = depth;
 | 
| 
c77a1e1c7323
simp_depth: now proper value in simpset (prevents problems with lost exception trace, enables multi-threaded simplification);
 wenzelm parents: 
22717diff
changeset | 270 | |
| 
c77a1e1c7323
simp_depth: now proper value in simpset (prevents problems with lost exception trace, enables multi-threaded simplification);
 wenzelm parents: 
22717diff
changeset | 271 | |
| 16985 
7df8abe926c3
improved bounds: nameless Term.bound, recover names for output;
 wenzelm parents: 
16938diff
changeset | 272 | (* diagnostics *) | 
| 
7df8abe926c3
improved bounds: nameless Term.bound, recover names for output;
 wenzelm parents: 
16938diff
changeset | 273 | |
| 
7df8abe926c3
improved bounds: nameless Term.bound, recover names for output;
 wenzelm parents: 
16938diff
changeset | 274 | exception SIMPLIFIER of string * thm; | 
| 
7df8abe926c3
improved bounds: nameless Term.bound, recover names for output;
 wenzelm parents: 
16938diff
changeset | 275 | |
| 39163 
4d701c0388c3
more explicit indication of Config.raw options, which are only needed for bootstrapping Pure;
 wenzelm parents: 
39116diff
changeset | 276 | val debug_simp_raw = Config.declare "debug_simp" (K (Config.Bool false)); | 
| 
4d701c0388c3
more explicit indication of Config.raw options, which are only needed for bootstrapping Pure;
 wenzelm parents: 
39116diff
changeset | 277 | val debug_simp = Config.bool debug_simp_raw; | 
| 35979 
12bb31230550
replaced references 'trace_simp' and 'debug_simp' by configuration options stored in the context
 boehmes parents: 
35845diff
changeset | 278 | |
| 36006 
7ddc33baf959
the configuration option 'trace_simp' now uses the reference of the ProofGeneral settings menu as (dynamic) default value
 boehmes parents: 
36001diff
changeset | 279 | val trace_simp_default = Unsynchronized.ref false; | 
| 39163 
4d701c0388c3
more explicit indication of Config.raw options, which are only needed for bootstrapping Pure;
 wenzelm parents: 
39116diff
changeset | 280 | val trace_simp_raw = Config.declare "trace_simp" (fn _ => Config.Bool (! trace_simp_default)); | 
| 
4d701c0388c3
more explicit indication of Config.raw options, which are only needed for bootstrapping Pure;
 wenzelm parents: 
39116diff
changeset | 281 | val trace_simp = Config.bool trace_simp_raw; | 
| 22892 
c77a1e1c7323
simp_depth: now proper value in simpset (prevents problems with lost exception trace, enables multi-threaded simplification);
 wenzelm parents: 
22717diff
changeset | 282 | |
| 38834 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 283 | fun if_enabled (Simpset ({context, ...}, _)) flag f =
 | 
| 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 284 | (case context of | 
| 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 285 | SOME ctxt => if Config.get ctxt flag then f ctxt else () | 
| 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 286 | | NONE => ()) | 
| 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 287 | |
| 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 288 | fun if_visible (Simpset ({context, ...}, _)) f x =
 | 
| 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 289 | (case context of | 
| 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 290 | SOME ctxt => if Context_Position.is_visible ctxt then f x else () | 
| 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 291 | | NONE => ()); | 
| 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 292 | |
| 16985 
7df8abe926c3
improved bounds: nameless Term.bound, recover names for output;
 wenzelm parents: 
16938diff
changeset | 293 | local | 
| 
7df8abe926c3
improved bounds: nameless Term.bound, recover names for output;
 wenzelm parents: 
16938diff
changeset | 294 | |
| 22892 
c77a1e1c7323
simp_depth: now proper value in simpset (prevents problems with lost exception trace, enables multi-threaded simplification);
 wenzelm parents: 
22717diff
changeset | 295 | fun prnt ss warn a = if warn then warning a else trace_depth ss a; | 
| 16985 
7df8abe926c3
improved bounds: nameless Term.bound, recover names for output;
 wenzelm parents: 
16938diff
changeset | 296 | |
| 
7df8abe926c3
improved bounds: nameless Term.bound, recover names for output;
 wenzelm parents: 
16938diff
changeset | 297 | fun show_bounds (Simpset ({bounds = (_, bs), ...}, _)) t =
 | 
| 
7df8abe926c3
improved bounds: nameless Term.bound, recover names for output;
 wenzelm parents: 
16938diff
changeset | 298 | let | 
| 20146 | 299 | val names = Term.declare_term_names t Name.context; | 
| 300 | val xs = rev (#1 (Name.variants (rev (map #2 bs)) names)); | |
| 17614 | 301 | fun subst (((b, T), _), x') = (Free (b, T), Syntax.mark_boundT (x', T)); | 
| 16985 
7df8abe926c3
improved bounds: nameless Term.bound, recover names for output;
 wenzelm parents: 
16938diff
changeset | 302 | in Term.subst_atomic (ListPair.map subst (bs, xs)) t end; | 
| 
7df8abe926c3
improved bounds: nameless Term.bound, recover names for output;
 wenzelm parents: 
16938diff
changeset | 303 | |
| 35979 
12bb31230550
replaced references 'trace_simp' and 'debug_simp' by configuration options stored in the context
 boehmes parents: 
35845diff
changeset | 304 | fun print_term ss warn a t ctxt = prnt ss warn (a () ^ "\n" ^ | 
| 
12bb31230550
replaced references 'trace_simp' and 'debug_simp' by configuration options stored in the context
 boehmes parents: 
35845diff
changeset | 305 | Syntax.string_of_term ctxt | 
| 
12bb31230550
replaced references 'trace_simp' and 'debug_simp' by configuration options stored in the context
 boehmes parents: 
35845diff
changeset | 306 | (if Config.get ctxt debug_simp then t else show_bounds ss t)); | 
| 
12bb31230550
replaced references 'trace_simp' and 'debug_simp' by configuration options stored in the context
 boehmes parents: 
35845diff
changeset | 307 | |
| 17705 | 308 | in | 
| 309 | ||
| 35979 
12bb31230550
replaced references 'trace_simp' and 'debug_simp' by configuration options stored in the context
 boehmes parents: 
35845diff
changeset | 310 | fun print_term_global ss warn a thy t = | 
| 36610 
bafd82950e24
renamed ProofContext.init to ProofContext.init_global to emphasize that this is not the real thing;
 wenzelm parents: 
36545diff
changeset | 311 | print_term ss warn (K a) t (ProofContext.init_global thy); | 
| 16985 
7df8abe926c3
improved bounds: nameless Term.bound, recover names for output;
 wenzelm parents: 
16938diff
changeset | 312 | |
| 36006 
7ddc33baf959
the configuration option 'trace_simp' now uses the reference of the ProofGeneral settings menu as (dynamic) default value
 boehmes parents: 
36001diff
changeset | 313 | fun debug warn a ss = if_enabled ss debug_simp (fn _ => prnt ss warn (a ())); | 
| 
7ddc33baf959
the configuration option 'trace_simp' now uses the reference of the ProofGeneral settings menu as (dynamic) default value
 boehmes parents: 
36001diff
changeset | 314 | fun trace warn a ss = if_enabled ss trace_simp (fn _ => prnt ss warn (a ())); | 
| 35979 
12bb31230550
replaced references 'trace_simp' and 'debug_simp' by configuration options stored in the context
 boehmes parents: 
35845diff
changeset | 315 | |
| 36006 
7ddc33baf959
the configuration option 'trace_simp' now uses the reference of the ProofGeneral settings menu as (dynamic) default value
 boehmes parents: 
36001diff
changeset | 316 | fun debug_term warn a ss t = if_enabled ss debug_simp (print_term ss warn a t); | 
| 
7ddc33baf959
the configuration option 'trace_simp' now uses the reference of the ProofGeneral settings menu as (dynamic) default value
 boehmes parents: 
36001diff
changeset | 317 | fun trace_term warn a ss t = if_enabled ss trace_simp (print_term ss warn a t); | 
| 16985 
7df8abe926c3
improved bounds: nameless Term.bound, recover names for output;
 wenzelm parents: 
16938diff
changeset | 318 | |
| 
7df8abe926c3
improved bounds: nameless Term.bound, recover names for output;
 wenzelm parents: 
16938diff
changeset | 319 | fun trace_cterm warn a ss ct = | 
| 36006 
7ddc33baf959
the configuration option 'trace_simp' now uses the reference of the ProofGeneral settings menu as (dynamic) default value
 boehmes parents: 
36001diff
changeset | 320 | if_enabled ss trace_simp (print_term ss warn a (Thm.term_of ct)); | 
| 16985 
7df8abe926c3
improved bounds: nameless Term.bound, recover names for output;
 wenzelm parents: 
16938diff
changeset | 321 | |
| 
7df8abe926c3
improved bounds: nameless Term.bound, recover names for output;
 wenzelm parents: 
16938diff
changeset | 322 | fun trace_thm a ss th = | 
| 36006 
7ddc33baf959
the configuration option 'trace_simp' now uses the reference of the ProofGeneral settings menu as (dynamic) default value
 boehmes parents: 
36001diff
changeset | 323 | if_enabled ss trace_simp (print_term ss false a (Thm.full_prop_of th)); | 
| 16985 
7df8abe926c3
improved bounds: nameless Term.bound, recover names for output;
 wenzelm parents: 
16938diff
changeset | 324 | |
| 
7df8abe926c3
improved bounds: nameless Term.bound, recover names for output;
 wenzelm parents: 
16938diff
changeset | 325 | fun trace_named_thm a ss (th, name) = | 
| 36006 
7ddc33baf959
the configuration option 'trace_simp' now uses the reference of the ProofGeneral settings menu as (dynamic) default value
 boehmes parents: 
36001diff
changeset | 326 | if_enabled ss trace_simp (print_term ss false | 
| 35979 
12bb31230550
replaced references 'trace_simp' and 'debug_simp' by configuration options stored in the context
 boehmes parents: 
35845diff
changeset | 327 | (fn () => if name = "" then a () else a () ^ " " ^ quote name ^ ":") | 
| 
12bb31230550
replaced references 'trace_simp' and 'debug_simp' by configuration options stored in the context
 boehmes parents: 
35845diff
changeset | 328 | (Thm.full_prop_of th)); | 
| 16985 
7df8abe926c3
improved bounds: nameless Term.bound, recover names for output;
 wenzelm parents: 
16938diff
changeset | 329 | |
| 22892 
c77a1e1c7323
simp_depth: now proper value in simpset (prevents problems with lost exception trace, enables multi-threaded simplification);
 wenzelm parents: 
22717diff
changeset | 330 | fun warn_thm a ss th = | 
| 35979 
12bb31230550
replaced references 'trace_simp' and 'debug_simp' by configuration options stored in the context
 boehmes parents: 
35845diff
changeset | 331 | print_term_global ss true a (Thm.theory_of_thm th) (Thm.full_prop_of th); | 
| 16985 
7df8abe926c3
improved bounds: nameless Term.bound, recover names for output;
 wenzelm parents: 
16938diff
changeset | 332 | |
| 38834 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 333 | fun cond_warn_thm a ss th = if_visible ss (fn () => warn_thm a ss th) (); | 
| 20028 
b9752164ad92
add/del_simps: warning for inactive simpset (no context);
 wenzelm parents: 
19798diff
changeset | 334 | |
| 16985 
7df8abe926c3
improved bounds: nameless Term.bound, recover names for output;
 wenzelm parents: 
16938diff
changeset | 335 | end; | 
| 
7df8abe926c3
improved bounds: nameless Term.bound, recover names for output;
 wenzelm parents: 
16938diff
changeset | 336 | |
| 
7df8abe926c3
improved bounds: nameless Term.bound, recover names for output;
 wenzelm parents: 
16938diff
changeset | 337 | |
| 10413 | 338 | |
| 339 | (** simpset operations **) | |
| 340 | ||
| 17882 
b6e44fc46cf0
added set/addloop' for simpset dependent loopers;
 wenzelm parents: 
17756diff
changeset | 341 | (* context *) | 
| 10413 | 342 | |
| 17614 | 343 | fun eq_bound (x: string, (y, _)) = x = y; | 
| 344 | ||
| 22892 
c77a1e1c7323
simp_depth: now proper value in simpset (prevents problems with lost exception trace, enables multi-threaded simplification);
 wenzelm parents: 
22717diff
changeset | 345 | fun add_bound bound = map_simpset1 (fn (rules, prems, (count, bounds), depth, context) => | 
| 
c77a1e1c7323
simp_depth: now proper value in simpset (prevents problems with lost exception trace, enables multi-threaded simplification);
 wenzelm parents: 
22717diff
changeset | 346 | (rules, prems, (count + 1, bound :: bounds), depth, context)); | 
| 17882 
b6e44fc46cf0
added set/addloop' for simpset dependent loopers;
 wenzelm parents: 
17756diff
changeset | 347 | |
| 22892 
c77a1e1c7323
simp_depth: now proper value in simpset (prevents problems with lost exception trace, enables multi-threaded simplification);
 wenzelm parents: 
22717diff
changeset | 348 | fun add_prems ths = map_simpset1 (fn (rules, prems, bounds, depth, context) => | 
| 
c77a1e1c7323
simp_depth: now proper value in simpset (prevents problems with lost exception trace, enables multi-threaded simplification);
 wenzelm parents: 
22717diff
changeset | 349 | (rules, ths @ prems, bounds, depth, context)); | 
| 17882 
b6e44fc46cf0
added set/addloop' for simpset dependent loopers;
 wenzelm parents: 
17756diff
changeset | 350 | |
| 22892 
c77a1e1c7323
simp_depth: now proper value in simpset (prevents problems with lost exception trace, enables multi-threaded simplification);
 wenzelm parents: 
22717diff
changeset | 351 | fun inherit_context (Simpset ({bounds, depth, context, ...}, _)) =
 | 
| 
c77a1e1c7323
simp_depth: now proper value in simpset (prevents problems with lost exception trace, enables multi-threaded simplification);
 wenzelm parents: 
22717diff
changeset | 352 | map_simpset1 (fn (rules, prems, _, _, _) => (rules, prems, bounds, depth, context)); | 
| 16985 
7df8abe926c3
improved bounds: nameless Term.bound, recover names for output;
 wenzelm parents: 
16938diff
changeset | 353 | |
| 17882 
b6e44fc46cf0
added set/addloop' for simpset dependent loopers;
 wenzelm parents: 
17756diff
changeset | 354 | fun the_context (Simpset ({context = SOME ctxt, ...}, _)) = ctxt
 | 
| 
b6e44fc46cf0
added set/addloop' for simpset dependent loopers;
 wenzelm parents: 
17756diff
changeset | 355 | | the_context _ = raise Fail "Simplifier: no proof context in simpset"; | 
| 10413 | 356 | |
| 17897 | 357 | fun context ctxt = | 
| 22892 
c77a1e1c7323
simp_depth: now proper value in simpset (prevents problems with lost exception trace, enables multi-threaded simplification);
 wenzelm parents: 
22717diff
changeset | 358 | map_simpset1 (fn (rules, prems, bounds, depth, _) => (rules, prems, bounds, depth, SOME ctxt)); | 
| 17882 
b6e44fc46cf0
added set/addloop' for simpset dependent loopers;
 wenzelm parents: 
17756diff
changeset | 359 | |
| 36610 
bafd82950e24
renamed ProofContext.init to ProofContext.init_global to emphasize that this is not the real thing;
 wenzelm parents: 
36545diff
changeset | 360 | val global_context = context o ProofContext.init_global; | 
| 17897 | 361 | |
| 27312 
2a884461a9f3
activate_context: strict the_context, no fallback on theory context;
 wenzelm parents: 
27022diff
changeset | 362 | fun activate_context thy ss = | 
| 
2a884461a9f3
activate_context: strict the_context, no fallback on theory context;
 wenzelm parents: 
27022diff
changeset | 363 | let | 
| 
2a884461a9f3
activate_context: strict the_context, no fallback on theory context;
 wenzelm parents: 
27022diff
changeset | 364 | val ctxt = the_context ss; | 
| 36545 
5c5b5c7f1157
conditional warnings: explicitly observe context visibility flag, not just accidental presence of a context;
 wenzelm parents: 
36543diff
changeset | 365 | val ctxt' = ctxt | 
| 
5c5b5c7f1157
conditional warnings: explicitly observe context visibility flag, not just accidental presence of a context;
 wenzelm parents: 
36543diff
changeset | 366 | |> Context.raw_transfer (Theory.merge (thy, ProofContext.theory_of ctxt)) | 
| 
5c5b5c7f1157
conditional warnings: explicitly observe context visibility flag, not just accidental presence of a context;
 wenzelm parents: 
36543diff
changeset | 367 | |> Context_Position.set_visible false; | 
| 27312 
2a884461a9f3
activate_context: strict the_context, no fallback on theory context;
 wenzelm parents: 
27022diff
changeset | 368 | in context ctxt' ss end; | 
| 17897 | 369 | |
| 36545 
5c5b5c7f1157
conditional warnings: explicitly observe context visibility flag, not just accidental presence of a context;
 wenzelm parents: 
36543diff
changeset | 370 | fun with_context ctxt f ss = inherit_context ss (f (context ctxt ss)); | 
| 
5c5b5c7f1157
conditional warnings: explicitly observe context visibility flag, not just accidental presence of a context;
 wenzelm parents: 
36543diff
changeset | 371 | |
| 17897 | 372 | |
| 20028 
b9752164ad92
add/del_simps: warning for inactive simpset (no context);
 wenzelm parents: 
19798diff
changeset | 373 | (* maintain simp rules *) | 
| 10413 | 374 | |
| 20546 
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
 wenzelm parents: 
20330diff
changeset | 375 | (* FIXME: it seems that the conditions on extra variables are too liberal if | 
| 
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
 wenzelm parents: 
20330diff
changeset | 376 | prems are nonempty: does solving the prems really guarantee instantiation of | 
| 
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
 wenzelm parents: 
20330diff
changeset | 377 | all its Vars? Better: a dynamic check each time a rule is applied. | 
| 
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
 wenzelm parents: 
20330diff
changeset | 378 | *) | 
| 
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
 wenzelm parents: 
20330diff
changeset | 379 | fun rewrite_rule_extra_vars prems elhs erhs = | 
| 
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
 wenzelm parents: 
20330diff
changeset | 380 | let | 
| 
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
 wenzelm parents: 
20330diff
changeset | 381 | val elhss = elhs :: prems; | 
| 
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
 wenzelm parents: 
20330diff
changeset | 382 | val tvars = fold Term.add_tvars elhss []; | 
| 
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
 wenzelm parents: 
20330diff
changeset | 383 | val vars = fold Term.add_vars elhss []; | 
| 
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
 wenzelm parents: 
20330diff
changeset | 384 | in | 
| 
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
 wenzelm parents: 
20330diff
changeset | 385 | erhs |> Term.exists_type (Term.exists_subtype | 
| 
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
 wenzelm parents: 
20330diff
changeset | 386 | (fn TVar v => not (member (op =) tvars v) | _ => false)) orelse | 
| 
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
 wenzelm parents: 
20330diff
changeset | 387 | erhs |> Term.exists_subterm | 
| 
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
 wenzelm parents: 
20330diff
changeset | 388 | (fn Var v => not (member (op =) vars v) | _ => false) | 
| 
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
 wenzelm parents: 
20330diff
changeset | 389 | end; | 
| 
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
 wenzelm parents: 
20330diff
changeset | 390 | |
| 
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
 wenzelm parents: 
20330diff
changeset | 391 | fun rrule_extra_vars elhs thm = | 
| 
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
 wenzelm parents: 
20330diff
changeset | 392 | rewrite_rule_extra_vars [] (term_of elhs) (Thm.full_prop_of thm); | 
| 
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
 wenzelm parents: 
20330diff
changeset | 393 | |
| 15023 | 394 | fun mk_rrule2 {thm, name, lhs, elhs, perm} =
 | 
| 395 | let | |
| 20546 
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
 wenzelm parents: 
20330diff
changeset | 396 | val t = term_of elhs; | 
| 
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
 wenzelm parents: 
20330diff
changeset | 397 | val fo = Pattern.first_order t orelse not (Pattern.pattern t); | 
| 
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
 wenzelm parents: 
20330diff
changeset | 398 | val extra = rrule_extra_vars elhs thm; | 
| 
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
 wenzelm parents: 
20330diff
changeset | 399 |   in {thm = thm, name = name, lhs = lhs, elhs = elhs, extra = extra, fo = fo, perm = perm} end;
 | 
| 10413 | 400 | |
| 20028 
b9752164ad92
add/del_simps: warning for inactive simpset (no context);
 wenzelm parents: 
19798diff
changeset | 401 | fun del_rrule (rrule as {thm, elhs, ...}) ss =
 | 
| 22892 
c77a1e1c7323
simp_depth: now proper value in simpset (prevents problems with lost exception trace, enables multi-threaded simplification);
 wenzelm parents: 
22717diff
changeset | 402 | ss |> map_simpset1 (fn (rules, prems, bounds, depth, context) => | 
| 
c77a1e1c7323
simp_depth: now proper value in simpset (prevents problems with lost exception trace, enables multi-threaded simplification);
 wenzelm parents: 
22717diff
changeset | 403 | (Net.delete_term eq_rrule (term_of elhs, rrule) rules, prems, bounds, depth, context)) | 
| 20028 
b9752164ad92
add/del_simps: warning for inactive simpset (no context);
 wenzelm parents: 
19798diff
changeset | 404 | handle Net.DELETE => (cond_warn_thm "Rewrite rule not in simpset:" ss thm; ss); | 
| 
b9752164ad92
add/del_simps: warning for inactive simpset (no context);
 wenzelm parents: 
19798diff
changeset | 405 | |
| 32797 | 406 | fun insert_rrule (rrule as {thm, name, ...}) ss =
 | 
| 22254 | 407 | (trace_named_thm (fn () => "Adding rewrite rule") ss (thm, name); | 
| 22892 
c77a1e1c7323
simp_depth: now proper value in simpset (prevents problems with lost exception trace, enables multi-threaded simplification);
 wenzelm parents: 
22717diff
changeset | 408 | ss |> map_simpset1 (fn (rules, prems, bounds, depth, context) => | 
| 15023 | 409 | let | 
| 410 |       val rrule2 as {elhs, ...} = mk_rrule2 rrule;
 | |
| 16807 | 411 | val rules' = Net.insert_term eq_rrule (term_of elhs, rrule2) rules; | 
| 22892 
c77a1e1c7323
simp_depth: now proper value in simpset (prevents problems with lost exception trace, enables multi-threaded simplification);
 wenzelm parents: 
22717diff
changeset | 412 | in (rules', prems, bounds, depth, context) end) | 
| 20028 
b9752164ad92
add/del_simps: warning for inactive simpset (no context);
 wenzelm parents: 
19798diff
changeset | 413 | handle Net.INSERT => (cond_warn_thm "Ignoring duplicate rewrite rule:" ss thm; ss)); | 
| 10413 | 414 | |
| 415 | fun vperm (Var _, Var _) = true | |
| 416 | | vperm (Abs (_, _, s), Abs (_, _, t)) = vperm (s, t) | |
| 417 | | vperm (t1 $ t2, u1 $ u2) = vperm (t1, u1) andalso vperm (t2, u2) | |
| 418 | | vperm (t, u) = (t = u); | |
| 419 | ||
| 420 | fun var_perm (t, u) = | |
| 33038 | 421 | vperm (t, u) andalso eq_set (op =) (Term.add_vars t [], Term.add_vars u []); | 
| 10413 | 422 | |
| 15023 | 423 | (*simple test for looping rewrite rules and stupid orientations*) | 
| 18208 | 424 | fun default_reorient thy prems lhs rhs = | 
| 15023 | 425 | rewrite_rule_extra_vars prems lhs rhs | 
| 426 | orelse | |
| 427 | is_Var (head_of lhs) | |
| 428 | orelse | |
| 16305 | 429 | (* turns t = x around, which causes a headache if x is a local variable - | 
| 430 | usually it is very useful :-( | |
| 431 | is_Free rhs andalso not(is_Free lhs) andalso not(Logic.occs(rhs,lhs)) | |
| 432 | andalso not(exists_subterm is_Var lhs) | |
| 433 | orelse | |
| 434 | *) | |
| 16842 | 435 | exists (fn t => Logic.occs (lhs, t)) (rhs :: prems) | 
| 15023 | 436 | orelse | 
| 17203 | 437 | null prems andalso Pattern.matches thy (lhs, rhs) | 
| 10413 | 438 | (*the condition "null prems" is necessary because conditional rewrites | 
| 439 | with extra variables in the conditions may terminate although | |
| 15023 | 440 | the rhs is an instance of the lhs; example: ?m < ?n ==> f(?n) == f(?m)*) | 
| 441 | orelse | |
| 442 | is_Const lhs andalso not (is_Const rhs); | |
| 10413 | 443 | |
| 444 | fun decomp_simp thm = | |
| 15023 | 445 | let | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26424diff
changeset | 446 | val thy = Thm.theory_of_thm thm; | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26424diff
changeset | 447 | val prop = Thm.prop_of thm; | 
| 15023 | 448 | val prems = Logic.strip_imp_prems prop; | 
| 449 | val concl = Drule.strip_imp_concl (Thm.cprop_of thm); | |
| 22902 
ac833b4bb7ee
moved some Drule operations to Thm (see more_thm.ML);
 wenzelm parents: 
22892diff
changeset | 450 | val (lhs, rhs) = Thm.dest_equals concl handle TERM _ => | 
| 15023 | 451 |       raise SIMPLIFIER ("Rewrite rule not a meta-equality", thm);
 | 
| 20579 | 452 | val elhs = Thm.dest_arg (Thm.cprop_of (Thm.eta_conversion lhs)); | 
| 16665 | 453 | val elhs = if term_of elhs aconv term_of lhs then lhs else elhs; (*share identical copies*) | 
| 18929 | 454 | val erhs = Envir.eta_contract (term_of rhs); | 
| 15023 | 455 | val perm = | 
| 456 | var_perm (term_of elhs, erhs) andalso | |
| 457 | not (term_of elhs aconv erhs) andalso | |
| 458 | not (is_Var (term_of elhs)); | |
| 16458 | 459 | in (thy, prems, term_of lhs, elhs, term_of rhs, perm) end; | 
| 10413 | 460 | |
| 12783 | 461 | fun decomp_simp' thm = | 
| 12979 
4c76bce4ce39
decomp_simp': use lhs instead of elhs (preserves more bound variable names);
 wenzelm parents: 
12783diff
changeset | 462 | let val (_, _, lhs, _, rhs, _) = decomp_simp thm in | 
| 12783 | 463 |     if Thm.nprems_of thm > 0 then raise SIMPLIFIER ("Bad conditional rewrite rule", thm)
 | 
| 12979 
4c76bce4ce39
decomp_simp': use lhs instead of elhs (preserves more bound variable names);
 wenzelm parents: 
12783diff
changeset | 464 | else (lhs, rhs) | 
| 12783 | 465 | end; | 
| 466 | ||
| 36543 
0e7fc5bf38de
proper context for mksimps etc. -- via simpset of the running Simplifier;
 wenzelm parents: 
36354diff
changeset | 467 | fun mk_eq_True (ss as Simpset (_, {mk_rews = {mk_eq_True, ...}, ...})) (thm, name) =
 | 
| 
0e7fc5bf38de
proper context for mksimps etc. -- via simpset of the running Simplifier;
 wenzelm parents: 
36354diff
changeset | 468 | (case mk_eq_True ss thm of | 
| 15531 | 469 | NONE => [] | 
| 470 | | SOME eq_True => | |
| 20546 
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
 wenzelm parents: 
20330diff
changeset | 471 | let | 
| 
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
 wenzelm parents: 
20330diff
changeset | 472 | val (_, _, lhs, elhs, _, _) = decomp_simp eq_True; | 
| 15023 | 473 |       in [{thm = eq_True, name = name, lhs = lhs, elhs = elhs, perm = false}] end);
 | 
| 10413 | 474 | |
| 15023 | 475 | (*create the rewrite rule and possibly also the eq_True variant, | 
| 476 | in case there are extra vars on the rhs*) | |
| 477 | fun rrule_eq_True (thm, name, lhs, elhs, rhs, ss, thm2) = | |
| 478 |   let val rrule = {thm = thm, name = name, lhs = lhs, elhs = elhs, perm = false} in
 | |
| 20546 
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
 wenzelm parents: 
20330diff
changeset | 479 | if rewrite_rule_extra_vars [] lhs rhs then | 
| 
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
 wenzelm parents: 
20330diff
changeset | 480 | mk_eq_True ss (thm2, name) @ [rrule] | 
| 
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
 wenzelm parents: 
20330diff
changeset | 481 | else [rrule] | 
| 10413 | 482 | end; | 
| 483 | ||
| 15023 | 484 | fun mk_rrule ss (thm, name) = | 
| 485 | let val (_, prems, lhs, elhs, rhs, perm) = decomp_simp thm in | |
| 486 |     if perm then [{thm = thm, name = name, lhs = lhs, elhs = elhs, perm = true}]
 | |
| 487 | else | |
| 488 | (*weak test for loops*) | |
| 489 | if rewrite_rule_extra_vars prems lhs rhs orelse is_Var (term_of elhs) | |
| 490 | then mk_eq_True ss (thm, name) | |
| 491 | else rrule_eq_True (thm, name, lhs, elhs, rhs, ss, thm) | |
| 10413 | 492 | end; | 
| 493 | ||
| 15023 | 494 | fun orient_rrule ss (thm, name) = | 
| 18208 | 495 | let | 
| 496 | val (thy, prems, lhs, elhs, rhs, perm) = decomp_simp thm; | |
| 497 |     val Simpset (_, {mk_rews = {reorient, mk_sym, ...}, ...}) = ss;
 | |
| 498 | in | |
| 15023 | 499 |     if perm then [{thm = thm, name = name, lhs = lhs, elhs = elhs, perm = true}]
 | 
| 16458 | 500 | else if reorient thy prems lhs rhs then | 
| 501 | if reorient thy prems rhs lhs | |
| 15023 | 502 | then mk_eq_True ss (thm, name) | 
| 503 | else | |
| 36543 
0e7fc5bf38de
proper context for mksimps etc. -- via simpset of the running Simplifier;
 wenzelm parents: 
36354diff
changeset | 504 | (case mk_sym ss thm of | 
| 18208 | 505 | NONE => [] | 
| 506 | | SOME thm' => | |
| 507 | let val (_, _, lhs', elhs', rhs', _) = decomp_simp thm' | |
| 508 | in rrule_eq_True (thm', name, lhs', elhs', rhs', ss, thm) end) | |
| 15023 | 509 | else rrule_eq_True (thm, name, lhs, elhs, rhs, ss, thm) | 
| 10413 | 510 | end; | 
| 511 | ||
| 36543 
0e7fc5bf38de
proper context for mksimps etc. -- via simpset of the running Simplifier;
 wenzelm parents: 
36354diff
changeset | 512 | fun extract_rews (ss as Simpset (_, {mk_rews = {mk, ...}, ...}), thms) =
 | 
| 
0e7fc5bf38de
proper context for mksimps etc. -- via simpset of the running Simplifier;
 wenzelm parents: 
36354diff
changeset | 513 | maps (fn thm => map (rpair (Thm.get_name_hint thm)) (mk ss thm)) thms; | 
| 10413 | 514 | |
| 15023 | 515 | fun extract_safe_rrules (ss, thm) = | 
| 19482 
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
 wenzelm parents: 
19303diff
changeset | 516 | maps (orient_rrule ss) (extract_rews (ss, [thm])); | 
| 10413 | 517 | |
| 518 | ||
| 20028 
b9752164ad92
add/del_simps: warning for inactive simpset (no context);
 wenzelm parents: 
19798diff
changeset | 519 | (* add/del rules explicitly *) | 
| 10413 | 520 | |
| 20028 
b9752164ad92
add/del_simps: warning for inactive simpset (no context);
 wenzelm parents: 
19798diff
changeset | 521 | fun comb_simps comb mk_rrule (ss, thms) = | 
| 
b9752164ad92
add/del_simps: warning for inactive simpset (no context);
 wenzelm parents: 
19798diff
changeset | 522 | let | 
| 
b9752164ad92
add/del_simps: warning for inactive simpset (no context);
 wenzelm parents: 
19798diff
changeset | 523 | val rews = extract_rews (ss, thms); | 
| 
b9752164ad92
add/del_simps: warning for inactive simpset (no context);
 wenzelm parents: 
19798diff
changeset | 524 | in fold (fold comb o mk_rrule) rews ss end; | 
| 10413 | 525 | |
| 20028 
b9752164ad92
add/del_simps: warning for inactive simpset (no context);
 wenzelm parents: 
19798diff
changeset | 526 | fun ss addsimps thms = | 
| 
b9752164ad92
add/del_simps: warning for inactive simpset (no context);
 wenzelm parents: 
19798diff
changeset | 527 | comb_simps insert_rrule (mk_rrule ss) (ss, thms); | 
| 10413 | 528 | |
| 15023 | 529 | fun ss delsimps thms = | 
| 20028 
b9752164ad92
add/del_simps: warning for inactive simpset (no context);
 wenzelm parents: 
19798diff
changeset | 530 | comb_simps del_rrule (map mk_rrule2 o mk_rrule ss) (ss, thms); | 
| 15023 | 531 | |
| 27558 | 532 | fun add_simp thm ss = ss addsimps [thm]; | 
| 533 | fun del_simp thm ss = ss delsimps [thm]; | |
| 15023 | 534 | |
| 30318 
3d03190d2864
replaced archaic use of rep_ss by Simplifier.mksimps;
 wenzelm parents: 
29269diff
changeset | 535 | |
| 15023 | 536 | (* congs *) | 
| 10413 | 537 | |
| 15531 | 538 | fun cong_name (Const (a, _)) = SOME a | 
| 539 |   | cong_name (Free (a, _)) = SOME ("Free: " ^ a)
 | |
| 540 | | cong_name _ = NONE; | |
| 13835 
12b2ffbe543a
Change to meta simplifier: congruence rules may now have frees as head of term.
 ballarin parents: 
13828diff
changeset | 541 | |
| 15023 | 542 | local | 
| 543 | ||
| 544 | fun is_full_cong_prems [] [] = true | |
| 545 | | is_full_cong_prems [] _ = false | |
| 546 | | is_full_cong_prems (p :: prems) varpairs = | |
| 547 | (case Logic.strip_assums_concl p of | |
| 548 |         Const ("==", _) $ lhs $ rhs =>
 | |
| 549 | let val (x, xs) = strip_comb lhs and (y, ys) = strip_comb rhs in | |
| 550 | is_Var x andalso forall is_Bound xs andalso | |
| 20972 | 551 | not (has_duplicates (op =) xs) andalso xs = ys andalso | 
| 20671 | 552 | member (op =) varpairs (x, y) andalso | 
| 19303 | 553 | is_full_cong_prems prems (remove (op =) (x, y) varpairs) | 
| 15023 | 554 | end | 
| 555 | | _ => false); | |
| 556 | ||
| 557 | fun is_full_cong thm = | |
| 10413 | 558 | let | 
| 15023 | 559 | val prems = prems_of thm and concl = concl_of thm; | 
| 560 | val (lhs, rhs) = Logic.dest_equals concl; | |
| 561 | val (f, xs) = strip_comb lhs and (g, ys) = strip_comb rhs; | |
| 10413 | 562 | in | 
| 20972 | 563 | f = g andalso not (has_duplicates (op =) (xs @ ys)) andalso length xs = length ys andalso | 
| 15023 | 564 | is_full_cong_prems prems (xs ~~ ys) | 
| 10413 | 565 | end; | 
| 566 | ||
| 15023 | 567 | fun add_cong (ss, thm) = ss |> | 
| 568 | map_simpset2 (fn (congs, procs, mk_rews, termless, subgoal_tac, loop_tacs, solvers) => | |
| 569 | let | |
| 22902 
ac833b4bb7ee
moved some Drule operations to Thm (see more_thm.ML);
 wenzelm parents: 
22892diff
changeset | 570 | val (lhs, _) = Thm.dest_equals (Drule.strip_imp_concl (Thm.cprop_of thm)) | 
| 15023 | 571 |         handle TERM _ => raise SIMPLIFIER ("Congruence not a meta-equality", thm);
 | 
| 18929 | 572 | (*val lhs = Envir.eta_contract lhs;*) | 
| 20057 | 573 | val a = the (cong_name (head_of (term_of lhs))) handle Option.Option => | 
| 15023 | 574 |         raise SIMPLIFIER ("Congruence must start with a constant or free variable", thm);
 | 
| 22221 
8a8aa6114a89
changed cong alist - now using AList operations instead of overwrite_warn
 haftmann parents: 
22008diff
changeset | 575 | val (xs, weak) = congs; | 
| 38834 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 576 | val _ = | 
| 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 577 | if AList.defined (op =) xs a | 
| 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 578 |         then if_visible ss warning ("Overwriting congruence rule for " ^ quote a)
 | 
| 22221 
8a8aa6114a89
changed cong alist - now using AList operations instead of overwrite_warn
 haftmann parents: 
22008diff
changeset | 579 | else (); | 
| 30908 
7ccf4a3d764c
replace type cong = {thm : thm, lhs : term} by plain thm -- the other component has been unused for a long time.
 krauss parents: 
30552diff
changeset | 580 | val xs' = AList.update (op =) (a, thm) xs; | 
| 22221 
8a8aa6114a89
changed cong alist - now using AList operations instead of overwrite_warn
 haftmann parents: 
22008diff
changeset | 581 | val weak' = if is_full_cong thm then weak else a :: weak; | 
| 
8a8aa6114a89
changed cong alist - now using AList operations instead of overwrite_warn
 haftmann parents: 
22008diff
changeset | 582 | in ((xs', weak'), procs, mk_rews, termless, subgoal_tac, loop_tacs, solvers) end); | 
| 10413 | 583 | |
| 15023 | 584 | fun del_cong (ss, thm) = ss |> | 
| 585 | map_simpset2 (fn (congs, procs, mk_rews, termless, subgoal_tac, loop_tacs, solvers) => | |
| 586 | let | |
| 587 | val (lhs, _) = Logic.dest_equals (Thm.concl_of thm) handle TERM _ => | |
| 588 |         raise SIMPLIFIER ("Congruence not a meta-equality", thm);
 | |
| 18929 | 589 | (*val lhs = Envir.eta_contract lhs;*) | 
| 20057 | 590 | val a = the (cong_name (head_of lhs)) handle Option.Option => | 
| 15023 | 591 |         raise SIMPLIFIER ("Congruence must start with a constant", thm);
 | 
| 22221 
8a8aa6114a89
changed cong alist - now using AList operations instead of overwrite_warn
 haftmann parents: 
22008diff
changeset | 592 | val (xs, _) = congs; | 
| 
8a8aa6114a89
changed cong alist - now using AList operations instead of overwrite_warn
 haftmann parents: 
22008diff
changeset | 593 | val xs' = filter_out (fn (x : string, _) => x = a) xs; | 
| 30908 
7ccf4a3d764c
replace type cong = {thm : thm, lhs : term} by plain thm -- the other component has been unused for a long time.
 krauss parents: 
30552diff
changeset | 594 | val weak' = xs' |> map_filter (fn (a, thm) => | 
| 15531 | 595 | if is_full_cong thm then NONE else SOME a); | 
| 22221 
8a8aa6114a89
changed cong alist - now using AList operations instead of overwrite_warn
 haftmann parents: 
22008diff
changeset | 596 | in ((xs', weak'), procs, mk_rews, termless, subgoal_tac, loop_tacs, solvers) end); | 
| 10413 | 597 | |
| 36543 
0e7fc5bf38de
proper context for mksimps etc. -- via simpset of the running Simplifier;
 wenzelm parents: 
36354diff
changeset | 598 | fun mk_cong (ss as Simpset (_, {mk_rews = {mk_cong = f, ...}, ...})) = f ss;
 | 
| 15023 | 599 | |
| 600 | in | |
| 601 | ||
| 15570 | 602 | val (op addeqcongs) = Library.foldl add_cong; | 
| 603 | val (op deleqcongs) = Library.foldl del_cong; | |
| 15023 | 604 | |
| 605 | fun ss addcongs congs = ss addeqcongs map (mk_cong ss) congs; | |
| 606 | fun ss delcongs congs = ss deleqcongs map (mk_cong ss) congs; | |
| 607 | ||
| 608 | end; | |
| 10413 | 609 | |
| 610 | ||
| 15023 | 611 | (* simprocs *) | 
| 612 | ||
| 22234 | 613 | datatype simproc = | 
| 614 | Simproc of | |
| 615 |     {name: string,
 | |
| 616 | lhss: cterm list, | |
| 617 | proc: morphism -> simpset -> cterm -> thm option, | |
| 618 | id: stamp * thm list}; | |
| 619 | ||
| 620 | fun eq_simproc (Simproc {id = id1, ...}, Simproc {id = id2, ...}) = eq_procid (id1, id2);
 | |
| 22008 | 621 | |
| 22234 | 622 | fun morph_simproc phi (Simproc {name, lhss, proc, id = (s, ths)}) =
 | 
| 623 | Simproc | |
| 624 |    {name = name,
 | |
| 625 | lhss = map (Morphism.cterm phi) lhss, | |
| 22669 | 626 | proc = Morphism.transform phi proc, | 
| 22234 | 627 | id = (s, Morphism.fact phi ths)}; | 
| 628 | ||
| 629 | fun make_simproc {name, lhss, proc, identifier} =
 | |
| 630 |   Simproc {name = name, lhss = lhss, proc = proc, id = (stamp (), identifier)};
 | |
| 22008 | 631 | |
| 632 | fun mk_simproc name lhss proc = | |
| 22234 | 633 |   make_simproc {name = name, lhss = lhss, proc = fn _ => fn ss => fn ct =>
 | 
| 634 | proc (ProofContext.theory_of (the_context ss)) ss (Thm.term_of ct), identifier = []}; | |
| 22008 | 635 | |
| 35845 
e5980f0ad025
renamed varify/unvarify operations to varify_global/unvarify_global to emphasize that these only work in a global situation;
 wenzelm parents: 
35408diff
changeset | 636 | (* FIXME avoid global thy and Logic.varify_global *) | 
| 38715 
6513ea67d95d
renamed Simplifier.simproc(_i) to Simplifier.simproc_global(_i) to emphasize that this is not the real thing;
 wenzelm parents: 
36944diff
changeset | 637 | fun simproc_global_i thy name = mk_simproc name o map (Thm.cterm_of thy o Logic.varify_global); | 
| 
6513ea67d95d
renamed Simplifier.simproc(_i) to Simplifier.simproc_global(_i) to emphasize that this is not the real thing;
 wenzelm parents: 
36944diff
changeset | 638 | fun simproc_global thy name = simproc_global_i thy name o map (Syntax.read_term_global thy); | 
| 22008 | 639 | |
| 640 | ||
| 15023 | 641 | local | 
| 10413 | 642 | |
| 16985 
7df8abe926c3
improved bounds: nameless Term.bound, recover names for output;
 wenzelm parents: 
16938diff
changeset | 643 | fun add_proc (proc as Proc {name, lhs, ...}) ss =
 | 
| 22254 | 644 | (trace_cterm false (fn () => "Adding simplification procedure " ^ quote name ^ " for") ss lhs; | 
| 15023 | 645 | map_simpset2 (fn (congs, procs, mk_rews, termless, subgoal_tac, loop_tacs, solvers) => | 
| 16807 | 646 | (congs, Net.insert_term eq_proc (term_of lhs, proc) procs, | 
| 15023 | 647 | mk_rews, termless, subgoal_tac, loop_tacs, solvers)) ss | 
| 648 | handle Net.INSERT => | |
| 38834 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 649 |     (if_visible ss warning ("Ignoring duplicate simplification procedure " ^ quote name); ss));
 | 
| 10413 | 650 | |
| 16985 
7df8abe926c3
improved bounds: nameless Term.bound, recover names for output;
 wenzelm parents: 
16938diff
changeset | 651 | fun del_proc (proc as Proc {name, lhs, ...}) ss =
 | 
| 15023 | 652 | map_simpset2 (fn (congs, procs, mk_rews, termless, subgoal_tac, loop_tacs, solvers) => | 
| 16807 | 653 | (congs, Net.delete_term eq_proc (term_of lhs, proc) procs, | 
| 15023 | 654 | mk_rews, termless, subgoal_tac, loop_tacs, solvers)) ss | 
| 655 | handle Net.DELETE => | |
| 38834 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 656 |     (if_visible ss warning ("Simplification procedure " ^ quote name ^ " not in simpset"); ss);
 | 
| 10413 | 657 | |
| 22234 | 658 | fun prep_procs (Simproc {name, lhss, proc, id}) =
 | 
| 22669 | 659 |   lhss |> map (fn lhs => Proc {name = name, lhs = lhs, proc = Morphism.form proc, id = id});
 | 
| 22234 | 660 | |
| 15023 | 661 | in | 
| 10413 | 662 | |
| 22234 | 663 | fun ss addsimprocs ps = fold (fold add_proc o prep_procs) ps ss; | 
| 664 | fun ss delsimprocs ps = fold (fold del_proc o prep_procs) ps ss; | |
| 10413 | 665 | |
| 15023 | 666 | end; | 
| 10413 | 667 | |
| 668 | ||
| 669 | (* mk_rews *) | |
| 670 | ||
| 15023 | 671 | local | 
| 672 | ||
| 18208 | 673 | fun map_mk_rews f = map_simpset2 (fn (congs, procs, {mk, mk_cong, mk_sym, mk_eq_True, reorient},
 | 
| 15023 | 674 | termless, subgoal_tac, loop_tacs, solvers) => | 
| 18208 | 675 | let | 
| 676 | val (mk', mk_cong', mk_sym', mk_eq_True', reorient') = | |
| 677 | f (mk, mk_cong, mk_sym, mk_eq_True, reorient); | |
| 678 |     val mk_rews' = {mk = mk', mk_cong = mk_cong', mk_sym = mk_sym', mk_eq_True = mk_eq_True',
 | |
| 679 | reorient = reorient'}; | |
| 680 | in (congs, procs, mk_rews', termless, subgoal_tac, loop_tacs, solvers) end); | |
| 15023 | 681 | |
| 682 | in | |
| 10413 | 683 | |
| 36543 
0e7fc5bf38de
proper context for mksimps etc. -- via simpset of the running Simplifier;
 wenzelm parents: 
36354diff
changeset | 684 | fun mksimps (ss as Simpset (_, {mk_rews = {mk, ...}, ...})) = mk ss;
 | 
| 30318 
3d03190d2864
replaced archaic use of rep_ss by Simplifier.mksimps;
 wenzelm parents: 
29269diff
changeset | 685 | |
| 18208 | 686 | fun ss setmksimps mk = ss |> map_mk_rews (fn (_, mk_cong, mk_sym, mk_eq_True, reorient) => | 
| 687 | (mk, mk_cong, mk_sym, mk_eq_True, reorient)); | |
| 15023 | 688 | |
| 18208 | 689 | fun ss setmkcong mk_cong = ss |> map_mk_rews (fn (mk, _, mk_sym, mk_eq_True, reorient) => | 
| 690 | (mk, mk_cong, mk_sym, mk_eq_True, reorient)); | |
| 10413 | 691 | |
| 18208 | 692 | fun ss setmksym mk_sym = ss |> map_mk_rews (fn (mk, mk_cong, _, mk_eq_True, reorient) => | 
| 693 | (mk, mk_cong, mk_sym, mk_eq_True, reorient)); | |
| 10413 | 694 | |
| 18208 | 695 | fun ss setmkeqTrue mk_eq_True = ss |> map_mk_rews (fn (mk, mk_cong, mk_sym, _, reorient) => | 
| 696 | (mk, mk_cong, mk_sym, mk_eq_True, reorient)); | |
| 697 | ||
| 698 | fun set_reorient reorient = map_mk_rews (fn (mk, mk_cong, mk_sym, mk_eq_True, _) => | |
| 699 | (mk, mk_cong, mk_sym, mk_eq_True, reorient)); | |
| 15023 | 700 | |
| 701 | end; | |
| 702 | ||
| 14242 
ec70653a02bf
Added access to the mk_rews field (and friends).
 skalberg parents: 
14040diff
changeset | 703 | |
| 10413 | 704 | (* termless *) | 
| 705 | ||
| 15023 | 706 | fun ss settermless termless = ss |> | 
| 707 | map_simpset2 (fn (congs, procs, mk_rews, _, subgoal_tac, loop_tacs, solvers) => | |
| 708 | (congs, procs, mk_rews, termless, subgoal_tac, loop_tacs, solvers)); | |
| 15006 
107e4dfd3b96
Merging the meta-simplifier with the Provers-simplifier.  Next step:
 skalberg parents: 
15001diff
changeset | 709 | |
| 
107e4dfd3b96
Merging the meta-simplifier with the Provers-simplifier.  Next step:
 skalberg parents: 
15001diff
changeset | 710 | |
| 15023 | 711 | (* tactics *) | 
| 15006 
107e4dfd3b96
Merging the meta-simplifier with the Provers-simplifier.  Next step:
 skalberg parents: 
15001diff
changeset | 712 | |
| 15023 | 713 | fun ss setsubgoaler subgoal_tac = ss |> | 
| 714 | map_simpset2 (fn (congs, procs, mk_rews, termless, _, loop_tacs, solvers) => | |
| 715 | (congs, procs, mk_rews, termless, subgoal_tac, loop_tacs, solvers)); | |
| 15006 
107e4dfd3b96
Merging the meta-simplifier with the Provers-simplifier.  Next step:
 skalberg parents: 
15001diff
changeset | 716 | |
| 17882 
b6e44fc46cf0
added set/addloop' for simpset dependent loopers;
 wenzelm parents: 
17756diff
changeset | 717 | fun ss setloop' tac = ss |> | 
| 15023 | 718 | map_simpset2 (fn (congs, procs, mk_rews, termless, subgoal_tac, _, solvers) => | 
| 719 |    (congs, procs, mk_rews, termless, subgoal_tac, [("", tac)], solvers));
 | |
| 15006 
107e4dfd3b96
Merging the meta-simplifier with the Provers-simplifier.  Next step:
 skalberg parents: 
15001diff
changeset | 720 | |
| 17882 
b6e44fc46cf0
added set/addloop' for simpset dependent loopers;
 wenzelm parents: 
17756diff
changeset | 721 | fun ss setloop tac = ss setloop' (K tac); | 
| 
b6e44fc46cf0
added set/addloop' for simpset dependent loopers;
 wenzelm parents: 
17756diff
changeset | 722 | |
| 
b6e44fc46cf0
added set/addloop' for simpset dependent loopers;
 wenzelm parents: 
17756diff
changeset | 723 | fun ss addloop' (name, tac) = ss |> | 
| 15023 | 724 | map_simpset2 (fn (congs, procs, mk_rews, termless, subgoal_tac, loop_tacs, solvers) => | 
| 725 | (congs, procs, mk_rews, termless, subgoal_tac, | |
| 38834 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 726 | (if AList.defined (op =) loop_tacs name | 
| 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 727 |       then if_visible ss warning ("Overwriting looper " ^ quote name)
 | 
| 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 728 | else (); AList.update (op =) (name, tac) loop_tacs), solvers)); | 
| 15006 
107e4dfd3b96
Merging the meta-simplifier with the Provers-simplifier.  Next step:
 skalberg parents: 
15001diff
changeset | 729 | |
| 17882 
b6e44fc46cf0
added set/addloop' for simpset dependent loopers;
 wenzelm parents: 
17756diff
changeset | 730 | fun ss addloop (name, tac) = ss addloop' (name, K tac); | 
| 
b6e44fc46cf0
added set/addloop' for simpset dependent loopers;
 wenzelm parents: 
17756diff
changeset | 731 | |
| 15023 | 732 | fun ss delloop name = ss |> | 
| 733 | map_simpset2 (fn (congs, procs, mk_rews, termless, subgoal_tac, loop_tacs, solvers) => | |
| 21286 
b5e7b80caa6a
introduces canonical AList functions for loop_tacs
 haftmann parents: 
20972diff
changeset | 734 | (congs, procs, mk_rews, termless, subgoal_tac, | 
| 38834 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 735 | (if AList.defined (op =) loop_tacs name then () | 
| 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 736 |       else if_visible ss warning ("No such looper in simpset: " ^ quote name);
 | 
| 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 737 | AList.delete (op =) name loop_tacs), solvers)); | 
| 15006 
107e4dfd3b96
Merging the meta-simplifier with the Provers-simplifier.  Next step:
 skalberg parents: 
15001diff
changeset | 738 | |
| 15023 | 739 | fun ss setSSolver solver = ss |> map_simpset2 (fn (congs, procs, mk_rews, termless, | 
| 740 | subgoal_tac, loop_tacs, (unsafe_solvers, _)) => | |
| 741 | (congs, procs, mk_rews, termless, subgoal_tac, loop_tacs, (unsafe_solvers, [solver]))); | |
| 15006 
107e4dfd3b96
Merging the meta-simplifier with the Provers-simplifier.  Next step:
 skalberg parents: 
15001diff
changeset | 742 | |
| 15023 | 743 | fun ss addSSolver solver = ss |> map_simpset2 (fn (congs, procs, mk_rews, termless, | 
| 744 | subgoal_tac, loop_tacs, (unsafe_solvers, solvers)) => (congs, procs, mk_rews, termless, | |
| 22717 | 745 | subgoal_tac, loop_tacs, (unsafe_solvers, insert eq_solver solver solvers))); | 
| 15006 
107e4dfd3b96
Merging the meta-simplifier with the Provers-simplifier.  Next step:
 skalberg parents: 
15001diff
changeset | 746 | |
| 15023 | 747 | fun ss setSolver solver = ss |> map_simpset2 (fn (congs, procs, mk_rews, termless, | 
| 748 | subgoal_tac, loop_tacs, (_, solvers)) => (congs, procs, mk_rews, termless, | |
| 749 | subgoal_tac, loop_tacs, ([solver], solvers))); | |
| 15006 
107e4dfd3b96
Merging the meta-simplifier with the Provers-simplifier.  Next step:
 skalberg parents: 
15001diff
changeset | 750 | |
| 15023 | 751 | fun ss addSolver solver = ss |> map_simpset2 (fn (congs, procs, mk_rews, termless, | 
| 752 | subgoal_tac, loop_tacs, (unsafe_solvers, solvers)) => (congs, procs, mk_rews, termless, | |
| 22717 | 753 | subgoal_tac, loop_tacs, (insert eq_solver solver unsafe_solvers, solvers))); | 
| 15006 
107e4dfd3b96
Merging the meta-simplifier with the Provers-simplifier.  Next step:
 skalberg parents: 
15001diff
changeset | 754 | |
| 15023 | 755 | fun set_solvers solvers = map_simpset2 (fn (congs, procs, mk_rews, termless, | 
| 756 | subgoal_tac, loop_tacs, _) => (congs, procs, mk_rews, termless, | |
| 757 | subgoal_tac, loop_tacs, (solvers, solvers))); | |
| 15006 
107e4dfd3b96
Merging the meta-simplifier with the Provers-simplifier.  Next step:
 skalberg parents: 
15001diff
changeset | 758 | |
| 
107e4dfd3b96
Merging the meta-simplifier with the Provers-simplifier.  Next step:
 skalberg parents: 
15001diff
changeset | 759 | |
| 18208 | 760 | (* empty *) | 
| 761 | ||
| 762 | fun init_ss mk_rews termless subgoal_tac solvers = | |
| 32738 | 763 | make_simpset ((Net.empty, [], (0, []), (0, Unsynchronized.ref false), NONE), | 
| 18208 | 764 | (([], []), Net.empty, mk_rews, termless, subgoal_tac, [], solvers)); | 
| 765 | ||
| 766 | fun clear_ss (ss as Simpset (_, {mk_rews, termless, subgoal_tac, solvers, ...})) =
 | |
| 767 | init_ss mk_rews termless subgoal_tac solvers | |
| 768 | |> inherit_context ss; | |
| 769 | ||
| 36543 
0e7fc5bf38de
proper context for mksimps etc. -- via simpset of the running Simplifier;
 wenzelm parents: 
36354diff
changeset | 770 | val empty_ss = | 
| 
0e7fc5bf38de
proper context for mksimps etc. -- via simpset of the running Simplifier;
 wenzelm parents: 
36354diff
changeset | 771 | init_ss | 
| 
0e7fc5bf38de
proper context for mksimps etc. -- via simpset of the running Simplifier;
 wenzelm parents: 
36354diff
changeset | 772 |     {mk = fn _ => fn th => if can Logic.dest_equals (Thm.concl_of th) then [th] else [],
 | 
| 
0e7fc5bf38de
proper context for mksimps etc. -- via simpset of the running Simplifier;
 wenzelm parents: 
36354diff
changeset | 773 | mk_cong = K I, | 
| 
0e7fc5bf38de
proper context for mksimps etc. -- via simpset of the running Simplifier;
 wenzelm parents: 
36354diff
changeset | 774 | mk_sym = K (SOME o Drule.symmetric_fun), | 
| 
0e7fc5bf38de
proper context for mksimps etc. -- via simpset of the running Simplifier;
 wenzelm parents: 
36354diff
changeset | 775 | mk_eq_True = K (K NONE), | 
| 
0e7fc5bf38de
proper context for mksimps etc. -- via simpset of the running Simplifier;
 wenzelm parents: 
36354diff
changeset | 776 | reorient = default_reorient} | 
| 
0e7fc5bf38de
proper context for mksimps etc. -- via simpset of the running Simplifier;
 wenzelm parents: 
36354diff
changeset | 777 | Term_Ord.termless (K (K no_tac)) ([], []); | 
| 18208 | 778 | |
| 779 | ||
| 780 | (* merge *) (*NOTE: ignores some fields of 2nd simpset*) | |
| 781 | ||
| 782 | fun merge_ss (ss1, ss2) = | |
| 24358 | 783 | if pointer_eq (ss1, ss2) then ss1 | 
| 784 | else | |
| 785 | let | |
| 786 |       val Simpset ({rules = rules1, prems = prems1, bounds = bounds1, depth = depth1, context = _},
 | |
| 787 |        {congs = (congs1, weak1), procs = procs1, mk_rews, termless, subgoal_tac,
 | |
| 788 | loop_tacs = loop_tacs1, solvers = (unsafe_solvers1, solvers1)}) = ss1; | |
| 789 |       val Simpset ({rules = rules2, prems = prems2, bounds = bounds2, depth = depth2, context = _},
 | |
| 790 |        {congs = (congs2, weak2), procs = procs2, mk_rews = _, termless = _, subgoal_tac = _,
 | |
| 791 | loop_tacs = loop_tacs2, solvers = (unsafe_solvers2, solvers2)}) = ss2; | |
| 30356 | 792 | |
| 24358 | 793 | val rules' = Net.merge eq_rrule (rules1, rules2); | 
| 33520 | 794 | val prems' = Thm.merge_thms (prems1, prems2); | 
| 24358 | 795 | val bounds' = if #1 bounds1 < #1 bounds2 then bounds2 else bounds1; | 
| 796 | val depth' = if #1 depth1 < #1 depth2 then depth2 else depth1; | |
| 31298 | 797 | val congs' = merge (Thm.eq_thm_prop o pairself #2) (congs1, congs2); | 
| 24358 | 798 | val weak' = merge (op =) (weak1, weak2); | 
| 799 | val procs' = Net.merge eq_proc (procs1, procs2); | |
| 800 | val loop_tacs' = AList.merge (op =) (K true) (loop_tacs1, loop_tacs2); | |
| 801 | val unsafe_solvers' = merge eq_solver (unsafe_solvers1, unsafe_solvers2); | |
| 802 | val solvers' = merge eq_solver (solvers1, solvers2); | |
| 803 | in | |
| 804 | make_simpset ((rules', prems', bounds', depth', NONE), ((congs', weak'), procs', | |
| 805 | mk_rews, termless, subgoal_tac, loop_tacs', (unsafe_solvers', solvers'))) | |
| 806 | end; | |
| 18208 | 807 | |
| 808 | ||
| 30356 | 809 | (* dest_ss *) | 
| 810 | ||
| 811 | fun dest_ss (Simpset ({rules, ...}, {congs, procs, loop_tacs, solvers, ...})) =
 | |
| 812 |  {simps = Net.entries rules
 | |
| 813 |     |> map (fn {name, thm, ...} => (name, thm)),
 | |
| 814 | procs = Net.entries procs | |
| 815 |     |> map (fn Proc {name, lhs, id, ...} => ((name, lhs), id))
 | |
| 816 | |> partition_eq (eq_snd eq_procid) | |
| 817 | |> map (fn ps => (fst (fst (hd ps)), map (snd o fst) ps)), | |
| 30908 
7ccf4a3d764c
replace type cong = {thm : thm, lhs : term} by plain thm -- the other component has been unused for a long time.
 krauss parents: 
30552diff
changeset | 818 | congs = #1 congs, | 
| 30356 | 819 | weak_congs = #2 congs, | 
| 820 | loopers = map fst loop_tacs, | |
| 821 | unsafe_solvers = map solver_name (#1 solvers), | |
| 822 | safe_solvers = map solver_name (#2 solvers)}; | |
| 823 | ||
| 824 | ||
| 15006 
107e4dfd3b96
Merging the meta-simplifier with the Provers-simplifier.  Next step:
 skalberg parents: 
15001diff
changeset | 825 | |
| 10413 | 826 | (** rewriting **) | 
| 827 | ||
| 828 | (* | |
| 829 | Uses conversions, see: | |
| 830 | L C Paulson, A higher-order implementation of rewriting, | |
| 831 | Science of Computer Programming 3 (1983), pages 119-149. | |
| 832 | *) | |
| 833 | ||
| 16985 
7df8abe926c3
improved bounds: nameless Term.bound, recover names for output;
 wenzelm parents: 
16938diff
changeset | 834 | fun check_conv msg ss thm thm' = | 
| 10413 | 835 | let | 
| 36944 | 836 | val thm'' = Thm.transitive thm thm' handle THM _ => | 
| 837 | Thm.transitive thm (Thm.transitive | |
| 838 | (Thm.symmetric (Drule.beta_eta_conversion (Thm.lhs_of thm'))) thm') | |
| 22254 | 839 | in if msg then trace_thm (fn () => "SUCCEEDED") ss thm' else (); SOME thm'' end | 
| 10413 | 840 | handle THM _ => | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26424diff
changeset | 841 | let | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26424diff
changeset | 842 | val _ $ _ $ prop0 = Thm.prop_of thm; | 
| 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26424diff
changeset | 843 | in | 
| 22254 | 844 | trace_thm (fn () => "Proved wrong thm (Check subgoaler?)") ss thm'; | 
| 35979 
12bb31230550
replaced references 'trace_simp' and 'debug_simp' by configuration options stored in the context
 boehmes parents: 
35845diff
changeset | 845 | trace_term false (fn () => "Should have proved:") ss prop0; | 
| 15531 | 846 | NONE | 
| 10413 | 847 | end; | 
| 848 | ||
| 849 | ||
| 850 | (* mk_procrule *) | |
| 851 | ||
| 16985 
7df8abe926c3
improved bounds: nameless Term.bound, recover names for output;
 wenzelm parents: 
16938diff
changeset | 852 | fun mk_procrule ss thm = | 
| 15023 | 853 | let val (_, prems, lhs, elhs, rhs, _) = decomp_simp thm in | 
| 854 | if rewrite_rule_extra_vars prems lhs rhs | |
| 38834 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 855 | then (cond_warn_thm "Extra vars on rhs:" ss thm; []) | 
| 15023 | 856 |     else [mk_rrule2 {thm = thm, name = "", lhs = lhs, elhs = elhs, perm = false}]
 | 
| 10413 | 857 | end; | 
| 858 | ||
| 859 | ||
| 15023 | 860 | (* rewritec: conversion to apply the meta simpset to a term *) | 
| 10413 | 861 | |
| 15023 | 862 | (*Since the rewriting strategy is bottom-up, we avoid re-normalizing already | 
| 863 | normalized terms by carrying around the rhs of the rewrite rule just | |
| 864 | applied. This is called the `skeleton'. It is decomposed in parallel | |
| 865 | with the term. Once a Var is encountered, the corresponding term is | |
| 866 | already in normal form. | |
| 867 | skel0 is a dummy skeleton that is to enforce complete normalization.*) | |
| 868 | ||
| 10413 | 869 | val skel0 = Bound 0; | 
| 870 | ||
| 15023 | 871 | (*Use rhs as skeleton only if the lhs does not contain unnormalized bits. | 
| 872 | The latter may happen iff there are weak congruence rules for constants | |
| 873 | in the lhs.*) | |
| 10413 | 874 | |
| 15023 | 875 | fun uncond_skel ((_, weak), (lhs, rhs)) = | 
| 876 | if null weak then rhs (*optimization*) | |
| 20671 | 877 | else if exists_Const (member (op =) weak o #1) lhs then skel0 | 
| 15023 | 878 | else rhs; | 
| 879 | ||
| 880 | (*Behaves like unconditional rule if rhs does not contain vars not in the lhs. | |
| 881 | Otherwise those vars may become instantiated with unnormalized terms | |
| 882 | while the premises are solved.*) | |
| 883 | ||
| 32797 | 884 | fun cond_skel (args as (_, (lhs, rhs))) = | 
| 33038 | 885 | if subset (op =) (Term.add_vars rhs [], Term.add_vars lhs []) then uncond_skel args | 
| 10413 | 886 | else skel0; | 
| 887 | ||
| 888 | (* | |
| 15023 | 889 | Rewriting -- we try in order: | 
| 10413 | 890 | (1) beta reduction | 
| 891 | (2) unconditional rewrite rules | |
| 892 | (3) conditional rewrite rules | |
| 893 | (4) simplification procedures | |
| 894 | ||
| 895 | IMPORTANT: rewrite rules must not introduce new Vars or TVars! | |
| 896 | *) | |
| 897 | ||
| 16458 | 898 | fun rewritec (prover, thyt, maxt) ss t = | 
| 10413 | 899 | let | 
| 24124 
4399175e3014
turned simp_depth_limit into configuration option;
 wenzelm parents: 
23938diff
changeset | 900 | val ctxt = the_context ss; | 
| 15023 | 901 |     val Simpset ({rules, ...}, {congs, procs, termless, ...}) = ss;
 | 
| 10413 | 902 | val eta_thm = Thm.eta_conversion t; | 
| 22902 
ac833b4bb7ee
moved some Drule operations to Thm (see more_thm.ML);
 wenzelm parents: 
22892diff
changeset | 903 | val eta_t' = Thm.rhs_of eta_thm; | 
| 10413 | 904 | val eta_t = term_of eta_t'; | 
| 20546 
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
 wenzelm parents: 
20330diff
changeset | 905 |     fun rew {thm, name, lhs, elhs, extra, fo, perm} =
 | 
| 10413 | 906 | let | 
| 32797 | 907 | val prop = Thm.prop_of thm; | 
| 20546 
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
 wenzelm parents: 
20330diff
changeset | 908 | val (rthm, elhs') = | 
| 
8923deb735ad
rrule: maintain 'extra' field for rule that contain extra vars outside elhs;
 wenzelm parents: 
20330diff
changeset | 909 | if maxt = ~1 orelse not extra then (thm, elhs) | 
| 22902 
ac833b4bb7ee
moved some Drule operations to Thm (see more_thm.ML);
 wenzelm parents: 
22892diff
changeset | 910 | else (Thm.incr_indexes (maxt + 1) thm, Thm.incr_indexes_cterm (maxt + 1) elhs); | 
| 
ac833b4bb7ee
moved some Drule operations to Thm (see more_thm.ML);
 wenzelm parents: 
22892diff
changeset | 911 | val insts = | 
| 
ac833b4bb7ee
moved some Drule operations to Thm (see more_thm.ML);
 wenzelm parents: 
22892diff
changeset | 912 | if fo then Thm.first_order_match (elhs', eta_t') | 
| 
ac833b4bb7ee
moved some Drule operations to Thm (see more_thm.ML);
 wenzelm parents: 
22892diff
changeset | 913 | else Thm.match (elhs', eta_t'); | 
| 10413 | 914 | val thm' = Thm.instantiate insts (Thm.rename_boundvars lhs eta_t rthm); | 
| 14643 | 915 | val prop' = Thm.prop_of thm'; | 
| 21576 | 916 | val unconditional = (Logic.count_prems prop' = 0); | 
| 10413 | 917 | val (lhs', rhs') = Logic.dest_equals (Logic.strip_imp_concl prop') | 
| 918 | in | |
| 11295 | 919 | if perm andalso not (termless (rhs', lhs')) | 
| 22254 | 920 | then (trace_named_thm (fn () => "Cannot apply permutative rewrite rule") ss (thm, name); | 
| 921 | trace_thm (fn () => "Term does not become smaller:") ss thm'; NONE) | |
| 922 | else (trace_named_thm (fn () => "Applying instance of rewrite rule") ss (thm, name); | |
| 10413 | 923 | if unconditional | 
| 924 | then | |
| 22254 | 925 | (trace_thm (fn () => "Rewriting:") ss thm'; | 
| 38834 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 926 | let | 
| 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 927 | val lr = Logic.dest_equals prop; | 
| 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 928 | val SOME thm'' = check_conv false ss eta_thm thm'; | 
| 15531 | 929 | in SOME (thm'', uncond_skel (congs, lr)) end) | 
| 10413 | 930 | else | 
| 22254 | 931 | (trace_thm (fn () => "Trying to rewrite:") ss thm'; | 
| 24124 
4399175e3014
turned simp_depth_limit into configuration option;
 wenzelm parents: 
23938diff
changeset | 932 | if simp_depth ss > Config.get ctxt simp_depth_limit | 
| 38834 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 933 | then | 
| 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 934 | let | 
| 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 935 | val s = "simp_depth_limit exceeded - giving up"; | 
| 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 936 | val _ = trace false (fn () => s) ss; | 
| 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 937 | val _ = if_visible ss warning s; | 
| 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 938 | in NONE end | 
| 16042 | 939 | else | 
| 940 | case prover ss thm' of | |
| 22254 | 941 | NONE => (trace_thm (fn () => "FAILED") ss thm'; NONE) | 
| 15531 | 942 | | SOME thm2 => | 
| 16985 
7df8abe926c3
improved bounds: nameless Term.bound, recover names for output;
 wenzelm parents: 
16938diff
changeset | 943 | (case check_conv true ss eta_thm thm2 of | 
| 15531 | 944 | NONE => NONE | | 
| 945 | SOME thm2' => | |
| 10413 | 946 | let val concl = Logic.strip_imp_concl prop | 
| 947 | val lr = Logic.dest_equals concl | |
| 16042 | 948 | in SOME (thm2', cond_skel (congs, lr)) end))) | 
| 10413 | 949 | end | 
| 950 | ||
| 15531 | 951 | fun rews [] = NONE | 
| 10413 | 952 | | rews (rrule :: rrules) = | 
| 15531 | 953 | let val opt = rew rrule handle Pattern.MATCH => NONE | 
| 954 | in case opt of NONE => rews rrules | some => some end; | |
| 10413 | 955 | |
| 38834 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 956 | fun sort_rrules rrs = | 
| 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 957 | let | 
| 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 958 |         fun is_simple ({thm, ...}: rrule) =
 | 
| 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 959 | (case Thm.prop_of thm of | 
| 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 960 |             Const ("==", _) $ _ $ _ => true
 | 
| 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 961 | | _ => false); | 
| 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 962 | fun sort [] (re1, re2) = re1 @ re2 | 
| 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 963 | | sort (rr :: rrs) (re1, re2) = | 
| 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 964 | if is_simple rr | 
| 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 965 | then sort rrs (rr :: re1, re2) | 
| 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 966 | else sort rrs (re1, rr :: re2); | 
| 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 967 | in sort rrs ([], []) end; | 
| 10413 | 968 | |
| 15531 | 969 | fun proc_rews [] = NONE | 
| 15023 | 970 |       | proc_rews (Proc {name, proc, lhs, ...} :: ps) =
 | 
| 17203 | 971 | if Pattern.matches thyt (Thm.term_of lhs, Thm.term_of t) then | 
| 35979 
12bb31230550
replaced references 'trace_simp' and 'debug_simp' by configuration options stored in the context
 boehmes parents: 
35845diff
changeset | 972 | (debug_term false (fn () => "Trying procedure " ^ quote name ^ " on:") ss eta_t; | 
| 23938 | 973 | case proc ss eta_t' of | 
| 22892 
c77a1e1c7323
simp_depth: now proper value in simpset (prevents problems with lost exception trace, enables multi-threaded simplification);
 wenzelm parents: 
22717diff
changeset | 974 | NONE => (debug false (fn () => "FAILED") ss; proc_rews ps) | 
| 15531 | 975 | | SOME raw_thm => | 
| 22254 | 976 | (trace_thm (fn () => "Procedure " ^ quote name ^ " produced rewrite rule:") | 
| 977 | ss raw_thm; | |
| 16985 
7df8abe926c3
improved bounds: nameless Term.bound, recover names for output;
 wenzelm parents: 
16938diff
changeset | 978 | (case rews (mk_procrule ss raw_thm) of | 
| 22254 | 979 | NONE => (trace_cterm true (fn () => "IGNORED result of simproc " ^ quote name ^ | 
| 16985 
7df8abe926c3
improved bounds: nameless Term.bound, recover names for output;
 wenzelm parents: 
16938diff
changeset | 980 | " -- does not match") ss t; proc_rews ps) | 
| 10413 | 981 | | some => some))) | 
| 982 | else proc_rews ps; | |
| 38834 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 983 | in | 
| 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 984 | (case eta_t of | 
| 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 985 | Abs _ $ _ => SOME (Thm.transitive eta_thm (Thm.beta_conversion false eta_t'), skel0) | 
| 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 986 | | _ => | 
| 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 987 | (case rews (sort_rrules (Net.match_term rules eta_t)) of | 
| 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 988 | NONE => proc_rews (Net.match_term procs eta_t) | 
| 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 989 | | some => some)) | 
| 10413 | 990 | end; | 
| 991 | ||
| 992 | ||
| 993 | (* conversion to apply a congruence rule to a term *) | |
| 994 | ||
| 30908 
7ccf4a3d764c
replace type cong = {thm : thm, lhs : term} by plain thm -- the other component has been unused for a long time.
 krauss parents: 
30552diff
changeset | 995 | fun congc prover ss maxt cong t = | 
| 22902 
ac833b4bb7ee
moved some Drule operations to Thm (see more_thm.ML);
 wenzelm parents: 
22892diff
changeset | 996 | let val rthm = Thm.incr_indexes (maxt + 1) cong; | 
| 
ac833b4bb7ee
moved some Drule operations to Thm (see more_thm.ML);
 wenzelm parents: 
22892diff
changeset | 997 | val rlhs = fst (Thm.dest_equals (Drule.strip_imp_concl (cprop_of rthm))); | 
| 
ac833b4bb7ee
moved some Drule operations to Thm (see more_thm.ML);
 wenzelm parents: 
22892diff
changeset | 998 | val insts = Thm.match (rlhs, t) | 
| 
ac833b4bb7ee
moved some Drule operations to Thm (see more_thm.ML);
 wenzelm parents: 
22892diff
changeset | 999 | (* Thm.match can raise Pattern.MATCH; | 
| 10413 | 1000 | is handled when congc is called *) | 
| 1001 | val thm' = Thm.instantiate insts (Thm.rename_boundvars (term_of rlhs) (term_of t) rthm); | |
| 32797 | 1002 | val _ = trace_thm (fn () => "Applying congruence rule:") ss thm'; | 
| 22254 | 1003 | fun err (msg, thm) = (trace_thm (fn () => msg) ss thm; NONE) | 
| 38834 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 1004 | in | 
| 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 1005 | (case prover thm' of | 
| 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 1006 |       NONE => err ("Congruence proof failed.  Could not prove", thm')
 | 
| 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 1007 | | SOME thm2 => | 
| 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 1008 | (case check_conv true ss (Drule.beta_eta_conversion t) thm2 of | 
| 15531 | 1009 |           NONE => err ("Congruence proof failed.  Should not have proved", thm2)
 | 
| 1010 | | SOME thm2' => | |
| 22902 
ac833b4bb7ee
moved some Drule operations to Thm (see more_thm.ML);
 wenzelm parents: 
22892diff
changeset | 1011 | if op aconv (pairself term_of (Thm.dest_equals (cprop_of thm2'))) | 
| 38834 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 1012 | then NONE else SOME thm2')) | 
| 10413 | 1013 | end; | 
| 1014 | ||
| 1015 | val (cA, (cB, cC)) = | |
| 22902 
ac833b4bb7ee
moved some Drule operations to Thm (see more_thm.ML);
 wenzelm parents: 
22892diff
changeset | 1016 | apsnd Thm.dest_equals (Thm.dest_implies (hd (cprems_of Drule.imp_cong))); | 
| 10413 | 1017 | |
| 15531 | 1018 | fun transitive1 NONE NONE = NONE | 
| 1019 | | transitive1 (SOME thm1) NONE = SOME thm1 | |
| 1020 | | transitive1 NONE (SOME thm2) = SOME thm2 | |
| 36944 | 1021 | | transitive1 (SOME thm1) (SOME thm2) = SOME (Thm.transitive thm1 thm2) | 
| 10413 | 1022 | |
| 15531 | 1023 | fun transitive2 thm = transitive1 (SOME thm); | 
| 1024 | fun transitive3 thm = transitive1 thm o SOME; | |
| 13607 
6908230623a3
Completely reimplemented mutual simplification of premises.
 berghofe parents: 
13569diff
changeset | 1025 | |
| 16458 | 1026 | fun bottomc ((simprem, useprem, mutsimp), prover, thy, maxidx) = | 
| 10413 | 1027 | let | 
| 15023 | 1028 | fun botc skel ss t = | 
| 15531 | 1029 | if is_Var skel then NONE | 
| 10413 | 1030 | else | 
| 15023 | 1031 | (case subc skel ss t of | 
| 15531 | 1032 | some as SOME thm1 => | 
| 22902 
ac833b4bb7ee
moved some Drule operations to Thm (see more_thm.ML);
 wenzelm parents: 
22892diff
changeset | 1033 | (case rewritec (prover, thy, maxidx) ss (Thm.rhs_of thm1) of | 
| 15531 | 1034 | SOME (thm2, skel2) => | 
| 36944 | 1035 | transitive2 (Thm.transitive thm1 thm2) | 
| 22902 
ac833b4bb7ee
moved some Drule operations to Thm (see more_thm.ML);
 wenzelm parents: 
22892diff
changeset | 1036 | (botc skel2 ss (Thm.rhs_of thm2)) | 
| 15531 | 1037 | | NONE => some) | 
| 1038 | | NONE => | |
| 16458 | 1039 | (case rewritec (prover, thy, maxidx) ss t of | 
| 15531 | 1040 | SOME (thm2, skel2) => transitive2 thm2 | 
| 22902 
ac833b4bb7ee
moved some Drule operations to Thm (see more_thm.ML);
 wenzelm parents: 
22892diff
changeset | 1041 | (botc skel2 ss (Thm.rhs_of thm2)) | 
| 15531 | 1042 | | NONE => NONE)) | 
| 10413 | 1043 | |
| 15023 | 1044 | and try_botc ss t = | 
| 1045 | (case botc skel0 ss t of | |
| 36944 | 1046 | SOME trec1 => trec1 | NONE => (Thm.reflexive t)) | 
| 10413 | 1047 | |
| 15023 | 1048 |     and subc skel (ss as Simpset ({bounds, ...}, {congs, ...})) t0 =
 | 
| 10413 | 1049 | (case term_of t0 of | 
| 32797 | 1050 | Abs (a, T, _) => | 
| 15023 | 1051 | let | 
| 20079 
ec5c8584487c
replaced Term.variant(list) by Name.variant(_list);
 wenzelm parents: 
20057diff
changeset | 1052 | val b = Name.bound (#1 bounds); | 
| 16985 
7df8abe926c3
improved bounds: nameless Term.bound, recover names for output;
 wenzelm parents: 
16938diff
changeset | 1053 | val (v, t') = Thm.dest_abs (SOME b) t0; | 
| 
7df8abe926c3
improved bounds: nameless Term.bound, recover names for output;
 wenzelm parents: 
16938diff
changeset | 1054 | val b' = #1 (Term.dest_Free (Thm.term_of v)); | 
| 21962 | 1055 | val _ = | 
| 1056 | if b <> b' then | |
| 35231 | 1057 |                      warning ("Simplifier: renamed bound variable " ^
 | 
| 1058 | quote b ^ " to " ^ quote b' ^ Position.str_of (Position.thread_data ())) | |
| 21962 | 1059 | else (); | 
| 17614 | 1060 | val ss' = add_bound ((b', T), a) ss; | 
| 15023 | 1061 | val skel' = case skel of Abs (_, _, sk) => sk | _ => skel0; | 
| 1062 | in case botc skel' ss' t' of | |
| 36944 | 1063 | SOME thm => SOME (Thm.abstract_rule a v thm) | 
| 15531 | 1064 | | NONE => NONE | 
| 10413 | 1065 | end | 
| 1066 | | t $ _ => (case t of | |
| 15023 | 1067 |              Const ("==>", _) $ _  => impc t0 ss
 | 
| 10413 | 1068 | | Abs _ => | 
| 36944 | 1069 | let val thm = Thm.beta_conversion false t0 | 
| 22902 
ac833b4bb7ee
moved some Drule operations to Thm (see more_thm.ML);
 wenzelm parents: 
22892diff
changeset | 1070 | in case subc skel0 ss (Thm.rhs_of thm) of | 
| 15531 | 1071 | NONE => SOME thm | 
| 36944 | 1072 | | SOME thm' => SOME (Thm.transitive thm thm') | 
| 10413 | 1073 | end | 
| 1074 | | _ => | |
| 1075 | let fun appc () = | |
| 1076 | let | |
| 1077 | val (tskel, uskel) = case skel of | |
| 1078 | tskel $ uskel => (tskel, uskel) | |
| 1079 | | _ => (skel0, skel0); | |
| 10767 
8fa4aafa7314
Thm: dest_comb, dest_abs, capply, cabs no longer global;
 wenzelm parents: 
10413diff
changeset | 1080 | val (ct, cu) = Thm.dest_comb t0 | 
| 10413 | 1081 | in | 
| 15023 | 1082 | (case botc tskel ss ct of | 
| 15531 | 1083 | SOME thm1 => | 
| 15023 | 1084 | (case botc uskel ss cu of | 
| 36944 | 1085 | SOME thm2 => SOME (Thm.combination thm1 thm2) | 
| 1086 | | NONE => SOME (Thm.combination thm1 (Thm.reflexive cu))) | |
| 15531 | 1087 | | NONE => | 
| 15023 | 1088 | (case botc uskel ss cu of | 
| 36944 | 1089 | SOME thm1 => SOME (Thm.combination (Thm.reflexive ct) thm1) | 
| 15531 | 1090 | | NONE => NONE)) | 
| 10413 | 1091 | end | 
| 1092 | val (h, ts) = strip_comb t | |
| 13835 
12b2ffbe543a
Change to meta simplifier: congruence rules may now have frees as head of term.
 ballarin parents: 
13828diff
changeset | 1093 | in case cong_name h of | 
| 15531 | 1094 | SOME a => | 
| 17232 | 1095 | (case AList.lookup (op =) (fst congs) a of | 
| 15531 | 1096 | NONE => appc () | 
| 1097 | | SOME cong => | |
| 15023 | 1098 | (*post processing: some partial applications h t1 ... tj, j <= length ts, | 
| 1099 | may be a redex. Example: map (%x. x) = (%xs. xs) wrt map_cong*) | |
| 10413 | 1100 | (let | 
| 16985 
7df8abe926c3
improved bounds: nameless Term.bound, recover names for output;
 wenzelm parents: 
16938diff
changeset | 1101 | val thm = congc (prover ss) ss maxidx cong t0; | 
| 22902 
ac833b4bb7ee
moved some Drule operations to Thm (see more_thm.ML);
 wenzelm parents: 
22892diff
changeset | 1102 | val t = the_default t0 (Option.map Thm.rhs_of thm); | 
| 10767 
8fa4aafa7314
Thm: dest_comb, dest_abs, capply, cabs no longer global;
 wenzelm parents: 
10413diff
changeset | 1103 | val (cl, cr) = Thm.dest_comb t | 
| 10413 | 1104 |                              val dVar = Var(("", 0), dummyT)
 | 
| 1105 | val skel = | |
| 1106 | list_comb (h, replicate (length ts) dVar) | |
| 15023 | 1107 | in case botc skel ss cl of | 
| 15531 | 1108 | NONE => thm | 
| 1109 | | SOME thm' => transitive3 thm | |
| 36944 | 1110 | (Thm.combination thm' (Thm.reflexive cr)) | 
| 20057 | 1111 | end handle Pattern.MATCH => appc ())) | 
| 10413 | 1112 | | _ => appc () | 
| 1113 | end) | |
| 15531 | 1114 | | _ => NONE) | 
| 10413 | 1115 | |
| 15023 | 1116 | and impc ct ss = | 
| 1117 | if mutsimp then mut_impc0 [] ct [] [] ss else nonmut_impc ct ss | |
| 10413 | 1118 | |
| 15023 | 1119 | and rules_of_prem ss prem = | 
| 13607 
6908230623a3
Completely reimplemented mutual simplification of premises.
 berghofe parents: 
13569diff
changeset | 1120 | if maxidx_of_term (term_of prem) <> ~1 | 
| 
6908230623a3
Completely reimplemented mutual simplification of premises.
 berghofe parents: 
13569diff
changeset | 1121 | then (trace_cterm true | 
| 22254 | 1122 | (fn () => "Cannot add premise as rewrite rule because it contains (type) unknowns:") | 
| 1123 | ss prem; ([], NONE)) | |
| 13607 
6908230623a3
Completely reimplemented mutual simplification of premises.
 berghofe parents: 
13569diff
changeset | 1124 | else | 
| 36944 | 1125 | let val asm = Thm.assume prem | 
| 15531 | 1126 | in (extract_safe_rrules (ss, asm), SOME asm) end | 
| 10413 | 1127 | |
| 15023 | 1128 | and add_rrules (rrss, asms) ss = | 
| 20028 
b9752164ad92
add/del_simps: warning for inactive simpset (no context);
 wenzelm parents: 
19798diff
changeset | 1129 | (fold o fold) insert_rrule rrss ss |> add_prems (map_filter I asms) | 
| 10413 | 1130 | |
| 23178 | 1131 | and disch r prem eq = | 
| 13607 
6908230623a3
Completely reimplemented mutual simplification of premises.
 berghofe parents: 
13569diff
changeset | 1132 | let | 
| 22902 
ac833b4bb7ee
moved some Drule operations to Thm (see more_thm.ML);
 wenzelm parents: 
22892diff
changeset | 1133 | val (lhs, rhs) = Thm.dest_equals (Thm.cprop_of eq); | 
| 36944 | 1134 | val eq' = Thm.implies_elim (Thm.instantiate | 
| 13607 
6908230623a3
Completely reimplemented mutual simplification of premises.
 berghofe parents: 
13569diff
changeset | 1135 | ([], [(cA, prem), (cB, lhs), (cC, rhs)]) Drule.imp_cong) | 
| 36944 | 1136 | (Thm.implies_intr prem eq) | 
| 13607 
6908230623a3
Completely reimplemented mutual simplification of premises.
 berghofe parents: 
13569diff
changeset | 1137 | in if not r then eq' else | 
| 10413 | 1138 | let | 
| 22902 
ac833b4bb7ee
moved some Drule operations to Thm (see more_thm.ML);
 wenzelm parents: 
22892diff
changeset | 1139 | val (prem', concl) = Thm.dest_implies lhs; | 
| 
ac833b4bb7ee
moved some Drule operations to Thm (see more_thm.ML);
 wenzelm parents: 
22892diff
changeset | 1140 | val (prem'', _) = Thm.dest_implies rhs | 
| 36944 | 1141 | in Thm.transitive (Thm.transitive | 
| 13607 
6908230623a3
Completely reimplemented mutual simplification of premises.
 berghofe parents: 
13569diff
changeset | 1142 | (Thm.instantiate ([], [(cA, prem'), (cB, prem), (cC, concl)]) | 
| 
6908230623a3
Completely reimplemented mutual simplification of premises.
 berghofe parents: 
13569diff
changeset | 1143 | Drule.swap_prems_eq) eq') | 
| 
6908230623a3
Completely reimplemented mutual simplification of premises.
 berghofe parents: 
13569diff
changeset | 1144 | (Thm.instantiate ([], [(cA, prem), (cB, prem''), (cC, concl)]) | 
| 
6908230623a3
Completely reimplemented mutual simplification of premises.
 berghofe parents: 
13569diff
changeset | 1145 | Drule.swap_prems_eq) | 
| 10413 | 1146 | end | 
| 1147 | end | |
| 1148 | ||
| 13607 
6908230623a3
Completely reimplemented mutual simplification of premises.
 berghofe parents: 
13569diff
changeset | 1149 | and rebuild [] _ _ _ _ eq = eq | 
| 32797 | 1150 | | rebuild (prem :: prems) concl (_ :: rrss) (_ :: asms) ss eq = | 
| 13607 
6908230623a3
Completely reimplemented mutual simplification of premises.
 berghofe parents: 
13569diff
changeset | 1151 | let | 
| 15023 | 1152 | val ss' = add_rrules (rev rrss, rev asms) ss; | 
| 13607 
6908230623a3
Completely reimplemented mutual simplification of premises.
 berghofe parents: 
13569diff
changeset | 1153 | val concl' = | 
| 22902 
ac833b4bb7ee
moved some Drule operations to Thm (see more_thm.ML);
 wenzelm parents: 
22892diff
changeset | 1154 | Drule.mk_implies (prem, the_default concl (Option.map Thm.rhs_of eq)); | 
| 23178 | 1155 | val dprem = Option.map (disch false prem) | 
| 38834 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 1156 | in | 
| 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 1157 | (case rewritec (prover, thy, maxidx) ss' concl' of | 
| 15531 | 1158 | NONE => rebuild prems concl' rrss asms ss (dprem eq) | 
| 23178 | 1159 | | SOME (eq', _) => transitive2 (fold (disch false) | 
| 1160 | prems (the (transitive3 (dprem eq) eq'))) | |
| 38834 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 1161 | (mut_impc0 (rev prems) (Thm.rhs_of eq') (rev rrss) (rev asms) ss)) | 
| 13607 
6908230623a3
Completely reimplemented mutual simplification of premises.
 berghofe parents: 
13569diff
changeset | 1162 | end | 
| 15023 | 1163 | |
| 1164 | and mut_impc0 prems concl rrss asms ss = | |
| 13607 
6908230623a3
Completely reimplemented mutual simplification of premises.
 berghofe parents: 
13569diff
changeset | 1165 | let | 
| 
6908230623a3
Completely reimplemented mutual simplification of premises.
 berghofe parents: 
13569diff
changeset | 1166 | val prems' = strip_imp_prems concl; | 
| 15023 | 1167 | val (rrss', asms') = split_list (map (rules_of_prem ss) prems') | 
| 38834 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 1168 | in | 
| 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 1169 | mut_impc (prems @ prems') (strip_imp_concl concl) (rrss @ rrss') | 
| 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 1170 | (asms @ asms') [] [] [] [] ss ~1 ~1 | 
| 13607 
6908230623a3
Completely reimplemented mutual simplification of premises.
 berghofe parents: 
13569diff
changeset | 1171 | end | 
| 15023 | 1172 | |
| 1173 | and mut_impc [] concl [] [] prems' rrss' asms' eqns ss changed k = | |
| 33245 | 1174 | transitive1 (fold (fn (eq1, prem) => fn eq2 => transitive1 eq1 | 
| 1175 | (Option.map (disch false prem) eq2)) (eqns ~~ prems') NONE) | |
| 13607 
6908230623a3
Completely reimplemented mutual simplification of premises.
 berghofe parents: 
13569diff
changeset | 1176 | (if changed > 0 then | 
| 
6908230623a3
Completely reimplemented mutual simplification of premises.
 berghofe parents: 
13569diff
changeset | 1177 | mut_impc (rev prems') concl (rev rrss') (rev asms') | 
| 15023 | 1178 | [] [] [] [] ss ~1 changed | 
| 1179 | else rebuild prems' concl rrss' asms' ss | |
| 1180 | (botc skel0 (add_rrules (rev rrss', rev asms') ss) concl)) | |
| 13607 
6908230623a3
Completely reimplemented mutual simplification of premises.
 berghofe parents: 
13569diff
changeset | 1181 | |
| 
6908230623a3
Completely reimplemented mutual simplification of premises.
 berghofe parents: 
13569diff
changeset | 1182 | | mut_impc (prem :: prems) concl (rrs :: rrss) (asm :: asms) | 
| 15023 | 1183 | prems' rrss' asms' eqns ss changed k = | 
| 15531 | 1184 | case (if k = 0 then NONE else botc skel0 (add_rrules | 
| 15023 | 1185 | (rev rrss' @ rrss, rev asms' @ asms) ss) prem) of | 
| 15531 | 1186 | NONE => mut_impc prems concl rrss asms (prem :: prems') | 
| 1187 | (rrs :: rrss') (asm :: asms') (NONE :: eqns) ss changed | |
| 13607 
6908230623a3
Completely reimplemented mutual simplification of premises.
 berghofe parents: 
13569diff
changeset | 1188 | (if k = 0 then 0 else k - 1) | 
| 15531 | 1189 | | SOME eqn => | 
| 13607 
6908230623a3
Completely reimplemented mutual simplification of premises.
 berghofe parents: 
13569diff
changeset | 1190 | let | 
| 22902 
ac833b4bb7ee
moved some Drule operations to Thm (see more_thm.ML);
 wenzelm parents: 
22892diff
changeset | 1191 | val prem' = Thm.rhs_of eqn; | 
| 13607 
6908230623a3
Completely reimplemented mutual simplification of premises.
 berghofe parents: 
13569diff
changeset | 1192 | val tprems = map term_of prems; | 
| 33029 | 1193 | val i = 1 + fold Integer.max (map (fn p => | 
| 1194 | find_index (fn q => q aconv p) tprems) (#hyps (rep_thm eqn))) ~1; | |
| 15023 | 1195 | val (rrs', asm') = rules_of_prem ss prem' | 
| 13607 
6908230623a3
Completely reimplemented mutual simplification of premises.
 berghofe parents: 
13569diff
changeset | 1196 | in mut_impc prems concl rrss asms (prem' :: prems') | 
| 23178 | 1197 | (rrs' :: rrss') (asm' :: asms') (SOME (fold_rev (disch true) | 
| 33957 | 1198 | (take i prems) | 
| 36944 | 1199 | (Drule.imp_cong_rule eqn (Thm.reflexive (Drule.list_implies | 
| 33957 | 1200 | (drop i prems, concl))))) :: eqns) | 
| 20671 | 1201 | ss (length prems') ~1 | 
| 13607 
6908230623a3
Completely reimplemented mutual simplification of premises.
 berghofe parents: 
13569diff
changeset | 1202 | end | 
| 
6908230623a3
Completely reimplemented mutual simplification of premises.
 berghofe parents: 
13569diff
changeset | 1203 | |
| 15023 | 1204 | (*legacy code - only for backwards compatibility*) | 
| 38834 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 1205 | and nonmut_impc ct ss = | 
| 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 1206 | let | 
| 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 1207 | val (prem, conc) = Thm.dest_implies ct; | 
| 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 1208 | val thm1 = if simprem then botc skel0 ss prem else NONE; | 
| 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 1209 | val prem1 = the_default prem (Option.map Thm.rhs_of thm1); | 
| 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 1210 | val ss1 = | 
| 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 1211 | if not useprem then ss | 
| 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 1212 | else add_rrules (apsnd single (apfst single (rules_of_prem ss prem1))) ss | 
| 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 1213 | in | 
| 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 1214 | (case botc skel0 ss1 conc of | 
| 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 1215 | NONE => | 
| 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 1216 | (case thm1 of | 
| 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 1217 | NONE => NONE | 
| 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 1218 | | SOME thm1' => SOME (Drule.imp_cong_rule thm1' (Thm.reflexive conc))) | 
| 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 1219 | | SOME thm2 => | 
| 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 1220 | let val thm2' = disch false prem1 thm2 in | 
| 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 1221 | (case thm1 of | 
| 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 1222 | NONE => SOME thm2' | 
| 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 1223 | | SOME thm1' => | 
| 36944 | 1224 | SOME (Thm.transitive (Drule.imp_cong_rule thm1' (Thm.reflexive conc)) thm2')) | 
| 38834 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 1225 | end) | 
| 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 1226 | end | 
| 10413 | 1227 | |
| 15023 | 1228 | in try_botc end; | 
| 10413 | 1229 | |
| 1230 | ||
| 15023 | 1231 | (* Meta-rewriting: rewrites t to u and returns the theorem t==u *) | 
| 10413 | 1232 | |
| 1233 | (* | |
| 1234 | Parameters: | |
| 1235 | mode = (simplify A, | |
| 1236 | use A in simplifying B, | |
| 1237 | use prems of B (if B is again a meta-impl.) to simplify A) | |
| 1238 | when simplifying A ==> B | |
| 1239 | prover: how to solve premises in conditional rewrites and congruences | |
| 1240 | *) | |
| 1241 | ||
| 32738 | 1242 | val debug_bounds = Unsynchronized.ref false; | 
| 17705 | 1243 | |
| 21962 | 1244 | fun check_bounds ss ct = | 
| 1245 | if ! debug_bounds then | |
| 1246 | let | |
| 1247 |       val Simpset ({bounds = (_, bounds), ...}, _) = ss;
 | |
| 1248 | val bs = fold_aterms (fn Free (x, _) => | |
| 1249 | if Name.is_bound x andalso not (AList.defined eq_bound bounds x) | |
| 1250 | then insert (op =) x else I | |
| 1251 | | _ => I) (term_of ct) []; | |
| 1252 | in | |
| 1253 | if null bs then () | |
| 35979 
12bb31230550
replaced references 'trace_simp' and 'debug_simp' by configuration options stored in the context
 boehmes parents: 
35845diff
changeset | 1254 |       else print_term_global ss true ("Simplifier: term contains loose bounds: " ^ commas_quote bs)
 | 
| 21962 | 1255 | (Thm.theory_of_cterm ct) (Thm.term_of ct) | 
| 1256 | end | |
| 1257 | else (); | |
| 17614 | 1258 | |
| 19052 
113dbd65319e
rewrite_cterm: Thm.adjust_maxidx prevents unnecessary increments on rules;
 wenzelm parents: 
18929diff
changeset | 1259 | fun rewrite_cterm mode prover raw_ss raw_ct = | 
| 17882 
b6e44fc46cf0
added set/addloop' for simpset dependent loopers;
 wenzelm parents: 
17756diff
changeset | 1260 | let | 
| 26626 
c6231d64d264
rep_cterm/rep_thm: no longer dereference theory_ref;
 wenzelm parents: 
26424diff
changeset | 1261 | val thy = Thm.theory_of_cterm raw_ct; | 
| 20260 | 1262 | val ct = Thm.adjust_maxidx_cterm ~1 raw_ct; | 
| 32797 | 1263 |     val {maxidx, ...} = Thm.rep_cterm ct;
 | 
| 22892 
c77a1e1c7323
simp_depth: now proper value in simpset (prevents problems with lost exception trace, enables multi-threaded simplification);
 wenzelm parents: 
22717diff
changeset | 1264 | val ss = inc_simp_depth (activate_context thy raw_ss); | 
| 
c77a1e1c7323
simp_depth: now proper value in simpset (prevents problems with lost exception trace, enables multi-threaded simplification);
 wenzelm parents: 
22717diff
changeset | 1265 | val depth = simp_depth ss; | 
| 21962 | 1266 | val _ = | 
| 22892 
c77a1e1c7323
simp_depth: now proper value in simpset (prevents problems with lost exception trace, enables multi-threaded simplification);
 wenzelm parents: 
22717diff
changeset | 1267 | if depth mod 20 = 0 then | 
| 38834 
658fcba35ed7
more careful treatment of context visibility flag wrt. spurious warnings;
 wenzelm parents: 
38715diff
changeset | 1268 |         if_visible ss warning ("Simplification depth " ^ string_of_int depth)
 | 
| 21962 | 1269 | else (); | 
| 22254 | 1270 | val _ = trace_cterm false (fn () => "SIMPLIFIER INVOKED ON THE FOLLOWING TERM:") ss ct; | 
| 17882 
b6e44fc46cf0
added set/addloop' for simpset dependent loopers;
 wenzelm parents: 
17756diff
changeset | 1271 | val _ = check_bounds ss ct; | 
| 22892 
c77a1e1c7323
simp_depth: now proper value in simpset (prevents problems with lost exception trace, enables multi-threaded simplification);
 wenzelm parents: 
22717diff
changeset | 1272 | in bottomc (mode, Option.map Drule.flexflex_unique oo prover, thy, maxidx) ss ct end; | 
| 10413 | 1273 | |
| 21708 | 1274 | val simple_prover = | 
| 1275 | SINGLE o (fn ss => ALLGOALS (resolve_tac (prems_of_ss ss))); | |
| 1276 | ||
| 1277 | fun rewrite _ [] ct = Thm.reflexive ct | |
| 27582 | 1278 | | rewrite full thms ct = rewrite_cterm (full, false, false) simple_prover | 
| 35232 
f588e1169c8b
renamed Simplifier.theory_context to Simplifier.global_context to emphasize that this is not the real thing;
 wenzelm parents: 
35231diff
changeset | 1279 | (global_context (Thm.theory_of_cterm ct) empty_ss addsimps thms) ct; | 
| 11672 | 1280 | |
| 23598 | 1281 | fun simplify full thms = Conv.fconv_rule (rewrite full thms); | 
| 21708 | 1282 | val rewrite_rule = simplify true; | 
| 1283 | ||
| 15023 | 1284 | (*simple term rewriting -- no proof*) | 
| 16458 | 1285 | fun rewrite_term thy rules procs = | 
| 17203 | 1286 | Pattern.rewrite_term thy (map decomp_simp' rules) procs; | 
| 15023 | 1287 | |
| 22902 
ac833b4bb7ee
moved some Drule operations to Thm (see more_thm.ML);
 wenzelm parents: 
22892diff
changeset | 1288 | fun rewrite_thm mode prover ss = Conv.fconv_rule (rewrite_cterm mode prover ss); | 
| 10413 | 1289 | |
| 23536 
60a1672e298e
moved (asm_)rewrite_goal_tac from goal.ML to meta_simplifier.ML (no longer depends on SELECT_GOAL);
 wenzelm parents: 
23221diff
changeset | 1290 | (*Rewrite the subgoals of a proof state (represented by a theorem)*) | 
| 21708 | 1291 | fun rewrite_goals_rule thms th = | 
| 23584 | 1292 | Conv.fconv_rule (Conv.prems_conv ~1 (rewrite_cterm (true, true, true) simple_prover | 
| 35232 
f588e1169c8b
renamed Simplifier.theory_context to Simplifier.global_context to emphasize that this is not the real thing;
 wenzelm parents: 
35231diff
changeset | 1293 | (global_context (Thm.theory_of_thm th) empty_ss addsimps thms))) th; | 
| 10413 | 1294 | |
| 15023 | 1295 | (*Rewrite the subgoal of a proof state (represented by a theorem)*) | 
| 15011 | 1296 | fun rewrite_goal_rule mode prover ss i thm = | 
| 23536 
60a1672e298e
moved (asm_)rewrite_goal_tac from goal.ML to meta_simplifier.ML (no longer depends on SELECT_GOAL);
 wenzelm parents: 
23221diff
changeset | 1297 | if 0 < i andalso i <= Thm.nprems_of thm | 
| 23584 | 1298 | then Conv.gconv_rule (rewrite_cterm mode prover ss) i thm | 
| 23536 
60a1672e298e
moved (asm_)rewrite_goal_tac from goal.ML to meta_simplifier.ML (no longer depends on SELECT_GOAL);
 wenzelm parents: 
23221diff
changeset | 1299 |   else raise THM ("rewrite_goal_rule", i, [thm]);
 | 
| 10413 | 1300 | |
| 20228 
e0f9e8a6556b
moved Goal.norm_hhf(_protect) to meta_simplifier.ML (pervasive);
 wenzelm parents: 
20197diff
changeset | 1301 | |
| 21708 | 1302 | (** meta-rewriting tactics **) | 
| 1303 | ||
| 28839 
32d498cf7595
eliminated rewrite_tac/fold_tac, which are not well-formed tactics due to change of main conclusion;
 wenzelm parents: 
28620diff
changeset | 1304 | (*Rewrite all subgoals*) | 
| 21708 | 1305 | fun rewrite_goals_tac defs = PRIMITIVE (rewrite_goals_rule defs); | 
| 1306 | fun rewtac def = rewrite_goals_tac [def]; | |
| 1307 | ||
| 28839 
32d498cf7595
eliminated rewrite_tac/fold_tac, which are not well-formed tactics due to change of main conclusion;
 wenzelm parents: 
28620diff
changeset | 1308 | (*Rewrite one subgoal*) | 
| 25203 
e5b2dd8db7c8
asm_rewrite_goal_tac: avoiding PRIMITIVE lets informative exceptions (from simprocs) get through;
 wenzelm parents: 
24707diff
changeset | 1309 | fun asm_rewrite_goal_tac mode prover_tac ss i thm = | 
| 
e5b2dd8db7c8
asm_rewrite_goal_tac: avoiding PRIMITIVE lets informative exceptions (from simprocs) get through;
 wenzelm parents: 
24707diff
changeset | 1310 | if 0 < i andalso i <= Thm.nprems_of thm then | 
| 
e5b2dd8db7c8
asm_rewrite_goal_tac: avoiding PRIMITIVE lets informative exceptions (from simprocs) get through;
 wenzelm parents: 
24707diff
changeset | 1311 | Seq.single (Conv.gconv_rule (rewrite_cterm mode (SINGLE o prover_tac) ss) i thm) | 
| 
e5b2dd8db7c8
asm_rewrite_goal_tac: avoiding PRIMITIVE lets informative exceptions (from simprocs) get through;
 wenzelm parents: 
24707diff
changeset | 1312 | else Seq.empty; | 
| 23536 
60a1672e298e
moved (asm_)rewrite_goal_tac from goal.ML to meta_simplifier.ML (no longer depends on SELECT_GOAL);
 wenzelm parents: 
23221diff
changeset | 1313 | |
| 
60a1672e298e
moved (asm_)rewrite_goal_tac from goal.ML to meta_simplifier.ML (no longer depends on SELECT_GOAL);
 wenzelm parents: 
23221diff
changeset | 1314 | fun rewrite_goal_tac rews = | 
| 
60a1672e298e
moved (asm_)rewrite_goal_tac from goal.ML to meta_simplifier.ML (no longer depends on SELECT_GOAL);
 wenzelm parents: 
23221diff
changeset | 1315 | let val ss = empty_ss addsimps rews in | 
| 
60a1672e298e
moved (asm_)rewrite_goal_tac from goal.ML to meta_simplifier.ML (no longer depends on SELECT_GOAL);
 wenzelm parents: 
23221diff
changeset | 1316 | fn i => fn st => asm_rewrite_goal_tac (true, false, false) (K no_tac) | 
| 35232 
f588e1169c8b
renamed Simplifier.theory_context to Simplifier.global_context to emphasize that this is not the real thing;
 wenzelm parents: 
35231diff
changeset | 1317 | (global_context (Thm.theory_of_thm st) ss) i st | 
| 23536 
60a1672e298e
moved (asm_)rewrite_goal_tac from goal.ML to meta_simplifier.ML (no longer depends on SELECT_GOAL);
 wenzelm parents: 
23221diff
changeset | 1318 | end; | 
| 
60a1672e298e
moved (asm_)rewrite_goal_tac from goal.ML to meta_simplifier.ML (no longer depends on SELECT_GOAL);
 wenzelm parents: 
23221diff
changeset | 1319 | |
| 21708 | 1320 | (*Prunes all redundant parameters from the proof state by rewriting. | 
| 1321 | DOES NOT rewrite main goal, where quantification over an unused bound | |
| 1322 | variable is sometimes done to avoid the need for cut_facts_tac.*) | |
| 1323 | val prune_params_tac = rewrite_goals_tac [triv_forall_equality]; | |
| 1324 | ||
| 1325 | ||
| 1326 | (* for folding definitions, handling critical pairs *) | |
| 1327 | ||
| 1328 | (*The depth of nesting in a term*) | |
| 32797 | 1329 | fun term_depth (Abs (_, _, t)) = 1 + term_depth t | 
| 1330 | | term_depth (f $ t) = 1 + Int.max (term_depth f, term_depth t) | |
| 21708 | 1331 | | term_depth _ = 0; | 
| 1332 | ||
| 1333 | val lhs_of_thm = #1 o Logic.dest_equals o prop_of; | |
| 1334 | ||
| 1335 | (*folding should handle critical pairs! E.g. K == Inl(0), S == Inr(Inl(0)) | |
| 1336 | Returns longest lhs first to avoid folding its subexpressions.*) | |
| 1337 | fun sort_lhs_depths defs = | |
| 1338 | let val keylist = AList.make (term_depth o lhs_of_thm) defs | |
| 1339 | val keys = sort_distinct (rev_order o int_ord) (map #2 keylist) | |
| 1340 | in map (AList.find (op =) keylist) keys end; | |
| 1341 | ||
| 36944 | 1342 | val rev_defs = sort_lhs_depths o map Thm.symmetric; | 
| 21708 | 1343 | |
| 1344 | fun fold_rule defs = fold rewrite_rule (rev_defs defs); | |
| 1345 | fun fold_goals_tac defs = EVERY (map rewrite_goals_tac (rev_defs defs)); | |
| 1346 | ||
| 1347 | ||
| 20228 
e0f9e8a6556b
moved Goal.norm_hhf(_protect) to meta_simplifier.ML (pervasive);
 wenzelm parents: 
20197diff
changeset | 1348 | (* HHF normal form: !! before ==>, outermost !! generalized *) | 
| 
e0f9e8a6556b
moved Goal.norm_hhf(_protect) to meta_simplifier.ML (pervasive);
 wenzelm parents: 
20197diff
changeset | 1349 | |
| 
e0f9e8a6556b
moved Goal.norm_hhf(_protect) to meta_simplifier.ML (pervasive);
 wenzelm parents: 
20197diff
changeset | 1350 | local | 
| 
e0f9e8a6556b
moved Goal.norm_hhf(_protect) to meta_simplifier.ML (pervasive);
 wenzelm parents: 
20197diff
changeset | 1351 | |
| 21565 | 1352 | fun gen_norm_hhf ss th = | 
| 1353 | (if Drule.is_norm_hhf (Thm.prop_of th) then th | |
| 26424 | 1354 | else Conv.fconv_rule | 
| 35232 
f588e1169c8b
renamed Simplifier.theory_context to Simplifier.global_context to emphasize that this is not the real thing;
 wenzelm parents: 
35231diff
changeset | 1355 | (rewrite_cterm (true, false, false) (K (K NONE)) (global_context (Thm.theory_of_thm th) ss)) th) | 
| 21565 | 1356 | |> Thm.adjust_maxidx_thm ~1 | 
| 1357 | |> Drule.gen_all; | |
| 20228 
e0f9e8a6556b
moved Goal.norm_hhf(_protect) to meta_simplifier.ML (pervasive);
 wenzelm parents: 
20197diff
changeset | 1358 | |
| 28620 | 1359 | val hhf_ss = empty_ss addsimps Drule.norm_hhf_eqs; | 
| 20228 
e0f9e8a6556b
moved Goal.norm_hhf(_protect) to meta_simplifier.ML (pervasive);
 wenzelm parents: 
20197diff
changeset | 1360 | |
| 
e0f9e8a6556b
moved Goal.norm_hhf(_protect) to meta_simplifier.ML (pervasive);
 wenzelm parents: 
20197diff
changeset | 1361 | in | 
| 
e0f9e8a6556b
moved Goal.norm_hhf(_protect) to meta_simplifier.ML (pervasive);
 wenzelm parents: 
20197diff
changeset | 1362 | |
| 26424 | 1363 | val norm_hhf = gen_norm_hhf hhf_ss; | 
| 1364 | val norm_hhf_protect = gen_norm_hhf (hhf_ss addeqcongs [Drule.protect_cong]); | |
| 20228 
e0f9e8a6556b
moved Goal.norm_hhf(_protect) to meta_simplifier.ML (pervasive);
 wenzelm parents: 
20197diff
changeset | 1365 | |
| 
e0f9e8a6556b
moved Goal.norm_hhf(_protect) to meta_simplifier.ML (pervasive);
 wenzelm parents: 
20197diff
changeset | 1366 | end; | 
| 
e0f9e8a6556b
moved Goal.norm_hhf(_protect) to meta_simplifier.ML (pervasive);
 wenzelm parents: 
20197diff
changeset | 1367 | |
| 10413 | 1368 | end; | 
| 1369 | ||
| 32738 | 1370 | structure Basic_Meta_Simplifier: BASIC_META_SIMPLIFIER = MetaSimplifier; | 
| 1371 | open Basic_Meta_Simplifier; |