Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Simulation models from event logs extracted from enterprise information systems
etc.).
SIMOD takes as input an event log in CSV format, a configuration file, and (optionally) a BPMN process model, and
discovers a business process simulation model that can be simulated using
the [Prosimos](https://github.com/AutomatedProcessImprovement/Prosimos) simulator, which is embedded in Simod.
the [Prosimos](https://github.com/AutomatedProcessImprovement/Prosimos) simulation engine, which is embedded in Simod.

## Dependencies

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "simod"
version = "5.2.0"
version = "5.2.1"
authors = [
"Ihar Suvorau <ihar.suvorau@gmail.com>",
"David Chapela <david.chapela@ut.ee>",
Expand Down
4 changes: 2 additions & 2 deletions src/simod/simod.py
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ def run(self, runtimes: Optional[RuntimeMeter] = None):

# --- Extraneous Delays Discovery --- #
if self._settings.extraneous_activity_delays is not None:
print_section("Discovering extraneous delays")
print_section("Optimizing extraneous delays")
runtimes.start(RuntimeMeter.EXTRANEOUS_DELAYS)
timers = self._optimize_extraneous_activity_delays()
self._best_bps_model.extraneous_delays = timers
Expand Down Expand Up @@ -482,6 +482,6 @@ def _export_runtimes(
f"for the runtime of the entire SIMOD pipeline and preprocessing "
f"stage. '{RuntimeMeter.EVALUATION}', if reported, should be left out "
f"as it measures the quality assessment of the final BPS model (i.e., "
f"it is not part of the discovery process."},
f"it is not part of the discovery process)."},
file
)
Loading