Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Jonas Kastberg
iris
Commits
19f72a60
Commit
19f72a60
authored
Feb 02, 2018
by
Robbert Krebbers
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Tests for framing under conjunctions.
parent
082ba8f2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
+7
-0
theories/tests/proofmode.v
theories/tests/proofmode.v
+7
-0
No files found.
theories/tests/proofmode.v
View file @
19f72a60
...
...
@@ -110,6 +110,13 @@ Proof. iIntros "#HP1 HQ2 HP2". iFrame "HP1 HQ2 HP2". Qed.
Lemma
test_iFrame_disjunction_2
P
:
P
-
∗
(
True
∨
True
)
∗
P
.
Proof
.
iIntros
"HP"
.
iFrame
"HP"
.
auto
.
Qed
.
Lemma
test_iFrame_conjunction_1
P
Q
:
P
-
∗
Q
-
∗
(
P
∗
Q
)
∧
(
P
∗
Q
).
Proof
.
iIntros
"HP HQ"
.
iFrame
"HP HQ"
.
Qed
.
Lemma
test_iFrame_conjunction_2
P
Q
:
P
-
∗
Q
-
∗
(
P
∧
P
)
∗
(
Q
∧
Q
).
Proof
.
iIntros
"HP HQ"
.
iFrame
"HP HQ"
.
Qed
.
Lemma
test_iAssert_persistent
P
Q
:
P
-
∗
Q
-
∗
True
.
Proof
.
iIntros
"HP HQ"
.
...
...
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