Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Dan Frumin
iris-coq
Commits
0fa2fdcf
Commit
0fa2fdcf
authored
May 24, 2016
by
Robbert Krebbers
Browse files
Error message when =>[H1 .. Hn] is used and goal is not a pvs.
parent
e965b669
Changes
1
Hide whitespace changes
Inline
Side-by-side
proofmode/tactics.v
View file @
0fa2fdcf
...
...
@@ -190,7 +190,10 @@ Local Tactic Notation "iSpecializePat" constr(H) constr(pat) :=
eapply
tac_specialize_assert
with
_
_
_
H1
_
lr
Hs
_
_
_
_
;
[
env_cbv
;
reflexivity
||
fail
"iSpecialize:"
H1
"not found"
|
solve_to_wand
H1
|
match
k
with
GoalStd
=>
apply
to_assert_fallthrough
|
GoalPvs
=>
apply
_
end
|
match
k
with
|
GoalStd
=>
apply
to_assert_fallthrough
|
GoalPvs
=>
apply
_
||
fail
"iSpecialize: cannot generate pvs goal"
end
|
env_cbv
;
reflexivity
||
fail
"iSpecialize:"
Hs
"not found"
|
(
*
goal
*
)
|
go
H1
pats
]
...
...
@@ -713,7 +716,10 @@ Tactic Notation "iAssert" constr(Q) "with" constr(Hs) "as" constr(pat) :=
|
iDestructHyp
H
as
pat
]
|
[
SGoal
?
k
?
lr
?
Hs
]
=>
eapply
tac_assert
with
_
_
_
lr
Hs
H
Q
_
;
(
*
(
js
:=
Hs
)
(
j
:=
H
)
(
P
:=
Q
)
*
)
[
match
k
with
GoalStd
=>
apply
to_assert_fallthrough
|
GoalPvs
=>
apply
_
end
[
match
k
with
|
GoalStd
=>
apply
to_assert_fallthrough
|
GoalPvs
=>
apply
_
||
fail
"iAssert: cannot generate pvs goal"
end
|
env_cbv
;
reflexivity
||
fail
"iAssert:"
Hs
"not found"
|
env_cbv
;
reflexivity
|
|
iDestructHyp
H
as
pat
]
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment