File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -257,8 +257,9 @@ def helper_param(param_name, value):
257
257
Value to assign to the parameter.
258
258
259
259
Returns:
260
- float:
261
- Mean queue time for nurses.
260
+ dict:
261
+ 'run' dictionary from the run_single() output, containing the
262
+ average results from run/s of the model.
262
263
"""
263
264
# Create a default parameter, but set some specific values
264
265
# (which will ensure sufficient arrivals/capacity/etc. that we will
@@ -269,7 +270,7 @@ def helper_param(param_name, value):
269
270
mean_n_consult_time = 15 )
270
271
setattr (param , param_name , value )
271
272
272
- # Run replications and return the mean queue time for nurses
273
+ # Run a single replication and return the results for that run
273
274
experiment = Runner (param )
274
275
return experiment .run_single (run = 0 )['run' ]
275
276
You can’t perform that action at this time.
0 commit comments