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