Commit cda19fae authored by fbourgin's avatar fbourgin
Browse files

wip - debug

parent 114991b7
1 merge request!9Resolve "evaluation of quantiles prediction"
Showing with 2 additions and 2 deletions
+2 -2
...@@ -78,9 +78,9 @@ namespace evalhyd ...@@ -78,9 +78,9 @@ namespace evalhyd
} else } else
{ {
xt::view(itv_bnds, xt::all(), xt::all(), i, 0, xt::all()) = xt::view(itv_bnds, xt::all(), xt::all(), i, 0, xt::all()) =
xt::view(q_prd, xt::all(), xt::all(), std::min(res[0][1], res[1][1], xt::all())); xt::view(q_prd, xt::all(), xt::all(), std::min(res[0][1], res[1][1]), xt::all());
xt::view(itv_bnds, xt::all(), xt::all(), i, 1, xt::all()) = xt::view(itv_bnds, xt::all(), xt::all(), i, 1, xt::all()) =
xt::view(q_prd, xt::all(), xt::all(), std::max(res[0][1], res[1][1], xt::all())); xt::view(q_prd, xt::all(), xt::all(), std::max(res[0][1], res[1][1]), xt::all());
} }
} }
} }
......
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