mirror of
https://github.com/monero-project/monero.git
synced 2024-10-01 11:49:47 -04:00
fix median overflow bug
This commit is contained in:
parent
82149bfe44
commit
426dbf434b
@ -1,6 +1,7 @@
|
||||
#include <math.h>
|
||||
#include <limits>
|
||||
#include <algorithm>
|
||||
#include "misc_language.h"
|
||||
#include "stats.h"
|
||||
|
||||
enum
|
||||
@ -86,7 +87,7 @@ Tpod Stats<T, Tpod>::get_median() const
|
||||
}
|
||||
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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user