You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the VarianceGroupAccumulator we were missing a `count == 0` check
that is present in the normal Accumulator. This mostly does not matter
except for the case where the first state to be merged has `count == 0`
then the `merge` function will incorrectly calculate a new m2 of NAN
which will propagate to the final result.
This fixes the bug bu adding the missing `count == 0` check.
0 commit comments