Skip to content

Commit d68a120

Browse files
committed
delete newly unused simp args
1 parent f788a32 commit d68a120

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

Mathlib/Order/SuccPred/Limit.lean

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -223,14 +223,12 @@ theorem _root_.WithTop.isSuccPrelimit_iff {α} [LT α] [NoMaxOrder α] {x : With
223223
@[to_dual]
224224
theorem _root_.WithTop.isSuccLimit_iff [Nonempty α] [NoMaxOrder α] {x : WithTop α} :
225225
IsSuccLimit x ↔ x = ⊤ ∨ ∃ y : α, x = y ∧ IsSuccLimit y := by
226-
cases x with
227-
| coe x => simp [IsSuccLimit, WithTop.isSuccPrelimit_iff, WithTop.exists]
228-
| top => simp [IsSuccLimit, WithTop.exists]
226+
cases x <;> simp [IsSuccLimit]
229227

230228
@[to_dual (attr := simp)]
231229
theorem _root_.WithTop.isSuccLimit_coe_iff {x : α} :
232230
IsSuccLimit (x : WithTop α) ↔ IsSuccLimit x := by
233-
simp [IsSuccLimit, WithTop.exists]
231+
simp [IsSuccLimit]
234232

235233
@[to_dual]
236234
theorem IsSuccLimit.withTopCoe {x : α} (h : IsSuccLimit x) :

0 commit comments

Comments
 (0)