This PR removes the now unnecessary `set_option grind.warning false` statements, now that the warning is disabled by default.
6 lines
327 B
Text
6 lines
327 B
Text
example (x : Nat) : x ≥ (0 : Int) := by grind
|
|
example (x : Nat) : Int.ofNat x ≥ (0 : Int) := by grind
|
|
example (x : Nat) : NatCast.natCast x ≥ 0 := by grind
|
|
example (x : Nat) : x ≥ (-1 : Int) := by grind
|
|
example (x : Nat) : Int.ofNat x ≥ (-1 : Int) := by grind
|
|
example (x : Nat) : NatCast.natCast x ≥ -1 := by grind
|