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
9b4b5adc
Commit
9b4b5adc
authored
1 year ago
by
Ralf Jung
Committed by
Robbert Krebbers
1 year ago
Browse files
Options
Downloads
Patches
Plain Diff
Improvements by Ralf.
parent
551ad986
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
docs/equalities_and_entailments.md
+17
-9
17 additions, 9 deletions
docs/equalities_and_entailments.md
with
17 additions
and
9 deletions
docs/equalities_and_entailments.md
+
17
−
9
View file @
9b4b5adc
...
...
@@ -53,24 +53,32 @@ Here, stdpp adds the following facilities:
`n`
arguments of the function
`f`
. This significantly reduces backtracking
during
`Proper`
search and thus improves performance/avoids diverging failing
instance searches. These first arguments typically include type variables
(
`A : Type`
or
`B : A → Type`
); type class parameters (
`C A`
); Leibniz
arguments (
`i : nat`
or
`i : Z`
).
(
`A : Type`
or
`B : A → Type`
), type class parameters (
`C A`
), and Leibniz
arguments (
`i : nat`
or
`i : Z`
), so they cannot be rewritten or don't need
setoid rewriting.
Examples:
+
For
`cons : ∀ A, A → list A → list A`
we have
`Params (@cons) 1`
.
+
For
`replicate : ∀ A, nat → A → list A`
we have
`Params (@replicate) 2`
.
+
For
`cons : ∀ A, A → list A → list A`
we have
`Params (@cons) 1`
,
indicating that the type argument named
`A`
is not up to rewriting.
+
For
`replicate : ∀ A, nat → A → list A`
we have
`Params (@replicate) 2`
indicating that the type argument
`A`
is not up to rewriting and that the
`nat`
-typed argument also doesn't show up as rewriteable in the
`Proper`
instance (because rewriting with
`=`
doesn't need such an instance).
+
For
`lookup : ∀ {Lookup K A M}, K → M → option A`
we have
`Params (@lookup) 5`
: there are 3 Type parameters, 1 type class, and a key
(which is Leibniz for all instances).
-
Consequenently,
`Proper .. f`
instances are always written in such a way
that
`f`
is partially applied with the first
`n`
arguments from
`Params f n`
.
Note that implicit arguments count here.
This means that
`Proper`
instances never start with
`(=) ==>`
.
Examples:
+
`Proper ((≡@{A}) ==> (≡@{list A}) ==> (≡@{list A})) cons`
(where
`cons`
is
`@cons A`
, matching the 1 in
`Params`
)
+
`Proper ((≡@{A}) ==> (≡@{list A})) (replicate n)`
(where
`replicate n`
is
`@replicate A n`
)
+
`Proper ((≡@{M}) ==> (≡@{option A})) (lookup k)`
-
If the function
`f`
is not a definition, but a parameter (of a higher order
function), then there is no
`Params`
instance. However,
`Proper
`
premises
are still
written using the convention above. Example:
(where
`lookup k`
is
`@lookup K A M _ k`
, so 5 parameters are fixed, matching the
`Param`
)
-
Lemmas about higher-order functions often need
`Params
`
premises
.
These are also
written using the convention above. Example:
```
Lemma set_fold_ind `{Set A C} {B} (P : B → C → Prop) (f : A → B → B) (b : B) :
...
...
@@ -78,10 +86,10 @@ Lemma set_fold_ind `{Set A C} {B} (P : B → C → Prop) (f : A → B → B) (b
```
-
For premises involving predicates (such as
`P`
in
`set_fold_ind`
above), we
always write the weakest
p
roper: that is, use
`impl`
instead of
`iff`
(and
always write the weakest
`P
roper
`
: that is, use
`impl`
instead of
`iff`
(and
in Iris, write
`(⊢)`
instead of
`(⊣⊢)`
). For "simple"
`P`
s, there should be
instances to solve both
`impl`
and
`iff`
using
`solve_proper`
, and for more
complicated cases where
`solve_proper`
fails, a
`impl`
is much easier to
complicated cases where
`solve_proper`
fails, a
n
`impl`
is much easier to
prove by hand than an
`iff`
.
## Equivalences on OFEs
...
...
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