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