This PR removes the now unnecessary `set_option grind.warning false` statements, now that the warning is disabled by default.
3 lines
178 B
Text
3 lines
178 B
Text
example [BEq α] (xs ys : Vector α n) : (xs.toList == ys.toList) = (xs == ys) := by grind
|
||
|
||
example [LT α] {xs ys : Vector α n} : xs.toList < ys.toList ↔ xs < ys := by grind
|