refactor: free simps

This commit is contained in:
jstoobysmith 2025-01-05 16:46:15 +00:00
parent 9184f6087c
commit 7026d8ce66
7 changed files with 150 additions and 146 deletions

View file

@ -37,6 +37,8 @@ or is merely a tactic combinator (e.g. `by`, `;`, multiline tactics, parenthesiz
def isSimp (t : TacticInfo) : Bool :=
match t.name? with
| some ``Lean.Parser.Tactic.simp => true
| some ``Lean.Parser.Tactic.dsimp => true
| some ``Lean.Parser.Tactic.simpAll => true
| _ => false
end Lean.Elab.TacticInfo