File tree 4 files changed +3
-79
lines changed
4 files changed +3
-79
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -28,6 +28,5 @@ Contents:
28
28
state_trackers.rst
29
29
deadlock.rst
30
30
process_based.rst
31
- from_file.rst
32
31
behaviour/index.rst
33
32
parallel_process.rst
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ Let's implement this into a one node infinite server queue::
54
54
>>> N = ciw.create_network(
55
55
... arrival_distributions=[TimeDependentDist()],
56
56
... service_distributions=[ciw.dists.Deterministic(value=0.0)],
57
- ... number_of_servers=['Inf']
57
+ ... number_of_servers=[float( 'Inf') ]
58
58
... )
59
59
60
60
We'll then simulate this for 1 day.
@@ -87,7 +87,7 @@ For example::
87
87
>>> N = ciw.create_network(
88
88
... arrival_distributions=[TimeDependentDist()],
89
89
... service_distributions=[ciw.dists.Deterministic(value=0.0)],
90
- ... number_of_servers=['Inf']
90
+ ... number_of_servers=[float( 'Inf') ]
91
91
... )
92
92
>>> Q = ciw.Simulation(N)
93
93
>>> Q.simulate_until_max_time(101)
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ List of Parameters
5
5
==================
6
6
7
7
Below is a full list of the parameters that the :code: `create_network ` function can take, along with a description of the values required.
8
- If using a parameters file then here are the arguments and values of the required :code: ` .yml ` file.
8
+
9
9
10
10
arrival_distributions
11
11
~~~~~~~~~~~~~~~~~~~~~
You can’t perform that action at this time.
0 commit comments