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
{{ message }}
This repository has been archived by the owner on Nov 29, 2024. It is now read-only.
Added @[induction_eliminator] and @[cases_eliminator] attributes to be able to define custom eliminators for the induction and cases tactics, replacing the @[eliminator] attribute. Gives custom eliminators for Nat so that induction and cases put goal states into terms of 0 and n + 1 rather than Nat.zero and Nat.succ n. Added option tactic.customEliminators to control whether to use custom eliminators. Added a hack for rcases/rintro/obtain to use the custom eliminator for Nat. #3629, #3655, and #3747.
Added
@[induction_eliminator]
and@[cases_eliminator]
attributes to be able to define custom eliminators for theinduction
andcases
tactics, replacing the@[eliminator]
attribute. Gives custom eliminators forNat
so thatinduction
andcases
put goal states into terms of0
andn + 1
rather thanNat.zero
andNat.succ n
. Added optiontactic.customEliminators
to control whether to use custom eliminators. Added a hack forrcases
/rintro
/obtain
to use the custom eliminator forNat
. #3629, #3655, and #3747.https://github.com/leanprover/lean4/blob/master/RELEASES.md#v480
The text was updated successfully, but these errors were encountered: