This commit is contained in:
Olivier Gagnon
2022-03-07 17:47:40 -05:00
parent 4b4b3f03da
commit bc952147fd
9 changed files with 112 additions and 54 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
export function CalculateShareMult(power: number): number {
const x = 1 + Math.log(power) / (8 * Math.log(1000));
const x = 1 + Math.log(power) / 25;
if (isNaN(x) || !isFinite(x)) return 1;
return x;
}