Skip to content

Commit 439bfe7

Browse files
committed
chore(dates): update 2024 to 2025, and minor punctuation fix.
1 parent b665a57 commit 439bfe7

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) STARS Team
3+
Copyright (c) 2025 STARS Project Team
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ This template is licensed under the MIT License.
259259
```
260260
MIT License
261261
262-
Copyright (c) 2024 STARS Project Team
262+
Copyright (c) 2025 STARS Project Team
263263
264264
Permission is hereby granted, free of charge, to any person obtaining a copy
265265
of this software and associated documentation files (the "Software"), to deal

simulation/model.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ class Defaults():
5151
not yet collecting results.
5252
data_collection_period (int):
5353
Duration of data collection period in minutes (also known as the
54-
measurement interval) - which begins after any warm-up period
54+
measurement interval) - which begins after any warm-up period.
5555
number_of_runs (int):
5656
The number of runs (also known as replications), defining how many
5757
times to re-run the simulation (with different random numbers).
@@ -115,9 +115,9 @@ def summary_stats(data):
115115
116116
Arguments:
117117
data (pd.Series):
118-
Data to use in calculation
118+
Data to use in calculation.
119119
Returns:
120-
tuple: (mean, standard deviation, CI lower, CI upper)
120+
tuple: (mean, standard deviation, CI lower, CI upper).
121121
"""
122122
mean = data.mean()
123123
count = len(data)
@@ -471,7 +471,7 @@ def run_single(self, run):
471471
472472
Arguments:
473473
run (int):
474-
The run number for the simulation
474+
The run number for the simulation.
475475
476476
Returns:
477477
dict:

0 commit comments

Comments
 (0)