1
0
Fork 0
mirror of https://github.com/sockspls/badfish synced 2025-04-30 00:33:09 +00:00

Mobile phalanxes

Try to create mobile phalanxes

STC:
LLR: 2.97 (-2.94,2.94) [-1.50,4.50]
Total: 52393 W: 10912 L: 10656 D: 30825

LTC:
LLR: 2.96 (-2.94,2.94) [0.00,6.00]
Total: 30398 W: 5315 L: 5063 D: 20020

Bench: 8253813

Resolves #261
This commit is contained in:
snicolet 2015-02-20 19:56:57 +00:00 committed by Joona Kiiski
parent 667f350737
commit 2f46592736
2 changed files with 3 additions and 2 deletions

View file

@ -227,7 +227,8 @@ void init()
for (Rank r = RANK_2; r < RANK_8; ++r)
{
int bonus = Seed[r] + (phalanx ? (Seed[r + 1] - Seed[r]) / 2 : 0);
Connected[opposed][phalanx][r] = make_score(bonus / 2, bonus >> opposed);
bonus >>= opposed;
Connected[opposed][phalanx][r] = make_score( 3 * bonus / 2, bonus);
}
}