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
George Pirlea
Iris
Commits
f5f09abb
Commit
f5f09abb
authored
8 years ago
by
Robbert Krebbers
Browse files
Options
Downloads
Patches
Plain Diff
Allow framing in weakestpre.
parent
200f88a9
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
program_logic/hoare.v
+2
-4
2 additions, 4 deletions
program_logic/hoare.v
proofmode/weakestpre.v
+3
-0
3 additions, 0 deletions
proofmode/weakestpre.v
with
5 additions
and
4 deletions
program_logic/hoare.v
+
2
−
4
View file @
f5f09abb
...
@@ -96,13 +96,11 @@ Qed.
...
@@ -96,13 +96,11 @@ Qed.
Lemma
ht_frame_l
E
P
Φ
R
e
:
Lemma
ht_frame_l
E
P
Φ
R
e
:
{{
P
}}
e
@
E
{{
Φ
}}
⊢
{{
R
★
P
}}
e
@
E
{{
v
,
R
★
Φ
v
}}
.
{{
P
}}
e
@
E
{{
Φ
}}
⊢
{{
R
★
P
}}
e
@
E
{{
v
,
R
★
Φ
v
}}
.
Proof
.
Proof
.
iIntros
"#Hwp ! [$ HP]"
.
by
iApply
"Hwp"
.
Qed
.
iIntros
"#Hwp ! [HR HP]"
.
iApply
wp_frame_l
;
iFrame
"HR"
.
by
iApply
"Hwp"
.
Qed
.
Lemma
ht_frame_r
E
P
Φ
R
e
:
Lemma
ht_frame_r
E
P
Φ
R
e
:
{{
P
}}
e
@
E
{{
Φ
}}
⊢
{{
P
★
R
}}
e
@
E
{{
v
,
Φ
v
★
R
}}
.
{{
P
}}
e
@
E
{{
Φ
}}
⊢
{{
P
★
R
}}
e
@
E
{{
v
,
Φ
v
★
R
}}
.
Proof
.
setoid_rewrite
(
comm
_
_
R
);
apply
ht_frame_l
.
Qed
.
Proof
.
iIntros
"#Hwp ! [HP $]"
.
by
iApply
"Hwp"
.
Qed
.
Lemma
ht_frame_step_l
E
E1
E2
P
R1
R2
R3
e
Φ
:
Lemma
ht_frame_step_l
E
E1
E2
P
R1
R2
R3
e
Φ
:
to_val
e
=
None
→
E
⊥
E1
→
E2
⊆
E1
→
to_val
e
=
None
→
E
⊥
E1
→
E2
⊆
E1
→
...
...
This diff is collapsed.
Click to expand it.
proofmode/weakestpre.v
+
3
−
0
View file @
f5f09abb
...
@@ -8,6 +8,9 @@ Context {Λ : language} {Σ : iFunctor}.
...
@@ -8,6 +8,9 @@ Context {Λ : language} {Σ : iFunctor}.
Implicit
Types
P
Q
:
iProp
Λ
Σ
.
Implicit
Types
P
Q
:
iProp
Λ
Σ
.
Implicit
Types
Φ
:
val
Λ
→
iProp
Λ
Σ
.
Implicit
Types
Φ
:
val
Λ
→
iProp
Λ
Σ
.
Global
Instance
frame_wp
E
e
R
Φ
Ψ
:
(
∀
v
,
Frame
R
(
Φ
v
)
(
Ψ
v
))
→
Frame
R
(
WP
e
@
E
{{
Φ
}})
(
WP
e
@
E
{{
Ψ
}})
.
Proof
.
rewrite
/
Frame
=>
HR
.
rewrite
wp_frame_l
.
apply
wp_mono
,
HR
.
Qed
.
Global
Instance
fsa_split_wp
E
e
Φ
:
Global
Instance
fsa_split_wp
E
e
Φ
:
FSASplit
(
WP
e
@
E
{{
Φ
}})
%
I
E
(
wp_fsa
e
)
(
language
.
atomic
e
)
Φ
.
FSASplit
(
WP
e
@
E
{{
Φ
}})
%
I
E
(
wp_fsa
e
)
(
language
.
atomic
e
)
Φ
.
Proof
.
split
.
done
.
apply
_
.
Qed
.
Proof
.
split
.
done
.
apply
_
.
Qed
.
...
...
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