lean4-htt/tests/lean/run/grind_option.lean
Marc Huisinga 9d427fdfcf
feat: "try this" messages with support for interactivity (#10524)
This PR adds support for interactivity to the combined "try this"
messages that were introduced in #9966. In doing so, it moves the link
to apply a suggestion to a separate `[apply]` button in front of the
suggestion. Hints with diffs remain unchanged, as they did not
previously support interacting with terms in the diff, either.

<img width="379" height="256" alt="Suggestion with interactive message"
src="https://github.com/user-attachments/assets/7838ebf6-0613-46e7-bc88-468a05acbf51"
/>
2025-10-13 13:39:03 +00:00

69 lines
2 KiB
Text
Raw 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
-- This file uses `#guard_msgs` to check which lemmas `grind` is using.
-- This may prove fragile, so remember it is okay to update the expected output if appropriate!
-- Hopefully these will act as regression tests against `grind` activating irrelevant lemmas.
section
variable [BEq α] {o₁ o₂ o₃ o₄ o₅ : Option α}
/--
info: Try this:
[apply] grind only [= Option.or_some, = Option.some_beq_none, = Option.getD_or, = Option.some_or, =_ Option.or_assoc,
= Option.or_assoc]
-/
#guard_msgs in
example : ((o₁.or (o₂.or (some x))).or (o₄.or o₅) == none) = false := by grind?
/--
info: Try this:
[apply] grind only [= Option.max_none_right, = Option.min_some_some, = Nat.min_def]
-/
#guard_msgs in
example : max (some 7) none = min (some 13) (some 7) := by grind?
/--
info: Try this:
[apply] grind only [= Option.guard_apply]
-/
#guard_msgs in
example : Option.guard (· ≤ 7) 3 = some 3 := by grind?
/--
info: Try this:
[apply] grind only [= Option.mem_bind_iff]
-/
#guard_msgs in
example {x : β} {o : Option α} {f : α → Option β} (h : a ∈ o) (h' : x ∈ f a) : x ∈ o.bind f := by grind?
end
open Option
theorem toList_toArray {o : Option α} : o.toArray.toList = o.toList := by
grind
theorem toArray_toList {o : Option α} : o.toList.toArray = o.toArray := by
grind
theorem size_toArray_eq_one_iff {o : Option α} :
o.toArray.size = 1 ↔ o.isSome := by
grind
theorem size_toArray_choice_eq_one [Nonempty α] : (choice α).toArray.size = 1 := by
grind
theorem length_toList_eq_one_iff {o : Option α} :
o.toList.length = 1 ↔ o.isSome := by
grind
theorem length_toList_choice_eq_one [Nonempty α] : (choice α).toList.length = 1 := by
grind
example : (default : Option α) = none := by grind
example (a : α) : Option.all q (guard p a) = (!p a || q a) := by grind
example (a : α) : Option.any q (guard p a) = (p a && q a) := by grind
example : (guard p a).or (guard q a) = guard (fun x => p x || q x) a := by grind