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.
38 lines
1.2 KiB
Text
38 lines
1.2 KiB
Text
/-! Coercions should ignore the RHS of `^` -/
|
|
|
|
set_option pp.coercions false
|
|
set_option pp.explicit true
|
|
|
|
/--
|
|
info: @HPow.hPow Int Nat Int (@instHPow Int Nat (@instPowNat Int Int.instNatPow))
|
|
(@OfNat.ofNat Int (nat_lit 3) (@instOfNat (nat_lit 3)))
|
|
(@OfNat.ofNat Nat (nat_lit 2) (instOfNatNat (nat_lit 2))) : Int
|
|
-/
|
|
#guard_msgs in
|
|
#check (3 : Int) ^ 2
|
|
-- 3 is Int
|
|
-- 2 is Nat
|
|
|
|
/--
|
|
info: @HAdd.hAdd Int Int Int (@instHAdd Int Int.instAdd) (@OfNat.ofNat Int (nat_lit 1) (@instOfNat (nat_lit 1)))
|
|
(@HPow.hPow Int Nat Int (@instHPow Int Nat (@instPowNat Int Int.instNatPow))
|
|
(@OfNat.ofNat Int (nat_lit 3) (@instOfNat (nat_lit 3)))
|
|
(@OfNat.ofNat Nat (nat_lit 2) (instOfNatNat (nat_lit 2)))) : Int
|
|
-/
|
|
#guard_msgs in
|
|
#check (1 : Int) + 3 ^ 2
|
|
-- 1 is Int
|
|
-- 3 is Int
|
|
-- 2 is Nat
|
|
|
|
/--
|
|
info: @HAdd.hAdd Int Int Int (@instHAdd Int Int.instAdd) (@OfNat.ofNat Int (nat_lit 1) (@instOfNat (nat_lit 1)))
|
|
(@HPow.hPow Int Nat Int (@instHPow Int Nat (@instPowNat Int Int.instNatPow))
|
|
(@OfNat.ofNat Int (nat_lit 3) (@instOfNat (nat_lit 3)))
|
|
(@OfNat.ofNat Nat (nat_lit 2) (instOfNatNat (nat_lit 2)))) : Int
|
|
-/
|
|
#guard_msgs in
|
|
#check (1 + 3 ^ 2 : Int)
|
|
-- 1 is Int
|
|
-- 3 is Int
|
|
-- 2 is Nat
|