Skip to content
Open
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
8 changes: 4 additions & 4 deletions cadet/cadet.py
Original file line number Diff line number Diff line change
Expand Up @@ -518,15 +518,15 @@ def run_load(

def run_simulation(
self,
timeout: Optional[int] = None,
timeout: Optional[float] = None,
clear: bool = True
) -> ReturnInformation:
"""
Run the CADET simulation and load the results.

Parameters
----------
timeout : Optional[int]
timeout : Optional[float]
Maximum time allowed for the simulation to run, in seconds.
clear : bool
If True, clear the simulation results from the current runner instance.
Expand All @@ -551,14 +551,14 @@ def run_simulation(

def run(
self,
timeout: Optional[int] = None,
timeout: Optional[float] = None,
) -> ReturnInformation:
"""
Run the CADET simulation.

Parameters
----------
timeout : Optional[int]
timeout : Optional[float]
Maximum time allowed for the simulation to run, in seconds.

Returns
Expand Down
Loading
Loading