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
Model registry
Operate
Environments
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
Iris
Actris
Commits
5da00edc
Commit
5da00edc
authored
4 years ago
by
Jonas Kastberg
Browse files
Options
Downloads
Patches
Plain Diff
Nits
parent
9456e121
No related branches found
No related tags found
1 merge request
!16
File headers
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
theories/logrel/model.v
+4
-4
4 additions, 4 deletions
theories/logrel/model.v
theories/logrel/session_types.v
+2
-2
2 additions, 2 deletions
theories/logrel/session_types.v
theories/logrel/term_types.v
+3
-5
3 additions, 5 deletions
theories/logrel/term_types.v
with
9 additions
and
11 deletions
theories/logrel/model.v
+
4
−
4
View file @
5da00edc
(** This file contains the definition of what semantic term types and semantic
(** This file contains the definition of what semantic term types and semantic
session types are. A semantic term type is a unary (Iris) predicate on values
,
session types are. A semantic term type is a unary (Iris) predicate on values
as is customary in a logical relation for type soundness.
A semantic session
[val → iProp],
as is customary in a logical relation for type soundness.
type is essentially
an Actris protocol.
A semantic session type is
an Actris protocol
[iProto]
.
There is a single variant [lty Σ k], which contains either a term type or a
There is a single
kinded
variant [lty Σ k], which contains either a term type or a
session type, depending on the kind [k]. The reason for having a single type
session type, depending on the kind [k]. The reason for having a single type
containing both term types and session types is that it allows for uniform
containing both term types and session types is that it allows for uniform
definitions of polymorphic binders for term types and session types, instead of
definitions of polymorphic binders for term types and session types, instead of
...
...
This diff is collapsed.
Click to expand it.
theories/logrel/session_types.v
+
2
−
2
View file @
5da00edc
(** This file defines the semantic interpretations of sess
s
ion types as Actris
(** This file defines the semantic interpretations of session types as Actris
protocols. It includes session types for sending and receiving with session
protocols. It includes session types for sending and receiving with session
polymorphism, as well as n-ary choice. Recursive protocols are defined in
polymorphism, as well as n-ary choice. Recursive protocols are defined in
[
model.v
]
. *)
the
model.v
file
. *)
From
iris
.
algebra
Require
Export
gmap
.
From
iris
.
algebra
Require
Export
gmap
.
From
actris
.
logrel
Require
Export
model
kind_tele
.
From
actris
.
logrel
Require
Export
model
kind_tele
.
From
actris
.
channel
Require
Export
channel
.
From
actris
.
channel
Require
Export
channel
.
...
...
This diff is collapsed.
Click to expand it.
theories/logrel/term_types.v
+
3
−
5
View file @
5da00edc
...
@@ -4,21 +4,19 @@ term type formers of the type system. The semantic interpretation of a type
...
@@ -4,21 +4,19 @@ term type formers of the type system. The semantic interpretation of a type
when a value belongs to a certain type.
when a value belongs to a certain type.
The following types are defined:
The following types are defined:
- [unit], [bool], [int]: basic types for unit, boolean and integer values,
- [unit], [bool], [int]: basic types for unit, boolean and integer values,
respectively.
respectively.
- [any]: inhabited by all values.
- [any]: inhabited by all values.
- [A ⊸ B]: the type of affine functions from [A] to [B]. Affine functions can
- [A ⊸ B]: the type of affine functions from [A] to [B]. Affine functions can
only be invoked once, since they might have captured affine resources.
only be invoked once, since they might have captured affine resources.
- [A → B]: the type of non-affine (copyable) functions from [A] to [B]. These
- [A → B]: the type of non-affine (copyable) functions from [A] to [B]. These
can be invoked any number of times. This is simply syntactic sugar for
[copy
can be invoked any number of times. This is simply syntactic sugar for
(A ⊸ B)].
[copy
(A ⊸ B)].
- [A * B], [A + B], [∀ X, A], [∃ X, A]: products, sums, universal types,
- [A * B], [A + B], [∀ X, A], [∃ X, A]: products, sums, universal types,
existential types.
existential types.
- [copy A]: inhabited by those values in the type [A] which are copyable. In the
- [copy A]: inhabited by those values in the type [A] which are copyable. In the
case of functions, for instance, functions (closures) which capture affine
case of functions, for instance, functions (closures) which capture affine
resources are not copyable, whereas functions that do not capture resources
resources are not copyable, whereas functions that do not capture resources are.
are.
- [copy- A]: acts as a kind of "inverse" to [copy A]. More precisely, we have
- [copy- A]: acts as a kind of "inverse" to [copy A]. More precisely, we have
that [copy- (copy A) <:> A]. This type is used to indicate the results of
that [copy- (copy A) <:> A]. This type is used to indicate the results of
operations that might consume a resource, but do not always do so, depending
operations that might consume a resource, but do not always do so, depending
...
...
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