Skip to content

Commit 1c1d379

Browse files
Merge pull request #2 from JOgbebor/main
Reduced run_lenght_control's minimum_number_of_independent_samples
2 parents 09a73d8 + 974d876 commit 1c1d379

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

test_driver/run_length_control.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
# For the default None, the function is using `maximum_run_length // 2` as
2020
# the maximum equilibration step.
2121
MAX_EQUILIBRATION_STEP: Optional[int] = 500 * INITIAL_RUN_LENGTH
22-
# Maximum number of independent samples.
23-
MINIMUM_NUMBER_OF_INDEPENDENT_SAMPLES: Optional[int] = 1000
22+
# Minimum number of independent samples.
23+
MINIMUM_NUMBER_OF_INDEPENDENT_SAMPLES: Optional[int] = 100
2424
# Probability (or confidence interval) and must be between 0.0 and 1.0, and
2525
# represents the confidence for calculation of relative halfwidths estimation.
2626
CONFIDENCE: float = 0.95

0 commit comments

Comments
 (0)