Hi Feike,
I'm not sure what you wanted to compare. What do all your numbers mean? I assume k means nominal search depth, and then avg and max are also search depths in plies? What is 's', and the numbers in parentheses after the moves?
I don't think it is possible to compare node counts between different engines. There are just too many ways to count nodes, and what is depth when every engine has its own unique algorithm for extensions and truncations?
Comparing node counts is only useful between two versions of the same engine, e.g. to evaluate some change to the search. Even then I do this by averaging the results over many searches, because any one search is too much affected by random things like fortuitous move ordering, etc.
Your ratio of hash hits to nodes looks low to me. In kingsrow this is typically around 17% in the opening and increases to about 25% when half the pieces are off the board. Were you using a very small hashtable?
Below is the search log from kingsrow on this position using 4 search threads.
Code: Select all
best 20-24, value 10, depth 1/3.7/8, nodes 134, time 0.00, 134 kN/s
best 11-17, value 10, depth 3/7.2/14, nodes 1409, time 0.00, 1409 kN/s
best 11-17, value 14, depth 5/9.1/19, nodes 28315, time 0.00, 28315 kN/s
best 19-24, value 24, depth 7/10.7/23, nodes 89202, time 0.03, 2788 kN/s
best 19-24, value 20, depth 9/12.3/26, nodes 283177, time 0.06, 4495 kN/s
best 19-24, value 20, depth 11/14.4/28, nodes 1142574, time 0.22, 5217 kN/s
best 19-24, value 20, depth 13/16.4/32, nodes 4986050, time 0.84, 5908 kN/s
best 19-24, value 18, depth 15/18.6/36, nodes 25515247, time 4.08, 6257 kN/s
best 19-24, value 18, depth 17/20.7/38, nodes 103982111, time 16.64, 6249 kN/s
-- Ed