-
Notifications
You must be signed in to change notification settings - Fork 0
Tactics
Vladimir Gladstein edited this page Mar 22, 2024
·
2 revisions
Here we list all features we support at the moment.
-
scase
: equivalent to SSReflect'scase
-
scase_if
: does case analysis on the firstif
statement -
elim
: equivalent to SSReflect'selim
-
move
: Reduces goal to the weak head normal form -
moveR
: likemove
but only reduces[@ reducable]
definitions -
apply t in H
: applies termt
in hypothesisH
, and moves the result on top the proof stack.H
should not necessarily be the first argument oft
, tactic will figure out which argument to instantiate automatically. It will also instantiate all other arguments oft
which can be deduced fromH
-
shave
: Same as in SSReflect, it asserts a term of typety
(introducing a new goal for it), puts it on the proof stack, and runsintro_pats
. -
srw
: SSReflect version ofrw
.