You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In Lean 4, when we write a lambda, the implicit arguments are introduced automatically and do not need to be named. mathport will need to remove these arguments.
Synport won't have type information in general. It might be easier to set_option hackport.disableImplicitLambda true on the Lean4 side and then (semi-auto) refactor once things type-check in Lean4.
In Lean 4, when we write a lambda, the implicit arguments are introduced automatically and do not need to be named. mathport will need to remove these arguments.
See for example https://github.com/leanprover-community/mathlib3port/blob/9f61de0/Mathbin/Combinatorics/Quiver.lean#L58,
where in the
map
field we need to writefun f => f
rather thanfun X Y f => f
.The text was updated successfully, but these errors were encountered: