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.
29 lines
677 B
Text
29 lines
677 B
Text
theorem foo (n : Nat) : n + n = 2*n := by
|
|
rw [Nat.mul_comm, Nat.mul_succ, Nat.mul_succ, Nat.mul_zero, Nat.zero_add]
|
|
|
|
attribute [-simp] foo -- Error
|
|
|
|
theorem ex1 {a b : Nat} (h₁ : a = b) : 0 + a = b := by
|
|
simp
|
|
assumption
|
|
|
|
section
|
|
|
|
attribute [-simp] Nat.zero_add
|
|
|
|
theorem ex2 {a b : Nat} (h₁ : a = b) : 0 + a = b := by
|
|
fail_if_success simp -- did not apply `Nat.zero_add`
|
|
rw [Nat.zero_add]
|
|
assumption
|
|
|
|
end
|
|
-- Effect of the attribute command above is gone
|
|
|
|
theorem ex3 {a b : Nat} (h₁ : a = b) : 0 + a = b := by
|
|
simp
|
|
assumption
|
|
|
|
theorem ex4 {a b : Nat} (h₁ : a = b) : 0 + a = b := by
|
|
fail_if_success simp [-Nat.zero_add]
|
|
rw [Nat.zero_add]
|
|
assumption
|