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

Increase rook/queen on 7th bonus

Shows an increase at 15+0.05
LLR: 3.01 (-2.94,2.94)
Total: 20450 W: 4091 L: 3927 D: 12432

And at 60+0.05
LLR: 2.97 (-2.94,2.94)
Total: 61432 W: 10849 L: 10441 D: 40142

bench: 4493356

Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
Ryan Schmitt 2013-04-10 19:17:13 -07:00 committed by Marco Costalba
parent 289a767ab3
commit 79bcb2ca54

View file

@ -156,12 +156,12 @@ namespace {
const Score Tempo = make_score(24, 11); const Score Tempo = make_score(24, 11);
// Rooks and queens on the 7th rank // Rooks and queens on the 7th rank
const Score RookOn7thBonus = make_score(3, 20); const Score RookOn7thBonus = make_score(11, 20);
const Score QueenOn7thBonus = make_score(1, 8); const Score QueenOn7thBonus = make_score( 3, 8);
// Rooks and queens attacking pawns on the same rank // Rooks and queens attacking pawns on the same rank
const Score RookOnPawnBonus = make_score(3, 48); const Score RookOnPawnBonus = make_score(10, 28);
const Score QueenOnPawnBonus = make_score(1, 40); const Score QueenOnPawnBonus = make_score( 4, 20);
// Rooks on open files (modified by Joona Kiiski) // Rooks on open files (modified by Joona Kiiski)
const Score RookOpenFileBonus = make_score(43, 21); const Score RookOpenFileBonus = make_score(43, 21);