Skip to content

Commit a111fa9

Browse files
authored
Change nChains to be greater than 1
1 parent 7538af4 commit a111fa9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

RATapi/controls.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ class Controls(BaseModel, validate_assignment=True, extra="forbid", use_attribut
118118
nSamples: int = Field(20000, ge=0)
119119
"""[DREAM] The number of samples in the initial population for each chain."""
120120

121-
nChains: int = Field(10, gt=0)
121+
nChains: int = Field(10, gt=1)
122122
"""[DREAM] The number of Markov chains to use in the algorithm."""
123123

124124
jumpProbability: float = Field(0.5, gt=0.0, lt=1.0)

0 commit comments

Comments
 (0)