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
ee948028
Commit
ee948028
authored
9 years ago
by
Robbert Krebbers
Browse files
Options
Downloads
Patches
Plain Diff
Remove FIXME now that ssr bug #22 is fixed.
parent
fb144483
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
README
+1
-7
1 addition, 7 deletions
README
barrier/lifting.v
+2
-4
2 additions, 4 deletions
barrier/lifting.v
with
3 additions
and
11 deletions
README
+
1
−
7
View file @
ee948028
...
...
@@ -4,15 +4,9 @@ PREREQUISITES
This version is known to compile with:
- Coq 8.5
- Ssreflect
1.6
- Ssreflect
>= 3cc0493
- Autosubst 1.4
For development, better make sure you have a version of Ssreflect that includes
commit be724937 (no such version has been released so far, you will have to
fetch the development branch yourself). Iris compiles fine even without this
patch, but proof bullets will only be in 'strict' (enforcing) mode with the
fixed version of Ssreflect.
BUILDING INSTRUCTIONS
---------------------
...
...
This diff is collapsed.
Click to expand it.
barrier/lifting.v
+
2
−
4
View file @
ee948028
...
...
@@ -21,10 +21,8 @@ Lemma wp_alloc_pst E σ e v Q :
(
ownP
σ
★
▷
(
∀
l
,
■
(
σ
!!
l
=
None
)
∧
ownP
(
<
[
l
:=
v
]
>
σ
)
-★
Q
(
LocV
l
)))
⊑
wp
E
(
Alloc
e
)
Q
.
Proof
.
(* TODO RJ: Without the set, ssreflect rewrite doesn't work. Figure out why or
reprot a bug. *)
intros
.
set
(
φ
v'
σ'
ef
:=
∃
l
,
ef
=
@
None
expr
∧
v'
=
LocV
l
∧
σ'
=
<
[
l
:=
v
]
>
σ
∧
σ
!!
l
=
None
)
.
rewrite
-
(
wp_lift_atomic_step
(
Alloc
e
)
φ
σ
)
//
/
φ
;
intros
;
rewrite
-
(
wp_lift_atomic_step
(
Alloc
e
)
(
λ
v'
σ'
ef
,
∃
l
,
ef
=
None
∧
v'
=
LocV
l
∧
σ'
=
<
[
l
:=
v
]
>
σ
∧
σ
!!
l
=
None
)
σ
)
//
;
last
by
intros
;
inv_step
;
eauto
8
.
apply
sep_mono
,
later_mono
;
first
done
.
apply
forall_intro
=>
e2
;
apply
forall_intro
=>
σ2
;
apply
forall_intro
=>
ef
.
...
...
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