From e5a4446725059a11c94a56e6bde34f7137bbec2e Mon Sep 17 00:00:00 2001
From: Thibault Hallouin <thibault.hallouin@inrae.fr>
Date: Thu, 12 Jan 2023 16:02:33 +0100
Subject: [PATCH] fix erroneous docstring for ROCSS

---
 .../detail/probabilist/contingency.hpp        | 25 +++----------------
 1 file changed, 4 insertions(+), 21 deletions(-)

diff --git a/include/evalhyd/detail/probabilist/contingency.hpp b/include/evalhyd/detail/probabilist/contingency.hpp
index 55c17bc..1ec44d2 100644
--- a/include/evalhyd/detail/probabilist/contingency.hpp
+++ b/include/evalhyd/detail/probabilist/contingency.hpp
@@ -448,32 +448,15 @@ namespace evalhyd
 
             // Compute the relative operating characteristic skill score (ROCSS).
             //
-            // \param pod
+            // \param POD
             //     Probabilities of detection.
             //     shape: (subsets, samples, levels, thresholds)
-            // \param pofd
+            // \param POFD
             //     Probabilities of false detection.
             //     shape: (subsets, samples, levels, thresholds)
-            // \param q_thr
-            //     Streamflow exceedance threshold(s).
-            //     shape: (thresholds,)
-            // \param t_msk
-            //     Temporal subsets of the whole record.
-            //     shape: (subsets, time)
-            // \param b_exp
-            //     Boostrap samples.
-            //     shape: (samples, time slice)
-            // \param n_thr
-            //     Number of thresholds.
-            // \param n_mbr
-            //     Number of ensemble members.
-            // \param n_msk
-            //     Number of temporal subsets.
-            // \param n_exp
-            //     Number of bootstrap samples.
             // \return
-            //     Critical success indices.
-            //     shape: (subsets, samples, levels, thresholds)
+            //     ROC skill scores.
+            //     shape: (subsets, samples, thresholds)
             inline xt::xtensor<double, 3> calc_ROCSS(
                     const xt::xtensor<double, 4>& POD,
                     const xt::xtensor<double, 4>& POFD
-- 
GitLab