Commit 2cc5a7eb authored by Thibault Hallouin's avatar Thibault Hallouin
Browse files

fix typo in internal variable name

it had no effect on numerical results
No related merge requests found
Pipeline #46412 passed with stage
in 3 minutes and 43 seconds
Showing with 3 additions and 3 deletions
+3 -3
......@@ -226,7 +226,7 @@ namespace evalhyd
)
{
// initialise output variable
xt::xtensor<double, 5> REL_DIAG =
xt::xtensor<double, 5> RANK_HIST =
xt::zeros<double>({n_sit, n_ldt, n_msk, n_exp, n_mbr + 1});
// compute variable one mask at a time to minimise memory imprint
......@@ -246,7 +246,7 @@ namespace evalhyd
);
// compute the rank diagram
xt::view(REL_DIAG, xt::all(), xt::all(), m, e, xt::all()) =
xt::view(RANK_HIST, xt::all(), xt::all(), m, e, xt::all()) =
xt::view(o_j, xt::all(), xt::all(),
m, e, xt::all())
/ l
......@@ -254,7 +254,7 @@ namespace evalhyd
}
}
return REL_DIAG;
return RANK_HIST;
}
/// Compute the Delta score.
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment