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.
11 lines
475 B
Text
11 lines
475 B
Text
@[simp] theorem liftOn_mk (a : α) (f : α → γ) (h : ∀ a₁ a₂, r a₁ a₂ → f a₁ = f a₂) :
|
||
Quot.liftOn (Quot.mk r a) f h = f a := rfl
|
||
|
||
section attribute [simp] eq_iff_true_of_subsingleton end
|
||
|
||
@[simp] theorem PUnit.default_eq_unit : (default : PUnit) = PUnit.unit := rfl
|
||
|
||
set_option trace.Meta.Tactic.simp.discharge true
|
||
set_option trace.Meta.Tactic.simp.unify true
|
||
set_option trace.Meta.Tactic.simp.rewrite true
|
||
example : (default : PUnit) = x := by simp
|