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.
49 lines
1,007 B
Text
49 lines
1,007 B
Text
universe u
|
|
|
|
inductive Foo : Type u → Type u → Type (u+1)
|
|
| foo {as bs cs: Type u}: Foo as bs → Foo bs cs → Foo as cs
|
|
|
|
namespace Foo
|
|
mutual
|
|
def bar : {as bs: Type u} → Foo.{u} as bs → bs :=
|
|
bar_aux
|
|
termination_by _ _ => 0
|
|
decreasing_by sorry
|
|
|
|
def bar_aux: {as bs: Type u} → Foo.{u} as bs → bs
|
|
| as, bs, foo _ x => x.bar
|
|
termination_by _ _ _ => 0
|
|
decreasing_by sorry
|
|
|
|
end
|
|
end Foo
|
|
|
|
|
|
namespace Foo
|
|
mutual
|
|
def bar1 : {as bs: Type u} → Foo.{u} as bs → bs
|
|
| as, bs, x => bar_aux1 x
|
|
termination_by _ _ _ => 0
|
|
decreasing_by sorry
|
|
|
|
def bar_aux1 : {as bs: Type u} → Foo.{u} as bs → bs
|
|
| as, bs, foo _ x => x.bar1
|
|
termination_by _ _ _ => 0
|
|
decreasing_by sorry
|
|
|
|
end
|
|
end Foo
|
|
|
|
|
|
namespace Foo
|
|
mutual
|
|
def bar2 : Foo as bs → bs
|
|
| x => bar_aux2 x
|
|
termination_by x => (sizeOf x, 1)
|
|
|
|
def bar_aux2 : Foo as bs → bs
|
|
| foo _ x => x.bar2
|
|
termination_by x => (sizeOf x, 0)
|
|
|
|
end
|
|
end Foo
|