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
Environments
Terraform modules
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
Adam
Iris
Commits
c727bce5
Unverified
Commit
c727bce5
authored
1 year ago
by
Tej Chajed
Browse files
Options
Downloads
Patches
Plain Diff
Fix broken code links in docs
parent
f2800611
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
docs/editor.md
+1
-1
1 addition, 1 deletion
docs/editor.md
docs/heap_lang.md
+1
-1
1 addition, 1 deletion
docs/heap_lang.md
docs/proof_mode.md
+1
-1
1 addition, 1 deletion
docs/proof_mode.md
docs/resource_algebras.md
+6
-6
6 additions, 6 deletions
docs/resource_algebras.md
with
9 additions
and
9 deletions
docs/editor.md
+
1
−
1
View file @
c727bce5
...
...
@@ -5,7 +5,7 @@ If you really want to, you can also avoid having to type unicode characters by
importing
`iris.bi.ascii`
. That enables parsing-only ASCII alternatives to many
unicode notations. (Feel free to report an issue when you notice that a notation
is missing.) The easiest way to learn the ASCII syntax is to
[
read this file
](
/iris/bi/ascii.v
)
.
[
read this file
](
..
/iris/bi/ascii.v
)
.
Note however that this will make your code harder to read and work on for Iris
developers that are used to our default unicode notation---generally, our
recommendation is to use the unicode syntax whenever possible. In particular,
...
...
This diff is collapsed.
Click to expand it.
docs/heap_lang.md
+
1
−
1
View file @
c727bce5
...
...
@@ -128,7 +128,7 @@ all of the redexes reduced.)
Sometimes, it is useful to define a derived notion in HeapLang that involves
thunks. For example, the parallel composition
`e1 ||| e2`
is definable in
HeapLang, but that requires thunking
`e1`
and
`e2`
before passing them to
`par`
. (This is defined in
[
`par.v`
](
theories/
heap_lang/lib/par.v
)
.) However,
`par`
. (This is defined in
[
`par.v`
](
../iris_
heap_lang/lib/par.v
)
.) However,
this is somewhat subtle because of the distinction between expression lambdas
and value lambdas.
...
...
This diff is collapsed.
Click to expand it.
docs/proof_mode.md
+
1
−
1
View file @
c727bce5
...
...
@@ -21,7 +21,7 @@ pervasively. These are defined in dedicated sections in this manual.
Many of the tactics below apply to more goals than described in this document
since the behavior of these tactics can be tuned via instances of the type
classes in the file
[
proofmode/classes
](
iris/proofmode/classes.v
)
. Most notably, many
classes in the file
[
proofmode/classes
](
../
iris/proofmode/classes.v
)
. Most notably, many
of the tactics can be applied when the connective to be introduced or to be eliminated
appears under a later, an update modality, or in the conclusion of a
weakest precondition.
...
...
This diff is collapsed.
Click to expand it.
docs/resource_algebras.md
+
6
−
6
View file @
c727bce5
...
...
@@ -99,7 +99,7 @@ To obtain a closed Iris proof, i.e., a proof that does not make assumptions like
`inG`
, you have to assemble a list of functors of all the involved modules,
and if your proof relies on some singleton (most do, at least indirectly; also
see the next section), you have to call the respective initialization or
adequacy lemma.
[
For example
](
tests/one_shot.v
)
:
adequacy lemma.
[
For example
](
../
tests/one_shot.v
)
:
```
coq
Section
client
.
Context
`{
!
heapGS
Σ
,
!
one_shotG
Σ
,
!
spawnG
Σ
}
.
...
...
@@ -142,9 +142,9 @@ would be incompatible with each other.
The
`gen_heapGpreS`
typeclass (without the singleton data) is relevant for
initialization, i.e., to create an instance of
`gen_heapGS`
. This is happening as
part of
[
`heap_adequacy`
](
iris_heap_lang/adequacy.v
)
using the
part of
[
`heap_adequacy`
](
../
iris_heap_lang/adequacy.v
)
using the
initialization lemma for
`gen_heapGS`
from
[
`gen_heap_init`
](
iris/base_logic/lib/gen_heap.v
)
:
[
`gen_heap_init`
](
../
iris/base_logic/lib/gen_heap.v
)
:
```
coq
Lemma
gen_heap_init
`{
gen_heapGpreS
L
V
Σ
}
σ
:
(|
==>
∃
_
:
gen_heapGS
L
V
Σ
,
gen_heap_ctx
σ
)
%
I
.
...
...
@@ -232,9 +232,9 @@ F (X,X⁻) := gmap K (agree (nat * ▶ X))
To make it convenient to construct such functors and prove their contractivity,
we provide a number of abstractions:
-
[
`oFunctor`
](
iris/algebra/ofe.v
)
: functors from COFEs to OFEs.
-
[
`rFunctor`
](
iris/algebra/cmra.v
)
: functors from COFEs to cameras.
-
[
`urFunctor`
](
iris/algebra/cmra.v
)
: functors from COFEs to unital
-
[
`oFunctor`
](
../
iris/algebra/ofe.v
)
: functors from COFEs to OFEs.
-
[
`rFunctor`
](
../
iris/algebra/cmra.v
)
: functors from COFEs to cameras.
-
[
`urFunctor`
](
../
iris/algebra/cmra.v
)
: functors from COFEs to unital
cameras.
Besides, there are the classes
`oFunctorContractive`
,
`rFunctorContractive`
, and
...
...
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