The says
tactic combinator. #
If you write X says
, where X
is a tactic that produces a "Try this: Y" message,
then you will get a message "Try this: X says Y".
Once you've clicked to replace X says
with X says Y
,
afterwards X says Y
will only run Y
.
The typical usage case is:
simp? [X] says simp only [X, Y, Z]
If you use set_option says.verify true
(set automatically during CI) then X says Y
runs X
and verifies that it still prints "Try this: Y".
This is a slight modification of Parser.runParserCategory
.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Run evalTactic
, capturing any new messages.
The optional only
argument allows selecting which messages should be captured,
or left in the message log.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Run evalTactic
, capturing any new info messages.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Run evalTactic
, capturing a "Try this:" message and converting it back to syntax.
Equations
- One or more equations did not get rendered due to their size.
Instances For
If you write X says
, where X
is a tactic that produces a "Try this: Y" message,
then you will get a message "Try this: X says Y".
Once you've clicked to replace X says
with X says Y
,
afterwards X says Y
will only run Y
.
The typical usage case is:
simp? [X] says simp only [X, Y, Z]
If you use set_option says.verify true
(set automatically during CI) then X says Y
runs X
and verifies that it still prints "Try this: Y".
Equations
- One or more equations did not get rendered due to their size.