Commit ea6b0c2e authored by Thibault Hallouin's avatar Thibault Hallouin
Browse files

fix mistake in computation of metric "CSI"

1 merge request!3release v0.1.0
Pipeline #43339 passed with stage
in 2 minutes and 15 seconds
Showing with 1 addition and 1 deletion
+1 -1
......@@ -216,7 +216,7 @@ namespace evalhyd
const xt::xtensor<double, 3>& ct_c
)
{
return ct_b / (ct_a + ct_b + ct_c);
return ct_a / (ct_a + ct_b + ct_c);
}
}
......
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