lean4-htt/tests/lean/run/grind_cutsat_upper_bug.lean
Joachim Breitner 0e49576fe4
feat: guard_msgs to treat trace messages separate (#8267)
This PR makes `#guard_msgs` to treat `trace` messages separate from
`info`, `warning` and `error`. It also introduce the ability to say
`#guard_msgs (pass info`, like `(drop info)` so far, and also adds
`(check info)` as the explicit form of `(info)`, for completeness.

Fixes #8266
2025-05-09 05:44:34 +00:00

5 lines
212 B
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.

/-- trace: [grind.cutsat.model] a := 2 -/
#guard_msgs (trace) in
set_option trace.grind.cutsat.model true in
example (a b : Int) : a ≤ 5 → a ≠ 4 → 2 a → False := by
(fail_if_success grind); sorry