chore: add low-level normExprCore
This commit is contained in:
parent
263be54dcf
commit
f61ec4929f
1 changed files with 4 additions and 0 deletions
|
|
@ -239,6 +239,10 @@ See `Check.lean` for the free variable substitution checker.
|
|||
@[inline, inheritDoc normExprImp] def normExpr [MonadFVarSubst m t] [Monad m] (e : Expr) : m Expr :=
|
||||
return normExprImp (← getSubst) e t
|
||||
|
||||
@[inheritDoc normExprImp]
|
||||
abbrev normExprCore (s : FVarSubst) (e : Expr) (translator : Bool) : Expr :=
|
||||
normExprImp s e translator
|
||||
|
||||
/--
|
||||
Normalize the given expressions using the current substitution.
|
||||
-/
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue