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
Jonas Kastberg
iris
Commits
19f72a60
Commit
19f72a60
authored
Feb 02, 2018
by
Robbert Krebbers
Browse files
Tests for framing under conjunctions.
parent
082ba8f2
Changes
1
Hide whitespace changes
Inline
Side-by-side
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