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
Simon Friis Vindum
Iris
Commits
890b60e5
Commit
890b60e5
authored
Aug 12, 2019
by
Robbert Krebbers
Browse files
Fix issue
#260
.
parent
d6672184
Changes
1
Hide whitespace changes
Inline
Side-by-side
theories/proofmode/ltac_tactics.v
View file @
890b60e5
...
...
@@ -2445,7 +2445,9 @@ Tactic Notation "iLöbCore" "as" constr (IH) :=
(* apply is sometimes confused wrt. canonical structures search.
refine should use the other unification algorithm, which should
not have this issue. *)
notypeclasses
refine
(
tac_l
ö
b
_
IH
_
_
_
)
;
first
[
notypeclasses
refine
(
tac_l
ö
b
_
IH
_
_
_
)
|
fail
1
"iLöb: not a step-indexed BI entailment"
]
;
[
reflexivity
||
fail
"iLöb: spatial context not empty, this should not happen"
|
pm_reduce
;
lazymatch
goal
with
...
...
@@ -2653,7 +2655,9 @@ Local Ltac iRewriteFindPred :=
Local
Tactic
Notation
"iRewriteCore"
constr
(
lr
)
open_constr
(
lem
)
:
=
iPoseProofCore
lem
as
true
(
fun
Heq
=>
eapply
(
tac_rewrite
_
Heq
_
_
lr
)
;
first
[
eapply
(
tac_rewrite
_
Heq
_
_
lr
)
|
fail
1
"iRewrite: not a step-indexed BI entailment"
]
;
[
pm_reflexivity
||
let
Heq
:
=
pretty_ident
Heq
in
fail
"iRewrite:"
Heq
"not found"
...
...
Write
Preview
Supports
Markdown
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