You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: CHANGES.rst
+3
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,9 @@
1
1
History
2
2
-------
3
3
4
+
+ **3.2.4 (2024-12-04)**
5
+
+ Adds a new method for the `simulate_until_max_customers: "Complete" simulates until a specific number of completed customer journeys; while "Finish" simulates until a specific number of customers have reached the exit node (through bailking or reneging).
6
+
4
7
+ **3.2.3 (2024-10-15)**
5
8
+ Allow some numerical imprecision in the PMF probability sums. This allows for very large arrays of probabilities and use of Pandas and Numpy to define probabilities.
Copy file name to clipboardexpand all lines: docs/Guides/Simulation/sim_numcusts.rst
+15-4
Original file line number
Diff line number
Diff line change
@@ -9,11 +9,12 @@ This can be done using the :code:`simulate_until_max_customers` method.
9
9
The method takes in a variable :code:`max_customers`.
10
10
There are three methods of counting customers:
11
11
12
-
- :code:`'Finish'`: Simulates until :code:`max_customers` has reached the Exit Node.
12
+
- :code:`'Complete'`: Simulates until :code:`max_customers` has reached the Exit Node due to completing their journey through the system.
13
+
- :code:`'Finish'`: Simulates until :code:`max_customers` has reached the Exit Node, regardless if the customer reaches there without completing their journey, for example by :ref:`baulking <baulking-functions>` or :ref:`reneging <reneging-customers>`.
13
14
- :code:`'Arrive'`: Simulates until :code:`max_customers` have spawned at the Arrival Node.
14
15
- :code:`'Accept'`: Simulates until :code:`max_customers` have been spawned and accepted (not rejected) at the Arrival Node.
15
16
16
-
The method of counting customers is specified with the optional keyword argument :code:`method`. The default value is is :code:`'Finish'`.
17
+
The method of counting customers is specified with the optional keyword argument :code:`method`. The default value is is :code:`'Complete'`.
17
18
18
19
Consider an :ref:`M/M/1/3 <kendall-notation>` queue::
19
20
@@ -25,15 +26,25 @@ Consider an :ref:`M/M/1/3 <kendall-notation>` queue::
25
26
... queue_capacities=[3]
26
27
... )
27
28
28
-
To simulate until 30 customers have finished service::
0 commit comments