Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Jonas Kastberg
iris
Commits
3c2ea188
Commit
3c2ea188
authored
Mar 25, 2020
by
Ralf Jung
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'robbert/exist_laterable' into 'master'
Prove `Laterable (∃ x, Φ x)`. See merge request
iris/iris!401
parents
3a0d7152
d3a4d722
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
theories/bi/lib/laterable.v
theories/bi/lib/laterable.v
+8
-0
No files found.
theories/bi/lib/laterable.v
View file @
3c2ea188
...
...
@@ -55,6 +55,14 @@ Section instances.
-
iApply
"HQ"
.
done
.
Qed
.
Global
Instance
exist_laterable
{
A
}
(
Φ
:
A
→
PROP
)
:
(
∀
x
,
Laterable
(
Φ
x
))
→
Laterable
(
∃
x
,
Φ
x
).
Proof
.
rewrite
/
Laterable
.
iIntros
(
L
Φ
).
iDestruct
1
as
(
x
)
"H"
.
iDestruct
(
L
Φ
with
"H"
)
as
(
Q
)
"[HQ #HΦ]"
.
iExists
Q
.
iIntros
"{$HQ} !# HQ"
.
iExists
x
.
by
iApply
"HΦ"
.
Qed
.
Global
Instance
big_sepL_laterable
Ps
:
Timeless
(
PROP
:
=
PROP
)
emp
→
TCForall
Laterable
Ps
→
...
...
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