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.
101 lines
2.1 KiB
Text
101 lines
2.1 KiB
Text
import Lean.LibrarySuggestions.Basic
|
|
|
|
/--
|
|
error: No library suggestions engine registered. (Add `import Lean.LibrarySuggestions.Default` to use Lean's built-in engine, or use `set_library_suggestions` to configure a custom one.)
|
|
-/
|
|
#guard_msgs in
|
|
example : True := by
|
|
grind +suggestions
|
|
|
|
set_library_suggestions (fun _ _ => pure #[])
|
|
|
|
#guard_msgs in
|
|
example : True := by
|
|
grind +suggestions
|
|
|
|
def P (_ : Nat) := True
|
|
theorem p : P 7 := trivial
|
|
|
|
/--
|
|
error: `grind` failed
|
|
case grind
|
|
h : ¬P 37
|
|
⊢ False
|
|
[grind] Goal diagnostics
|
|
[facts] Asserted facts
|
|
[prop] ¬P 37
|
|
[eqc] False propositions
|
|
[prop] P 37
|
|
-/
|
|
#guard_msgs in
|
|
example : P 37 := by
|
|
grind
|
|
|
|
example : P 7 := by
|
|
grind [p]
|
|
|
|
set_library_suggestions (fun _ _ => pure #[{ name := `p, score := 1.0 }])
|
|
|
|
/--
|
|
info: Library suggestions:
|
|
p
|
|
-/
|
|
#guard_msgs in
|
|
example : P 7 := by
|
|
suggestions
|
|
grind +suggestions
|
|
|
|
set_library_suggestions (fun _ _ => pure #[{ name := `p, score := 0.5 }])
|
|
|
|
/--
|
|
info: Library suggestions:
|
|
p (score: 0.500000)
|
|
-/
|
|
#guard_msgs in
|
|
example : P 7 := by
|
|
suggestions
|
|
grind +suggestions
|
|
|
|
set_library_suggestions (fun _ _ => pure #[{ name := `p, score := 1.0, flag := some "←" }])
|
|
|
|
/--
|
|
info: Library suggestions:
|
|
p [←]
|
|
---
|
|
error: unexpected modifier ←
|
|
-/
|
|
#guard_msgs in
|
|
example : P 7 := by
|
|
suggestions
|
|
grind +suggestions
|
|
|
|
set_library_suggestions (fun _ _ => pure #[
|
|
{ name := `p, score := 0.9 },
|
|
{ name := `f, score := 0.7 }
|
|
])
|
|
|
|
/--
|
|
info: Library suggestions:
|
|
p (score: 0.900000)
|
|
f (score: 0.700000)
|
|
-/
|
|
#guard_msgs in
|
|
example : P 7 := by
|
|
suggestions
|
|
grind [p]
|
|
|
|
set_library_suggestions (fun _ _ => pure #[{ name := `List.append_assoc, score := 1.0 }])
|
|
|
|
-- Make sure there is no warning about the redundant theorem.
|
|
#guard_msgs in
|
|
example (x y z : List Nat) : x ++ (y ++ z) = (x ++ y) ++ z := by
|
|
grind +suggestions
|
|
|
|
theorem f : True := trivial
|
|
|
|
set_library_suggestions (fun _ _ => pure #[{ name := `f, score := 1.0 }])
|
|
|
|
-- Make sure that bad suggestions (e.g. not patterns) from premise selection are dropped silently.
|
|
#guard_msgs in
|
|
example (x y z : List Nat) : x ++ (y ++ z) = (x ++ y) ++ z := by
|
|
grind +suggestions
|