Rebel wrote:However what I would accept as damaging is an exact or a great similarity in the order of the evaluation ingredients. I had a quick look at the Fruit and Strelka EVAL and that doesn't appear the case, I leave this to the Rybka/Fruit/Strelka experts.
I don't think the evidence says much one way or the other. At the top level, the Rybka/Fruit orderings match a lot, but I can't say this is unexpected (one difference is that Rybka puts
pawneval later, after
prefetching the hash near the start.
The
eval_piece in Fruit runs over a piece list (with a
case switch), while Rybka loops over the bitboards, so there's not much of a comparison there. Internal to each piece, some of these are so short (knights and bishops) that any ordering is nugatory, while for queens there is again not much to say (mobility, king attack, 7th rank). Rooks are slightly more voluminous, and the order matches [though again there are not many elements]. Pawns also match (I think).
Code: Select all
material_get_info(mat_info,board);
opening += mat_info->opening; endgame += mat_info->endgame;
mul[White] = mat_info->mul[White]; mul[Black] = mat_info->mul[Black];
opening += board->opening; endgame += board->endgame; // PST
pawn_get_info(pawn_info,board); // pawns
opening += pawn_info->opening; endgame += pawn_info->endgame;
[...]
eval_piece(board,mat_info,pawn_info,&opening,&endgame);
eval_king(board,mat_info,&opening,&endgame);
eval_passer(board,pawn_info,&opening,&endgame);
eval_pattern(board,&opening,&endgame);
phase = mat_info->phase; // phase mix
eval = ((opening * (256 - phase)) + (endgame * phase)) / 256;
if ((mat_info->flags & DrawBishopFlag) != 0) { // drawish bishop endgames
wb = board->piece[White][1]; ASSERT(PIECE_IS_BISHOP(board->square[wb]));
bb = board->piece[Black][1]; ASSERT(PIECE_IS_BISHOP(board->square[bb]));
if (SQUARE_COLOUR(wb) != SQUARE_COLOUR(bb)) {
if (mul[White] == 16) mul[White] = 8;
if (mul[Black] == 16) mul[Black] = 8; } }
Rybka also has lazy eval at the start.
Rebel wrote:For me (today) the whole issue stands or falls with the part you did not comment, the synchronicity of the order of evaluations between Fruit and Rybka eval.
I am sorry I was so slow in responding, but I actually had to track down this information (I was missing an annotated Rybka
pawneval, collate it, etc.[/sarcasm]
Can I conclude that one can take R4, reorder the evaluation function, and presto!, this is an original engine? [Since R4 has, of course, the "right way" of doing knowledge, for evaluation feature, and indeed choosing such in the first place?]