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.
20 lines
801 B
Text
20 lines
801 B
Text
universe u v
|
|
|
|
-- This is a mock-up of the `HasLimitsOfSize` typeclass in mathlib4.
|
|
class HLOS.{a,b} (C : Type b) where
|
|
P : Type a
|
|
|
|
-- We only have an instance when there is a "universe inequality".
|
|
instance HLOS_max : HLOS.{a} (Type max a b) := sorry
|
|
|
|
-- In mathlib4 we currently make use of the following workaround:
|
|
abbrev TypeMax := Type max u v
|
|
|
|
instance (priority := high) HLOS_max' : HLOS.{a} (TypeMax.{a, b}) := sorry
|
|
|
|
example : HLOS.{a} (TypeMax.{a, b}) := HLOS_max'.{a} -- Success
|
|
example : HLOS.{a} (TypeMax.{a, b}) := inferInstance -- Success
|
|
|
|
-- We solve the following examples using approximations
|
|
example : Type max v u = TypeMax.{v} := rfl -- Previously failed with: `max u v =?= max v ?u`
|
|
example : Type max v u = TypeMax.{u} := rfl -- Previously failed with: `max u v =?= max u ?u`
|