From 5adc574d7b7990c397a0921f850ffdca2663b40f Mon Sep 17 00:00:00 2001
From: fbourgin <francois.bourgin@inrae.fr>
Date: Tue, 8 Apr 2025 14:47:46 +0200
Subject: [PATCH] wip

---
 tests/test_probabilist.cpp | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/tests/test_probabilist.cpp b/tests/test_probabilist.cpp
index 87a0303..186ed72 100644
--- a/tests/test_probabilist.cpp
+++ b/tests/test_probabilist.cpp
@@ -246,6 +246,7 @@ TEST(ProbabilistTests, TestRanks)
                     xt::xtensor<double, 2>({}),
                     "high",  // events
                     {},  // c_lvl
+                    {},  // q_lvl
                     xt::xtensor<bool, 4>({}),  // t_msk
                     xt::xtensor<std::array<char, 32>, 2>({}),  // m_cdt
                     xtl::missing<const std::unordered_map<std::string, int>>(),  // bootstrap
@@ -361,6 +362,7 @@ TEST(ProbabilistTests, TestMasks)
                     thresholds,
                     "high",
                     confidence_levels,
+                    {},  // q_lvl
                     // shape: (sites [1], lead times [1], subsets [1], time [t])
                     masks
             );
@@ -431,6 +433,7 @@ TEST(ProbabilistTests, TestMaskingConditions)
                     thresholds,
                     "high",
                     confidence_levels,
+                    {},  // q_lvl
                     masks,
                     q_conditions
             );
@@ -488,6 +491,7 @@ TEST(ProbabilistTests, TestMaskingConditions)
                     thresholds,
                     "high",
                     confidence_levels,
+                    {},  // q_lvl
                     masks,
                     q_conditions_
             );
@@ -542,6 +546,7 @@ TEST(ProbabilistTests, TestMaskingConditions)
                     thresholds,
                     "high",
                     confidence_levels,
+                    {},  // q_lvl
                     masks,
                     t_conditions
             );
@@ -705,6 +710,7 @@ TEST(ProbabilistTests, TestBootstrap)
                     thresholds,
                     "high",  // events
                     confidence_levels,
+                    {},  // q_lvl
                     xt::xtensor<bool, 4>({}),  // t_msk
                     xt::xtensor<std::array<char, 32>, 2>({}),  // m_cdt
                     bootstrap,
@@ -790,6 +796,7 @@ TEST(ProbabilistTests, TestBootstrapSummary)
                     thresholds,
                     "high",  // events
                     confidence_levels,
+                    {},  // q_lvl
                     xt::xtensor<bool, 4>({}),  // t_msk
                     xt::xtensor<std::array<char, 32>, 2>({}),  // m_cdt
                     bootstrap_0,
@@ -808,6 +815,7 @@ TEST(ProbabilistTests, TestBootstrapSummary)
                     thresholds,
                     "high",  // events
                     confidence_levels,
+                    {},  // q_lvl
                     xt::xtensor<bool, 4>({}),  // t_msk
                     xt::xtensor<std::array<char, 32>, 2>({}),  // m_cdt
                     bootstrap_1,
@@ -859,6 +867,7 @@ TEST(ProbabilistTests, TestBootstrapSummary)
                     thresholds,
                     "high",  // events
                     confidence_levels,
+                    {},  // q_lvl
                     xt::xtensor<bool, 4>({}),  // t_msk
                     xt::xtensor<std::array<char, 32>, 2>({}),  // m_cdt
                     bootstrap_2,
@@ -935,6 +944,7 @@ TEST(ProbabilistTests, TestCompleteness)
                     xt::xtensor<double, 2>({}),  // thresholds
                     xtl::missing<const std::string>(),  // events
                     {},
+                    {},  // q_lvl
                     msk,  // t_msk
                     xt::xtensor<std::array<char, 32>, 2>({}),  // m_cdt
                     xtl::missing<const std::unordered_map<std::string, int>>(),  // bootstrap
-- 
GitLab