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.
12 lines
441 B
Text
12 lines
441 B
Text
def BV (n : Nat) := { a : Array Bool // a.size = n }
|
|
|
|
axiom foo {n m : Nat} (a : BV n) (b : BV m) : BV (n - m)
|
|
|
|
def test (x1 : BV 30002) (x2 : BV 30001) (y1 : BV 60004) (y2 : BV 60003) : Prop :=
|
|
foo x1 x2 = without_expected_type foo y1 y2
|
|
|
|
@[elab_without_expected_type]
|
|
axiom foo2 {n m : Nat} (a : BV n) (b : BV m) : BV (n - m)
|
|
|
|
def test2 (x1 : BV 30002) (x2 : BV 30001) (y1 : BV 60004) (y2 : BV 60003) : Prop :=
|
|
foo2 x1 x2 = foo2 y1 y2
|