From 286a6f5bb6d31f47f6bc81038e0ea9cfdab364ac Mon Sep 17 00:00:00 2001 From: Tommy Odland Date: Thu, 30 Nov 2023 09:52:58 +0100 Subject: [PATCH] nitpick on doctest. 1.0 vs 1 --- src/iterative_ensemble_smoother/experimental.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/iterative_ensemble_smoother/experimental.py b/src/iterative_ensemble_smoother/experimental.py index ace30148..f57b30f1 100644 --- a/src/iterative_ensemble_smoother/experimental.py +++ b/src/iterative_ensemble_smoother/experimental.py @@ -67,11 +67,11 @@ def correlation_threshold(ensemble_size: int) -> float: Examples -------- >>> AdaptiveESMDA.correlation_threshold(0) - 1 + 1.0 >>> AdaptiveESMDA.correlation_threshold(4) - 1 + 1.0 >>> AdaptiveESMDA.correlation_threshold(9) - 1 + 1.0 >>> AdaptiveESMDA.correlation_threshold(16) 0.75 >>> AdaptiveESMDA.correlation_threshold(36)