From e40a8711b5f805423765f6115c4bab34dd1aecb1 Mon Sep 17 00:00:00 2001 From: Pedro Bressan Date: Fri, 23 Aug 2024 12:12:43 -0300 Subject: [PATCH] DOC: improve docstrings regarding number of workers. --- rocketpy/simulation/monte_carlo.py | 1 + 1 file changed, 1 insertion(+) diff --git a/rocketpy/simulation/monte_carlo.py b/rocketpy/simulation/monte_carlo.py index 32dfb2af5..5e7322d7e 100644 --- a/rocketpy/simulation/monte_carlo.py +++ b/rocketpy/simulation/monte_carlo.py @@ -167,6 +167,7 @@ def simulate( n_workers : int, optional Number of workers to be used if ``parallel=True``. If None, the number of workers will be equal to the number of CPUs available. + A minimum of 2 workers is required for parallel mode. Default is None. Returns