mirror of
https://github.com/leanprover/lean4.git
synced 2026-03-17 18:34:06 +00:00
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.
80 lines
2.0 KiB
Lean4
80 lines
2.0 KiB
Lean4
module
|
|
public opaque f : Nat → Nat
|
|
|
|
/--
|
|
error: the modifier `usr` is only relevant in parameters for `grind only`
|
|
-/
|
|
#guard_msgs (error) in
|
|
@[grind usr]
|
|
public theorem fthm : f (f x) = f x := sorry
|
|
|
|
/-- trace: [grind.ematch.pattern] fthm: [f #0] -/
|
|
#guard_msgs (trace) in
|
|
set_option trace.grind.ematch.pattern true in
|
|
example : f (f (f x)) = f x := by
|
|
grind only [!←fthm]
|
|
|
|
/--
|
|
trace: [grind.ematch.instance] fthm: f (f x) = f x
|
|
[grind.ematch.instance] fthm: f (f (f x)) = f (f x)
|
|
[grind.ematch.instance] fthm: f (f (f (f x))) = f (f (f x))
|
|
-/
|
|
#guard_msgs (trace) in
|
|
set_option trace.grind.ematch.instance true in
|
|
example : f (f (f x)) = f x := by
|
|
grind only [!fthm]
|
|
|
|
/--
|
|
trace: [grind.ematch.instance] fthm: f (f x) = f x
|
|
[grind.ematch.instance] fthm: f (f (f x)) = f (f x)
|
|
-/
|
|
#guard_msgs (trace) in
|
|
-- should not instantiate anything using pattern `f (f #0)`
|
|
set_option trace.grind.ematch.instance true in
|
|
example : f x = x := by
|
|
fail_if_success grind only [!fthm]
|
|
sorry
|
|
|
|
/--
|
|
error: the modifier `usr` is only relevant in parameters for `grind only`
|
|
-/
|
|
#guard_msgs (error) in
|
|
example : f (f (f x)) = f x := by
|
|
grind [usr fthm]
|
|
|
|
/--
|
|
error: invalid use of `usr` modifier, `fthm` does not have patterns specified with the command `grind_pattern`
|
|
-/
|
|
#guard_msgs (error) in
|
|
example : f (f (f x)) = f x := by
|
|
grind only [usr fthm]
|
|
|
|
grind_pattern fthm => f (f x)
|
|
|
|
example : f (f (f x)) = f x := by
|
|
grind only [usr fthm]
|
|
|
|
#guard_msgs (trace) in
|
|
-- should not instantiate anything using pattern `f (f #0)`
|
|
set_option trace.grind.ematch.instance true in
|
|
example : f x = x := by
|
|
fail_if_success grind only [usr fthm]
|
|
sorry
|
|
|
|
/--
|
|
trace: [grind.ematch.instance] fthm: f (f x) = f x
|
|
[grind.ematch.instance] fthm: f (f (f x)) = f (f x)
|
|
-/
|
|
#guard_msgs (trace) in
|
|
set_option trace.grind.ematch.instance true in
|
|
example : f x = x := by
|
|
fail_if_success grind only [!fthm]
|
|
sorry
|
|
|
|
/--
|
|
error: the modifier `usr` is only relevant in parameters for `grind only`
|
|
-/
|
|
#guard_msgs (error) in
|
|
example : f (f (f x)) = f x := by
|
|
grind [usr fthm]
|