chore: add profileitM for simp

This commit is contained in:
Leonardo de Moura 2021-03-04 17:27:01 -08:00
parent a81c628a12
commit db499a646f

View file

@ -350,7 +350,7 @@ end DefaultMethods
end Simp
def simp (e : Expr) (ctx : Simp.Context) : MetaM Simp.Result := do
def simp (e : Expr) (ctx : Simp.Context) : MetaM Simp.Result := do profileitM Exception "simp" (← getOptions) do
Simp.main e ctx (methods := Simp.DefaultMethods.methods)
end Lean.Meta