This PR sets up the new integrated test/bench suite. It then migrates all benchmarks and some related tests to the new suite. There's also some documentation and some linting. For now, a lot of the old tests are left alone so this PR doesn't become even larger than it already is. Eventually, all tests should be migrated to the new suite though so there isn't a confusing mix of two systems.
6 lines
343 B
Text
6 lines
343 B
Text
|
|
-- Prior to leanprover/lean4#2552 there was a performance trap
|
|
-- depending on the implementation details in `decidableBallLT`.
|
|
-- We keep this example (which would have gone over maxHeartbeats)
|
|
-- as a regression test for the instance.
|
|
example : ∀ m, m < 25 → ∀ n, n < 25 → ∀ c, c < 25 → m ^ 2 + n ^ 2 + c ^ 2 ≠ 7 := by decide
|