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.
76 lines
2 KiB
Text
76 lines
2 KiB
Text
reset_grind_attrs%
|
|
|
|
def succ (x : Nat) := x+1
|
|
|
|
/-- trace: [grind.inj] succ_inj: [succ] -/
|
|
#guard_msgs in
|
|
set_option trace.grind.inj true in
|
|
@[grind inj] theorem succ_inj : Function.Injective succ := by
|
|
grind [Function.Injective, succ]
|
|
|
|
/-- trace: [grind.debug.inj] [succ_inj] -/
|
|
#guard_msgs in
|
|
example : True := by
|
|
set_option trace.grind.debug.inj true in
|
|
grind
|
|
|
|
/-- trace: [grind.debug.inj] [] -/
|
|
#guard_msgs in
|
|
example : True := by
|
|
set_option trace.grind.debug.inj true in
|
|
grind [- succ_inj]
|
|
|
|
def double (x : Nat) := 2*x
|
|
|
|
@[grind inj] theorem double_inj : Function.Injective double := by
|
|
grind [Function.Injective, double]
|
|
|
|
/-- trace: [grind.debug.inj] [double_inj, succ_inj] -/
|
|
#guard_msgs in
|
|
example : True := by
|
|
set_option trace.grind.debug.inj true in
|
|
grind
|
|
|
|
attribute [- grind] succ_inj
|
|
|
|
/-- error: `succ_inj` is not marked with the `[grind]` attribute -/
|
|
#guard_msgs in
|
|
example : True := by
|
|
grind [- succ_inj]
|
|
|
|
/--
|
|
error: invalid `[grind inj]` theorem, resulting type is not of the form `Function.Injective <fun>`
|
|
x = y
|
|
-/
|
|
#guard_msgs in
|
|
@[grind inj] theorem succ_inj' : succ x = succ y → x = y := by
|
|
grind [succ]
|
|
|
|
/-- trace: [grind.inj] mul_2_inj: [HMul.hMul, OfNat.ofNat] -/
|
|
#guard_msgs in
|
|
set_option trace.grind.inj true in
|
|
@[grind inj] theorem mul_2_inj : Function.Injective (2 * ·) := by
|
|
grind [Function.Injective]
|
|
|
|
def Array.IsId (as : Array Nat) : Prop :=
|
|
∀ i : Fin as.size, as[i] = i
|
|
|
|
/-- trace: [grind.inj] array_inj: [Array, GetElem?.getElem?, Fin, Array.size] -/
|
|
#guard_msgs in
|
|
set_option trace.grind.inj true in
|
|
@[grind inj] theorem array_inj {as : Array Nat} (h : as.IsId) : Function.Injective (as[·]? : Fin as.size → Option Nat) := by
|
|
intro a b; simp
|
|
have ha := h a
|
|
have hb := h b
|
|
simp at ha hb
|
|
grind
|
|
|
|
def weird.{u} : PUnit.{u} → PUnit.{u} := id
|
|
|
|
/--
|
|
error: invalid `[grind inj]` theorem, theorem has universe levels, but no hypotheses
|
|
Function.Injective weird
|
|
-/
|
|
#guard_msgs in
|
|
@[grind inj] theorem weird_inj : Function.Injective weird := by
|
|
intro a b; simp
|