-
Notifications
You must be signed in to change notification settings - Fork 450
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: fix superfluous lemmas in simp.trace
- Loading branch information
Showing
4 changed files
with
35 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
-- As reported at https://leanprover.zulipchat.com/#narrow/stream/287929-mathlib4/topic/simp.3F.20giving.20nonsense.20lemmas/near/403082483 | ||
|
||
universe u | ||
|
||
-- {α : Type} works as expected, as does specializing this lemma for `Nat`. | ||
@[simp] | ||
theorem tsub_eq_zero_of_le {α : Type u} [LE α] [Sub α] [OfNat α 0] {a b : α} : | ||
a ≤ b → a - b = 0 := by sorry | ||
|
||
@[simp] | ||
theorem ge_iff_le (x y : Nat) : x ≥ y ↔ y ≤ x := Iff.rfl | ||
|
||
set_option tactic.simp.trace true | ||
|
||
-- This used to report: `Try this: simp only [ge_iff_le, Nat.succ_sub_succ_eq_sub]` | ||
-- because we were not backtracking the "used simps" when the discharger failed. | ||
example {n : Nat} : n = 2 - (n + 1) := by | ||
simp [Nat.succ_sub_succ_eq_sub] | ||
sorry |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
simp_trace_backtrack.lean:7:8-7:26: warning: declaration uses 'sorry' | ||
Try this: simp only [Nat.succ_sub_succ_eq_sub] | ||
simp_trace_backtrack.lean:17:0-17:7: warning: declaration uses 'sorry' |