Files
lean4/tests/elab/grind_semiring.lean
Garmelon 08eb78a5b2 chore: switch to new test/bench suite (#12590)
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.
2026-02-25 13:51:53 +00:00

46 lines
1.5 KiB
Lean4
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
module
example (n t : Nat) : 1 ^ (n / 3) * 2 ^ t = 2 ^ t := by grind
example (n t : Nat) : (1 : Int) ^ (n / 3) * 2 ^ t = 2 ^ t := by grind
open Lean Grind
example (x y : Nat) : x + y = 1 y + x = 1 := by
grind -lia -linarith
example (x y : Nat) : x^2*y = 1 x*y^2 = y y*x = 1 := by
grind -lia -linarith
example (x y : Nat) : x + y = 1 x + z + y = 2 z = 0 False := by
grind -lia -linarith
example [CommSemiring α] [AddRightCancel α] [IsCharP α 0] (x y z : α)
: x + y = 1 x + z + y = 2 z = 0 False := by
grind -lia -linarith
example (x y : Nat) : x^2*y = 1 x*y^2 = y y*x = 1 := by
grind
example [CommSemiring α] [AddRightCancel α] (x y : α) : x^2*y = 1 x*y^2 = y y*x = 1 := by
grind -lia -linarith
example [CommSemiring α] [AddRightCancel α] (x y : α) : x^2*y = 1 x*y^2 = y y*x = 1 := by
grind
example [CommSemiring α] [AddRightCancel α] [IsCharP α 0] (x y : α) : x^2*y = 1 x*y^2 = y x + y = 1 False := by
grind
/--
trace: [grind.ring.assert.basis] ↑x + ↑y + -2 = 0
[grind.ring.assert.basis] ↑y ^ 3 + -4 * ↑y ^ 2 + 4 * ↑y + -1 = 0
[grind.ring.assert.basis] 2 * ↑y ^ 2 + -3 * ↑y + 1 = 0
[grind.ring.assert.basis] ↑y + -1 = 0
-/
#guard_msgs (drop error, trace) in
set_option trace.grind.ring.assert.basis true in
example [CommSemiring α] [AddRightCancel α] [IsCharP α 0] (x y : α) : x^2*y = 1 x*y^2 = y x + y = 2 False := by
grind
example [CommSemiring α] [AddRightCancel α] (x y : α) : x^2*y = 1 x*y^2 = y y*x = 1 := by
grind