From 28ea31bda22f768f07eb1e8257fdb04f1b4964b0 Mon Sep 17 00:00:00 2001 From: "Alex H. Room" <69592136+alexhroom@users.noreply.github.com> Date: Mon, 24 Mar 2025 13:27:31 +0000 Subject: [PATCH] Fixes the `nSamples` docstring --- RATapi/controls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RATapi/controls.py b/RATapi/controls.py index 28b52d8a..9a36fdee 100644 --- a/RATapi/controls.py +++ b/RATapi/controls.py @@ -116,7 +116,7 @@ class Controls(BaseModel, validate_assignment=True, extra="forbid", use_attribut # Dream nSamples: int = Field(20000, ge=0) - """[DREAM] The number of samples in the initial population for each chain.""" + """[DREAM] The total number of function evaluations (number of algorithm generations times number of chains).""" nChains: int = Field(10, gt=1) """[DREAM] The number of Markov chains to use in the algorithm."""