fix median overflow bug

pull/434/head
koe 3 years ago committed by wowario
parent ecaf74c511
commit 66046226fe
No known key found for this signature in database
GPG Key ID: 24DCBE762DE9C111

@ -1,6 +1,7 @@
#include <math.h> #include <math.h>
#include <limits> #include <limits>
#include <algorithm> #include <algorithm>
#include "misc_language.h"
#include "stats.h" #include "stats.h"
enum enum
@ -86,7 +87,7 @@ Tpod Stats<T, Tpod>::get_median() const
} }
else else
{ {
median = (sorted[(sorted.size() - 1) / 2] + sorted[sorted.size() / 2]) / 2; median = epee::misc_utils::get_mid(sorted[(sorted.size() - 1) / 2], sorted[sorted.size() / 2]);
} }
set_cached(bit_median); set_cached(bit_median);
} }

Loading…
Cancel
Save