File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/Lean/Meta/Tactic/Simp Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -373,13 +373,13 @@ def rewritePost (rflOnly := false) : Simproc := fun e => do
373
373
374
374
def drewritePre : DSimproc := fun e => do
375
375
for thms in (← getContext).simpTheorems do
376
- if let some r ← rewrite? e thms.pre thms.erased (tag := "pre " ) (rflOnly := true ) then
376
+ if let some r ← rewrite? e thms.pre thms.erased (tag := "dpre " ) (rflOnly := true ) then
377
377
return .visit r.expr
378
378
return .continue
379
379
380
380
def drewritePost : DSimproc := fun e => do
381
381
for thms in (← getContext).simpTheorems do
382
- if let some r ← rewrite? e thms.post thms.erased (tag := "post " ) (rflOnly := true ) then
382
+ if let some r ← rewrite? e thms.post thms.erased (tag := "dpost " ) (rflOnly := true ) then
383
383
return .visit r.expr
384
384
return .continue
385
385
You can’t perform that action at this time.
0 commit comments