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
511 B
Text
29 lines
511 B
Text
def Set (α : Type u) : Type u := α → id Prop
|
||
|
||
mutual
|
||
inductive Even : id (Set Nat)
|
||
| zero : Even 0
|
||
| succ : Odd n → Even n
|
||
|
||
inductive Odd : Set Nat
|
||
| succ : Even n → Odd n
|
||
end
|
||
|
||
/--
|
||
info: inductive Even : id (Set Nat)
|
||
number of parameters: 0
|
||
constructors:
|
||
Even.zero : Even 0
|
||
Even.succ : ∀ {n : Nat}, Odd n → Even n
|
||
-/
|
||
#guard_msgs in
|
||
#print Even
|
||
|
||
/--
|
||
info: inductive Odd : Set Nat
|
||
number of parameters: 0
|
||
constructors:
|
||
Odd.succ : ∀ {n : Nat}, Even n → Odd n
|
||
-/
|
||
#guard_msgs in
|
||
#print Odd
|