Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Simcore-rs
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Dorian Weber
Simcore-rs
Commits
c87120d2
Commit
c87120d2
authored
4 years ago
by
Dorian Weber
Browse files
Options
Downloads
Patches
Plain Diff
Renamed the example coroutines and deleted the old simcore.
parent
07b1ba7a
Branches
Branches containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/bin/coroutines.rs
+0
-0
0 additions, 0 deletions
src/bin/coroutines.rs
src/bin/simcore.rs
+0
-65
0 additions, 65 deletions
src/bin/simcore.rs
with
0 additions
and
65 deletions
src/bin/
decompressor_tokenizer
.rs
→
src/bin/
coroutines
.rs
+
0
−
0
View file @
c87120d2
File moved
This diff is collapsed.
Click to expand it.
src/bin/simcore.rs
deleted
100644 → 0
+
0
−
65
View file @
07b1ba7a
use
simcore_rs
::{
Time
,
SimContext
,
Facility
,
RandomVar
,
simulation
};
use
rand
::{
distributions
::
Uniform
,
rngs
::
SmallRng
,
SeedableRng
,
Rng
};
// helper constants
const
STOP_TIME
:
Time
=
480000.0
;
const
SEED_A
:
u64
=
100000
;
const
SEED_S
:
u64
=
200000
;
fn
main
()
{
// pseudo random number generators referenced from within the main process
let
mut
rng_a
=
SmallRng
::
seed_from_u64
(
SEED_A
);
let
mut
rng_s
=
SmallRng
::
seed_from_u64
(
SEED_S
);
// the lifetimes are automatically extended
let
joe
=
&
Facility
::
new
();
let
rv
=
&
RandomVar
::
new
();
// the main process
simulation
(|
sim
|
async
move
{
// activate a process to generate the customers
sim
.activate
(
async
move
{
let
dist
=
Uniform
::
new
(
12.0
,
24.0
);
// wait some time before activating the first customer
sim
.advance
(
rng_a
.sample
(
dist
))
.await
;
// generate new customers until the store closes officially
while
sim
.now
()
<
STOP_TIME
{
// activate the next customer
sim
.activate
(
Customer
{
joe
,
rv
,
rng
:
SmallRng
::
from_seed
(
rng_s
.gen
())
}
.actions
(
sim
));
// wait some time before activating the next customer
sim
.advance
(
rng_a
.sample
(
dist
))
.await
;
}
});
// wait until the store closes
sim
.advance
(
STOP_TIME
)
.await
;
// finish processing the queue (no more customers arrive)
joe
.seize
()
.await
;
joe
.release
();
});
println!
(
"Stats: {:.3}"
,
rv
);
}
/// Customer process with access to the barber and a random number generator.
struct
Customer
<
'j
>
{
joe
:
&
'j
Facility
,
rv
:
&
'j
RandomVar
,
rng
:
SmallRng
}
impl
Customer
<
'_
>
{
pub
async
fn
actions
(
mut
self
,
sim
:
SimContext
<
'_
>
)
{
// access the barber and record the time for the report
let
time
=
sim
.now
();
self
.joe
.seize
()
.await
;
self
.rv
.tabulate
(
sim
.now
()
-
time
);
// spend time
sim
.advance
(
self
.rng
.gen_range
(
12.0
,
18.0
))
.await
;
// release the barber
self
.joe
.release
();
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
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