Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
Actris
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
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
tlsomers
Actris
Commits
621a41d6
Commit
621a41d6
authored
5 years ago
by
Jonas Kastberg
Browse files
Options
Downloads
Patches
Plain Diff
More nits and consistency of CoqDoc
parent
34d30758
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
theories/channel/proto_model.v
+2
-2
2 additions, 2 deletions
theories/channel/proto_model.v
theories/utils/auth_excl.v
+7
-1
7 additions, 1 deletion
theories/utils/auth_excl.v
theories/utils/contribution.v
+6
-8
6 additions, 8 deletions
theories/utils/contribution.v
with
15 additions
and
11 deletions
theories/channel/proto_model.v
+
2
−
2
View file @
621a41d6
...
...
@@ -9,14 +9,14 @@ The main difference is that the protocols are defined over predicates,
in place of types.
Dependent Separation Protocols are modelled as the following type:
- [proto
]
:= 1 + (
[
action
]
* (V → (▶
[
proto
]
→ PROP) → PROP))
- [proto := 1 + (action * (V → (▶ proto → PROP) → PROP))
]
Here the left-hand side of the sum is used for the terminated process,
while the right-hand side is used for the communication constructors.
[action] is an inductively defined datatype with two constructors,
that is used to differentiate between sending and received, rather than
having two distinct sums in [proto].
- [action
]
:=
[
Send
]
|
[
Receive]
- [action := Send | Receive]
The remainder (V → (▶ [proto] → PROP) → PROP)) is a continuation that
depends on the communicated value V and the dependent tail (▶ proto → PROP)
...
...
This diff is collapsed.
Click to expand it.
theories/utils/auth_excl.v
+
7
−
1
View file @
621a41d6
(** This file provides utility for defining and using
the commonly used ghost functor over authoritative exclusive ownership. *)
a commonly used ghost functor over authoritative exclusive ownership.
[AuthExcl A := Auth (Option (Excl A))]
This is isomorphic to a half-ownership, with an intuitive
use-case, being putting the authoritative part in an
invariant, while giving the other fragment to the client
with write permissions. *)
From
iris
.
proofmode
Require
Import
tactics
.
From
iris
.
algebra
Require
Import
excl
auth
.
From
iris
.
base_logic
.
lib
Require
Import
own
.
...
...
This diff is collapsed.
Click to expand it.
theories/utils/contribution.v
+
6
−
8
View file @
621a41d6
(** This file defines a ghost functor for tracking
"contributions" made to a shared concurrent effort.
It is ultimately defined as:
contribution := Auth (Option ((Pos * A) + Excl 1))
Intuitively it allows one to allocate a [server] and
a number of [client] fragments. The server keeps track
of the number of active clients, and what resources they
are currently holding.
To deallocate a client it must hold no resources.
To deallocate a server there must be no remaining clients.
[contribution := Auth (Option ((Pos * A) + Excl 1))]
Intuitively it allows one to allocate a [server] and a
number of [client] fragments, where the server keeps
track of the number of active clients, and what resources
they are currently holding.
*)
From
iris
.
base_logic
Require
Export
base_logic
lib
.
iprop
lib
.
own
.
From
iris
.
proofmode
Require
Export
tactics
.
...
...
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