Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
Iris
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Abhishek Anand
Iris
Commits
fa0e8eb8
Commit
fa0e8eb8
authored
6 years ago
by
Robbert Krebbers
Browse files
Options
Downloads
Patches
Plain Diff
Let `done` and friends fail when the proofmode goal is an evar.
This fixes issue #182.
parent
78dedb27
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
theories/proofmode/tactics.v
+2
-1
2 additions, 1 deletion
theories/proofmode/tactics.v
theories/tests/proofmode.v
+4
-1
4 additions, 1 deletion
theories/tests/proofmode.v
with
6 additions
and
2 deletions
theories/proofmode/tactics.v
+
2
−
1
View file @
fa0e8eb8
...
...
@@ -1964,7 +1964,8 @@ Hint Extern 0 (_ ⊢ _) => iStartProof.
(* Make sure that by and done solve trivial things in proof mode *)
Hint
Extern
0
(
envs_entails
_
_)
=>
iPureIntro
;
try
done
.
Hint
Extern
0
(
envs_entails
_
_)
=>
iAssumption
.
Hint
Extern
0
(
envs_entails
_
?Q
)
=>
first
[
is_evar
Q
;
fail
1
|
iAssumption
]
.
Hint
Extern
0
(
envs_entails
_
emp
)
=>
iEmpIntro
.
(* TODO: look for a more principled way of adding trivial hints like those
...
...
This diff is collapsed.
Click to expand it.
theories/tests/proofmode.v
+
4
−
1
View file @
fa0e8eb8
...
...
@@ -86,6 +86,9 @@ Proof. eexists. iIntros "?" (P). iAssumption. Qed.
Lemma
test_iAssumption_affine
P
Q
R
`{
!
Affine
P
,
!
Affine
R
}
:
P
-∗
Q
-∗
R
-∗
Q
.
Proof
.
iIntros
"H1 H2 H3"
.
iAssumption
.
Qed
.
Lemma
test_done_goal_evar
Q
:
∃
P
,
Q
⊢
P
.
Proof
.
eexists
.
iIntros
"H"
.
Fail
done
.
iAssumption
.
Qed
.
Lemma
test_iDestruct_spatial_and
P
Q1
Q2
:
P
∗
(
Q1
∧
Q2
)
-∗
P
∗
Q1
.
Proof
.
iIntros
"[H [? _]]"
.
by
iFrame
.
Qed
.
...
...
@@ -405,7 +408,7 @@ Lemma iFrame_with_evar_l P Q :
∃
R
,
(
P
-∗
Q
-∗
R
∗
P
)
∧
R
=
Q
.
Proof
.
eexists
.
split
.
iIntros
"HP HQ"
.
Fail
iFrame
"HQ"
.
by
iSplitR
"HP"
.
done
.
iSplitR
"HP"
;
iAssumption
.
done
.
Qed
.
Lemma
iFrame_with_evar_persistent
P
Q
:
∃
R
,
(
P
-∗
□
Q
-∗
P
∗
R
∗
Q
)
∧
R
=
emp
%
I
.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment