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
Pierre Roux
Iris
Commits
55a89a20
Commit
55a89a20
authored
4 years ago
by
Robbert Krebbers
Browse files
Options
Downloads
Patches
Plain Diff
Improve CHANGELOG.
parent
c74d8afd
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
CHANGELOG.md
+9
-7
9 additions, 7 deletions
CHANGELOG.md
with
9 additions
and
7 deletions
CHANGELOG.md
+
9
−
7
View file @
55a89a20
...
@@ -143,15 +143,18 @@ HeapLang, which is now in a separate package `coq-iris-heap-lang`.
...
@@ -143,15 +143,18 @@ HeapLang, which is now in a separate package `coq-iris-heap-lang`.
initial heap.
initial heap.
*
Rename
`mapsto_mapsto_ne`
to
`mapsto_frac_ne`
, and add a simpler
*
Rename
`mapsto_mapsto_ne`
to
`mapsto_frac_ne`
, and add a simpler
`mapsto_ne`
that does not require reasoning about fractions.
`mapsto_ne`
that does not require reasoning about fractions.
*
Generalize the
`gen_heap`
library to discardable fractions.
*
Extend the
`gen_heap`
library with read-only points-to assertions using
[
discardable fractions
](
iris/algebra/dfrac.v
)
.
+
The
`mapsto`
connective now takes a
`dfrac`
rather than a
`frac`
(i.e.,
+
The
`mapsto`
connective now takes a
`dfrac`
rather than a
`frac`
(i.e.,
positive rational number
`Qp`
).
positive rational number
`Qp`
).
+
The notation
`l ↦{ dq } v`
is generalized to discardable fractions
+
The notation
`l ↦{ dq } v`
is generalized to discardable fractions
`dq : dfrac`
.
`dq : dfrac`
.
+
The new notation
`l ↦{# q} v`
is used for a concrete fraction
`q : frac`
+
The new notation
`l ↦{# q} v`
is used for a concrete fraction
`q : frac`
(e.g., to enable writing
`l ↦{# 1/2} v`
).
(e.g., to enable writing
`l ↦{# 1/2} v`
).
+
The new notation
`l ↦□ v`
is used for the discarded fraction.
+
The new notation
`l ↦□ v`
is used for the discarded fraction. This
+
The lemma
`mapsto_persist : l ↦{dq} v ==∗ l ↦□ v`
has been added.
persistent proposition provides read-only access to
`l`
.
+
The lemma
`mapsto_persist : l ↦{dq} v ==∗ l ↦□ v`
is used for making the
location
`l`
read-only.
+
See the changes to HeapLang for an indication on how to adapt your language.
+
See the changes to HeapLang for an indication on how to adapt your language.
+
See the changes to iris-examples for an indication on how to adapt your
+
See the changes to iris-examples for an indication on how to adapt your
development. In particular, instead of
`∃ q, l ↦{q} v`
you likely want to
development. In particular, instead of
`∃ q, l ↦{q} v`
you likely want to
...
@@ -167,10 +170,9 @@ HeapLang, which is now in a separate package `coq-iris-heap-lang`.
...
@@ -167,10 +170,9 @@ HeapLang, which is now in a separate package `coq-iris-heap-lang`.
avoid TC search attempting to apply this instance all the time.
avoid TC search attempting to apply this instance all the time.
*
Merge
`wp_value_inv`
/
`wp_value_inv'`
into
`wp_value_fupd`
/
`wp_value_fupd'`
by
*
Merge
`wp_value_inv`
/
`wp_value_inv'`
into
`wp_value_fupd`
/
`wp_value_fupd'`
by
making the lemma bidirectional.
making the lemma bidirectional.
*
Generalize HeapLang's
`mapsto`
(
`↦`
) and
`array`
(
`↦∗`
) connectives to
*
Generalize HeapLang's
`mapsto`
(
`↦`
),
`array`
(
`↦∗`
), and atomic heap
discardable fractions. See the CHANGELOG entry in the category
`base_logic`
connectives to discardable fractions. See the CHANGELOG entry in the category
for more information.
`base_logic`
for more information.
*
Generalize HeapLang's atomic heap to discardable fractions.
**Changes in `heap_lang`:**
**Changes in `heap_lang`:**
...
...
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