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.
87 lines
2.6 KiB
Lean4
87 lines
2.6 KiB
Lean4
module
|
||
set_option grind.debug true
|
||
set_option pp.structureInstances false
|
||
open Int.Linear
|
||
|
||
theorem ex₁ (a : Int) (h₁ : 2 ∣ a) (h₂ : 2 ∣ 2*a + 1 - a) : False := by
|
||
grind
|
||
|
||
theorem ex₂ (a b : Int) (h₀ : 2 ∣ a + 1) (h₁ : 2 ∣ b + a) (h₂ : 2 ∣ b + 2*a) : False := by
|
||
grind
|
||
|
||
theorem ex₃ (a b : Int) (_ : 2 ∣ a + 1) (h₁ : 3 ∣ a + 3*b + a) (h₂ : 2 ∣ 3*b + a + 3 - b) (h₃ : 3 ∣ 3 * b + 2 * a + 1) : False := by
|
||
grind
|
||
|
||
theorem ex₄ (f : Int → Int) (a b : Int) (_ : 2 ∣ f (f a) + 1) (h₁ : 3 ∣ f (f a) + 3*b + f (f a)) (h₂ : 2 ∣ 3*b + f (f a) + 3 - b) (h₃ : 3 ∣ 3 * b + 2 * f (f a) + 1) : False := by
|
||
grind
|
||
|
||
#print ex₁
|
||
#print ex₂
|
||
#print ex₃
|
||
#print ex₄
|
||
|
||
/--
|
||
trace: [grind.debug.lia.search.assign] a := 1
|
||
[grind.debug.lia.search.assign] b := 0
|
||
-/
|
||
#guard_msgs (trace) in -- finds the model without any backtracking
|
||
set_option trace.grind.debug.lia.search.assign true in
|
||
example (a b : Int) (_ : 2 ∣ a + 3) (_ : 3 ∣ a + b - 4) : False := by
|
||
fail_if_success grind
|
||
sorry
|
||
|
||
/--
|
||
trace: [grind.lia.assert] 2 ∣ a + 3
|
||
[grind.lia.assert] 3 ∣ a + 3*b + -4
|
||
[grind.debug.lia.search.assign] a := 1
|
||
[grind.debug.lia.search.assign] b := 0
|
||
-/
|
||
#guard_msgs (trace) in
|
||
set_option trace.grind.lia.assert true in
|
||
set_option trace.grind.debug.lia.search.assign true in
|
||
example (a b : Int) (_ : 2 ∣ a + 3) (_ : 3 ∣ a + 3*b - 4) : False := by
|
||
fail_if_success grind
|
||
sorry
|
||
|
||
/--
|
||
trace: [grind.debug.lia.search.assign] a := 1
|
||
[grind.debug.lia.search.assign] b := 15
|
||
-/
|
||
#guard_msgs (trace) in
|
||
set_option trace.grind.debug.lia.search.assign true in
|
||
example (a b : Int) (_ : 2 ∣ a + 3) (_ : 3 ∣ a + b - 4) (_ : b < 18): False := by
|
||
fail_if_success grind
|
||
sorry
|
||
|
||
/--
|
||
trace: [grind.debug.lia.search.assign] a := 1
|
||
[grind.debug.lia.search.assign] b := 12
|
||
-/
|
||
#guard_msgs (trace) in
|
||
set_option trace.grind.debug.lia.search.assign true in
|
||
example (a b : Int) (_ : 2 ∣ a + 3) (_ : 3 ∣ a + b - 4) (_ : b ≥ 11): False := by
|
||
fail_if_success grind
|
||
sorry
|
||
|
||
/--
|
||
trace: [grind.debug.lia.search.assign] f 0 := 11
|
||
[grind.debug.lia.search.assign] f 1 := 2
|
||
[grind.debug.lia.search.assign] 「1」 := 1
|
||
[grind.debug.lia.search.assign] 「0」 := 0
|
||
-/
|
||
#guard_msgs (trace) in
|
||
set_option trace.grind.debug.lia.search.assign true in
|
||
example (f : Int → Int) (_ : 2 ∣ f 0 + 3) (_ : 3 ∣ f 0 + f 1 - 4) (_ : f 0 ≥ 11): False := by
|
||
fail_if_success grind
|
||
sorry
|
||
|
||
example (x : Int) (_ : 10 ∣ x) (_ : ¬ 5 ∣ x) : False := by
|
||
grind
|
||
|
||
example (x : Nat) (_ : 10 ∣ x) (_ : ¬ 5 ∣ x) : False := by
|
||
grind
|
||
|
||
example (a b : Int) (h₀ : 2 ∣ a + 1) (h₁ : 2 ∣ b + a) (h₂ : 2 ∣ b + 2*a) : False := by
|
||
fail_if_success grind -lia
|
||
sorry
|