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
Currently rcases uses Lean.MVarId.cases, but the cases tactic uses its own system of applying casesOn.
The rcases tactic should use the same system as cases.
Note that #3747 introduced a hack into Lean.MVarId.cases via the useNatCasesAuxOn argument for the "beautiful Nat induction" project. This should be removed, since this has a general solution via @[induction_eliminator] and @[cases_eliminator] in induction/cases. (The Lean.MVarId.cases is a low-level function that should not use user-defined eliminators.)
The text was updated successfully, but these errors were encountered:
Currently
rcases
usesLean.MVarId.cases
, but thecases
tactic uses its own system of applyingcasesOn
.The
rcases
tactic should use the same system ascases
.Note that #3747 introduced a hack into
Lean.MVarId.cases
via theuseNatCasesAuxOn
argument for the "beautifulNat
induction" project. This should be removed, since this has a general solution via@[induction_eliminator]
and@[cases_eliminator]
ininduction
/cases
. (TheLean.MVarId.cases
is a low-level function that should not use user-defined eliminators.)The text was updated successfully, but these errors were encountered: