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.
41 lines
834 B
Text
41 lines
834 B
Text
/-!
|
|
# Tests for the expression tree elaborator (`binop%`, etc.)
|
|
-/
|
|
|
|
/-!
|
|
Some basic Int/Nat examples
|
|
-/
|
|
|
|
example (n : Nat) (i : Int) : n + i = i + n := by
|
|
rw [Int.add_comm]
|
|
|
|
def f1 (a : Int) (b c : Nat) : Int :=
|
|
a + (b - c)
|
|
|
|
def f2 (a : Int) (b c : Nat) : Int :=
|
|
(b - c) + a
|
|
|
|
/--
|
|
info: def f1 : Int → Nat → Nat → Int :=
|
|
fun a b c => a + (↑b - ↑c)
|
|
-/
|
|
#guard_msgs in
|
|
#print f1
|
|
|
|
/--
|
|
info: def f2 : Int → Nat → Nat → Int :=
|
|
fun a b c => ↑b - ↑c + a
|
|
-/
|
|
#guard_msgs in
|
|
#print f2
|
|
|
|
|
|
/-!
|
|
Interaction with default instances for pow. This used to fail with not being able
|
|
to synthesize an `HMul Int Int Nat` instance because the type of
|
|
the result of `*` wasn't being set to `Int`.
|
|
-/
|
|
|
|
/-- info: ∀ (a : Nat) (b : Int), ↑a = id (↑a * b ^ 2) : Prop -/
|
|
#guard_msgs in
|
|
#check ∀ (a : Nat) (b : Int), a = id (a * b^2)
|