From c60101b65773174ed9e01e9543b68005e474e2bd Mon Sep 17 00:00:00 2001 From: fbourgin <francois.bourgin@inrae.fr> Date: Thu, 24 Apr 2025 09:32:16 +0200 Subject: [PATCH] wip - debug --- include/evalhyd/detail/probabilist/intervals.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/evalhyd/detail/probabilist/intervals.hpp b/include/evalhyd/detail/probabilist/intervals.hpp index a663969..340337a 100644 --- a/include/evalhyd/detail/probabilist/intervals.hpp +++ b/include/evalhyd/detail/probabilist/intervals.hpp @@ -78,9 +78,9 @@ namespace evalhyd } else { xt::view(itv_bnds, xt::all(), xt::all(), i, 0, xt::all()) = - xt::view(q_prd, std::min(res[0][1], res[1][1])); + xt::view(q_prd, 0); xt::view(itv_bnds, xt::all(), xt::all(), i, 1, xt::all()) = - xt::view(q_prd, std::max(res[0][1], res[1][1])); + xt::view(q_prd, 1); } } } -- GitLab