Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
iris-coq
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
Marianna Rapoport
iris-coq
Commits
b90854c7
Commit
b90854c7
authored
9 years ago
by
Robbert Krebbers
Browse files
Options
Downloads
Patches
Plain Diff
Generalize wp_fork to have an arbitrary post-condition.
parent
ae64fb70
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
heap_lang/derived.v
+1
-1
1 addition, 1 deletion
heap_lang/derived.v
heap_lang/lifting.v
+3
-4
3 additions, 4 deletions
heap_lang/lifting.v
with
4 additions
and
5 deletions
heap_lang/derived.v
+
1
−
1
View file @
b90854c7
...
...
@@ -30,7 +30,7 @@ Proof.
by
rewrite
-
wp_let'
//=
?to_of_val
?subst_empty
.
Qed
.
Lemma
wp_skip
E
Q
:
▷
(
Q
(
LitV
LitUnit
))
⊑
wp
E
Skip
Q
.
Lemma
wp_skip
E
Q
:
▷
(
Q
(
LitV
LitUnit
))
⊑
wp
E
Skip
Q
.
Proof
.
rewrite
-
wp_seq
-
wp_value
//
-
wp_value
//.
Qed
.
Lemma
wp_le
E
(
n1
n2
:
Z
)
P
Q
:
...
...
This diff is collapsed.
Click to expand it.
heap_lang/lifting.v
+
3
−
4
View file @
b90854c7
...
...
@@ -76,13 +76,12 @@ Proof.
Qed
.
(** Base axioms for core primitives of the language: Stateless reductions *)
Lemma
wp_fork
E
e
:
▷
wp
(
Σ
:=
Σ
)
coPset_all
e
(
λ
_,
True
)
⊑
wp
E
(
Fork
e
)
(
λ
v
,
v
=
LitV
LitUnit
)
.
Lemma
wp_fork
E
e
Q
:
(
▷
Q
(
LitV
LitUnit
)
★
▷
wp
(
Σ
:=
Σ
)
coPset_all
e
(
λ
_,
True
)
)
⊑
wp
E
(
Fork
e
)
Q
.
Proof
.
rewrite
-
(
wp_lift_pure_det_step
(
Fork
e
)
(
Lit
LitUnit
)
(
Some
e
))
//=
;
last
by
intros
;
inv_step
;
eauto
.
apply
later_mono
,
sep_intro_True_l
;
last
done
.
by
rewrite
-
(
wp_value
_
_
(
Lit
_))
//
;
apply
const_intro
.
rewrite
later_sep
-
(
wp_value
_
_
(
Lit
_))
//.
Qed
.
(* For the lemmas involving substitution, we only derive a preliminary version.
...
...
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