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
625d60c3
Commit
625d60c3
authored
6 years ago
by
Robbert Krebbers
Browse files
Options
Downloads
Patches
Plain Diff
Some useful BI derived lemmas.
parent
ea07fcbc
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/bi/derived_laws_bi.v
+6
-0
6 additions, 0 deletions
theories/bi/derived_laws_bi.v
theories/bi/plainly.v
+3
-0
3 additions, 0 deletions
theories/bi/plainly.v
with
9 additions
and
0 deletions
theories/bi/derived_laws_bi.v
+
6
−
0
View file @
625d60c3
...
...
@@ -385,6 +385,9 @@ Proof.
apply
wand_intro_l
.
rewrite
left_absorb
.
auto
.
Qed
.
Lemma
wand_trans
P
Q
R
:
(
P
-∗
Q
)
∗
(
Q
-∗
R
)
⊢
(
P
-∗
R
)
.
Proof
.
apply
wand_intro_l
.
by
rewrite
assoc
!
wand_elim_r
.
Qed
.
Lemma
wand_curry
P
Q
R
:
(
P
-∗
Q
-∗
R
)
⊣⊢
(
P
∗
Q
-∗
R
)
.
Proof
.
apply
(
anti_symm
_)
.
...
...
@@ -429,6 +432,9 @@ Lemma wand_entails P Q : (P -∗ Q)%I → P ⊢ Q.
Proof
.
intros
.
rewrite
-
[
P
]
emp_sep
.
by
apply
wand_elim_l'
.
Qed
.
Lemma
entails_wand
P
Q
:
(
P
⊢
Q
)
→
(
P
-∗
Q
)
%
I
.
Proof
.
intros
->
.
apply
wand_intro_r
.
by
rewrite
left_id
.
Qed
.
(* A version that works with rewrite, in which bi_emp_valid is unfolded. *)
Lemma
entails_wand'
P
Q
:
(
P
⊢
Q
)
→
emp
⊢
(
P
-∗
Q
)
.
Proof
.
apply
entails_wand
.
Qed
.
Lemma
equiv_wand_iff
P
Q
:
(
P
⊣⊢
Q
)
→
(
P
∗-∗
Q
)
%
I
.
Proof
.
intros
->
;
apply
wand_iff_refl
.
Qed
.
...
...
This diff is collapsed.
Click to expand it.
theories/bi/plainly.v
+
3
−
0
View file @
625d60c3
...
...
@@ -188,6 +188,9 @@ Proof.
apply
plainly_mono
,
impl_elim
with
P
;
auto
.
Qed
.
Lemma
plainly_emp_2
:
emp
⊢@
{
PROP
}
■
emp
.
Proof
.
apply
plainly_emp_intro
.
Qed
.
Lemma
plainly_sep_dup
P
:
■
P
⊣⊢
■
P
∗
■
P
.
Proof
.
apply
(
anti_symm
_)
.
...
...
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