mirror of
https://github.com/discourse/discourse.git
synced 2025-04-03 05:39:41 +08:00
FIX: when rouding numbers in poll resuls, *don't* select a never-been-voted-for option to round up from zero
This commit is contained in:
parent
1a27d887fa
commit
fc92166d5f
@ -5,11 +5,13 @@ function sumsUpTo100(percentages) {
|
|||||||
|
|
||||||
export default (percentages) => {
|
export default (percentages) => {
|
||||||
const sumOfDecimals = Math.ceil(percentages.map(a => a % 1).reduce((a, b) => a + b));
|
const sumOfDecimals = Math.ceil(percentages.map(a => a % 1).reduce((a, b) => a + b));
|
||||||
// compensate error by adding 1 to the first n items
|
// compensate error by adding 1 to the first n "non-zero" items
|
||||||
for (let i = 0; i < sumOfDecimals; i++) {
|
for (let i = 0, max = percentages.length; i < sumOfDecimals && i < max; i++) {
|
||||||
percentages[i] = ++percentages[i];
|
if (percentages[i] > 0) {
|
||||||
// quit early when there is a rounding issue
|
percentages[i] = ++percentages[i];
|
||||||
if (sumsUpTo100(percentages)) break;
|
// quit early when there is a rounding issue
|
||||||
|
if (sumsUpTo100(percentages)) break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return percentages.map(p => Math.floor(p));
|
return percentages.map(p => Math.floor(p));
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user