File tree Expand file tree Collapse file tree 2 files changed +4
-6
lines changed
Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change 11-- These are test cases extracted from Mathlib, where `omega` works but `grind` does not (yet!)
22
33example (n : Int) (n0 : ¬0 ≤ n) (a : Nat) : n ≠ (a : Int) := by grind
4-
5- -- TODO: add to the library?
6- attribute [grind] Int.negSucc_eq
7-
8- example (p : Int) (n : Nat) (hmp : Int.negSucc (n + 1 ) + 1 = p)
9- (hnm : Int.negSucc (n + 1 + 1 ) + 1 = Int.negSucc (n + 1 )) : p = Int.negSucc n := by grind
Original file line number Diff line number Diff line change @@ -69,3 +69,7 @@ example (a b : Int) : a = 0 → b = 1 → a + b > 2 → False := by
6969
7070example (a b c : Int) : a = 0 → a + b > 2 → b = c → 1 = c → False := by
7171 grind
72+
73+ example (p : Int) (n : Nat) (hmp : Int.negSucc (n + 1 ) + 1 = p)
74+ (hnm : Int.negSucc (n + 1 + 1 ) + 1 = Int.negSucc (n + 1 )) : p = Int.negSucc n := by
75+ grind
You can’t perform that action at this time.
0 commit comments