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
cc6cd5bc
Commit
cc6cd5bc
authored
5 years ago
by
jihgfee
Browse files
Options
Downloads
Patches
Plain Diff
Added Producer Consumer example code
parent
33022b98
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
theories/examples/producer_consumer.v
+61
-0
61 additions, 0 deletions
theories/examples/producer_consumer.v
with
61 additions
and
0 deletions
theories/examples/producer_consumer.v
0 → 100644
+
61
−
0
View file @
cc6cd5bc
From
stdpp
Require
Import
sorting
.
From
osiris
.
channel
Require
Import
proto_channel
proofmode
.
From
iris
.
heap_lang
Require
Import
proofmode
notation
.
From
iris
.
heap_lang
Require
Import
assert
.
From
iris
.
heap_lang
.
lib
Require
Import
spin_lock
.
From
osiris
.
utils
Require
Import
list
compare
.
Definition
qenqueue
:
val
:=
λ
:
"q"
"v"
,
#
()
.
Definition
qdequeue
:
val
:=
λ
:
"q"
,
#
()
.
Definition
qis_empty
:
val
:=
λ
:
"q"
,
#
()
.
Definition
enq
:=
true
.
Definition
deq
:=
false
.
Definition
cont
:=
true
.
Definition
stop
:=
false
.
Definition
some
:=
true
.
Definition
none
:=
false
.
Definition
dist_queue
:
val
:=
rec
:
"go"
"q"
"pc"
"cc"
"c"
:=
if
:
"cc"
≤
#
0
then
#
()
else
if
:
recv
"c"
(* enq/deq *)
then
if
:
recv
"c"
(* cont/stop *)
then
"go"
(
qenqueue
"q"
(
recv
"c"
))
"pc"
"cc"
"c"
else
"go"
"q"
(
"pc"
-#
1
)
"cc"
"c"
else
if
:
(
qis_empty
"q"
)
then
if
:
"pc"
≤
#
0
then
send
"c"
#
stop
;;
"go"
"q"
"pc"
(
"cc"
-#
1
)
"c"
else
send
"c"
#
cont
;;
send
"c"
#
none
;;
"go"
"q"
"pc"
"cc"
"c"
else
send
"c"
#
cont
;;
send
"c"
#
some
;;
let
:
"qv"
:=
qdequeue
"q"
in
send
"c"
(
Snd
"qv"
);;
"go"
(
Fst
"qv"
)
"pc"
"cc"
"c"
.
Definition
producer
:
val
:=
rec
:
"go"
"c"
"l"
"produce"
:=
match
:
"produce"
#
()
with
SOME
"v"
=>
acquire
"l"
;;
send
"c"
#
enq
;;
send
"c"
#
cont
;;
send
"c"
"v"
;;
release
"l"
;;
"go"
"c"
"l"
"produce"
|
NONE
=>
acquire
"l"
;;
send
"c"
#
enq
;;
send
"c"
#
stop
release
"l"
end
.
Definition
consumer
:
val
:=
rec
:
"go"
"c"
"l"
"consume"
:=
acquire
"l"
;;
send
"c"
#
deq
;;
if
:
recv
"c"
(* cont/stop *)
then
if
:
recv
"c"
(* some/none *)
then
let
:
"v"
:=
recv
"c"
in
release
"l"
;;
"produce"
"v"
;;
"go"
"c"
"l"
"consume"
else
release
"l"
;;
"go"
"c"
"l"
"consume"
else
release
"l"
;;
#
()
.
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