Skip to content

Commit

Permalink
bug fix in splitHighOrderLambdaToComp
Browse files Browse the repository at this point in the history
  • Loading branch information
lecopivo committed Sep 15, 2023
1 parent 9f6c75f commit c2bdcf2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SciLean/Lean/Meta/Basic.lean
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ def splitHighOrderLambdaToComp (e : Expr) (mk := ``Prod.mk) (fst := ``Prod.fst)
let yId ← withLCtx lctx instances mkFreshFVarId
lctx := lctx.mkLocalDecl yId (name) yFVarType
let yFVar := Expr.fvar yId
let yVal ← mkAppM' yFVar is'
let yVal := mkAppN yFVar is'
yFVars := yFVars.push yFVar
yVals := yVals.push yVal
ys' := ys'.push f
Expand Down

0 comments on commit c2bdcf2

Please sign in to comment.