mirror of
https://github.com/sockspls/badfish
synced 2025-05-01 01:03:09 +00:00
History Stat Formula Simplification
STC: LLR: 2.95 (-2.94,2.94) [-3.00,1.00] Total: 67476 W: 12561 L: 12521 D: 42394 LTC: LLR: 2.96 (-2.94,2.94) [-3.00,1.00] Total: 111923 W: 15147 L: 15149 D: 81627 Bench: 8430465 Resolves #588
This commit is contained in:
parent
744ed85a4d
commit
bfe9044ad9
1 changed files with 2 additions and 2 deletions
|
@ -57,8 +57,8 @@ struct Stats {
|
|||
if (abs(int(v)) >= 324)
|
||||
return;
|
||||
|
||||
table[pc][to] -= table[pc][to] * abs(int(v)) / (CM ? 512 : 324);
|
||||
table[pc][to] += int(v) * (CM ? 64 : 32);
|
||||
table[pc][to] -= table[pc][to] * abs(int(v)) / (CM ? 936 : 324);
|
||||
table[pc][to] += int(v) * 32;
|
||||
}
|
||||
|
||||
private:
|
||||
|
|
Loading…
Add table
Reference in a new issue