This PR allows `simp` to recognize and warn about simp lemmas that are likely looping in the current simp set. It does so automatically whenever simplification fails with the dreaded “max recursion depth” error fails, but it can be made to do it always with `set_option linter.loopingSimpArgs true`. This check is not on by default because it is somewhat costly, and can warn about simp calls that still happen to work. This closes #5111. In the end, this implemented much simpler logic than described there (and tried in the abandoned #8688; see that PR description for more background information), but it didn’t work as well as I thought. The current logic is: “Simplify the RHS of the simp theorem, complain if that fails”. It is a reasonable policy for a Lean project to say that all simp invocation should be so that this linter does not complain. Often it is just a matter of explicitly disabling some simp theorems from the default simp set, to make it clear and robust that in this call, we do not want them to trigger. But given that often such simp call happen to work, it’s too pedantic to impose it on everyone.
23 lines
668 B
Text
23 lines
668 B
Text
variable {α : Type _} [Mul α] [Inhabited α]
|
||
|
||
abbrev Left (a : α) : α := a * default
|
||
abbrev Right (a : α): α := default * a
|
||
|
||
theorem mul_comm (a b : α) : a * b = b * a := sorry
|
||
|
||
set_option trace.Meta.Tactic.simp.rewrite true
|
||
/--
|
||
trace: [Meta.Tactic.simp.rewrite] mul_comm:1000:perm, perm rejected Left a ==> default * a
|
||
[Meta.Tactic.simp.rewrite] mul_comm:1000:perm:
|
||
Right a
|
||
==>
|
||
a * default
|
||
[Meta.Tactic.simp.rewrite] mul_comm:1000:perm, perm rejected a * default ==> default * a
|
||
[Meta.Tactic.simp.rewrite] eq_self:1000:
|
||
Left a = a * default
|
||
==>
|
||
True
|
||
-/
|
||
#guard_msgs in
|
||
example (a : α) : Left a = Right a := by
|
||
simp [mul_comm]
|