Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Iris
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
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
Gaëtan Gilbert
Iris
Commits
4cf90c36
Commit
4cf90c36
authored
9 years ago
by
Ralf Jung
Browse files
Options
Downloads
Patches
Plain Diff
markdown README
parent
14258ee6
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
README.md
+33
-0
33 additions, 0 deletions
README.md
program_logic/weakestpre.v
+1
-1
1 addition, 1 deletion
program_logic/weakestpre.v
with
34 additions
and
1 deletion
README
→
README
.md
+
33
−
0
View file @
4cf90c36
PREREQUISITES
# PREREQUISITES
-------------
This version is known to compile with:
This version is known to compile with:
...
@@ -12,9 +11,23 @@ fetch the development branch yourself). Iris compiles fine even without this
...
@@ -12,9 +11,23 @@ fetch the development branch yourself). Iris compiles fine even without this
patch, but proof bullets will only be in 'strict' (enforcing) mode with the
patch, but proof bullets will only be in 'strict' (enforcing) mode with the
fixed version of Ssreflect.
fixed version of Ssreflect.
BUILDING INSTRUCTIONS
# BUILDING INSTRUCTIONS
---------------------
Run the following command to build the full development:
Run the following command to build the full development:
make
make
# STRUCTURE
*
The folder
`prelude`
contains an extended "Standard Library" by Robbert
Krebbers
<http://robbertkrebbers.nl/thesis.html>
.
*
The folder
`algebra`
contains the COFE and CMRA constructions as well as
the solver for recursive domain equations.
*
The folder
`program_logic`
builds the semantic domain of Iris, defines and
verifies primitive view shifts and weakest preconditions, and builds some
language-independent derived constructions (e.g., STSs).
*
The folder
`heap_lang`
defines the ML-like concurrent heap language, and a
few derived constructions (e.g., parallel composition).
*
The folder
`barrier`
contains the implementation and proof of the barrier.
*
The folder
`examples`
contains the examples given in the paper.
This diff is collapsed.
Click to expand it.
program_logic/weakestpre.v
+
1
−
1
View file @
4cf90c36
...
@@ -248,7 +248,7 @@ Proof. by setoid_rewrite (always_and_sep_r _ _); rewrite wp_frame_r. Qed.
...
@@ -248,7 +248,7 @@ Proof. by setoid_rewrite (always_and_sep_r _ _); rewrite wp_frame_r. Qed.
Lemma
wp_impl_l
E
e
Φ
Ψ
:
Lemma
wp_impl_l
E
e
Φ
Ψ
:
((
□
∀
v
,
Φ
v
→
Ψ
v
)
∧
WP
e
@
E
{{
Φ
}})
⊢
WP
e
@
E
{{
Ψ
}}
.
((
□
∀
v
,
Φ
v
→
Ψ
v
)
∧
WP
e
@
E
{{
Φ
}})
⊢
WP
e
@
E
{{
Ψ
}}
.
Proof
.
Proof
.
rewrite
wp_always_l
;
apply
wp_mono
=>
//
v
.
rewrite
wp_always_l
.
apply
wp_mono
=>
//
v
.
by
rewrite
always_elim
(
forall_elim
v
)
impl_elim_l
.
by
rewrite
always_elim
(
forall_elim
v
)
impl_elim_l
.
Qed
.
Qed
.
Lemma
wp_impl_r
E
e
Φ
Ψ
:
Lemma
wp_impl_r
E
e
Φ
Ψ
:
...
...
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