Difference between revisions of "Search Statistics"

From Chessprogramming wiki
Jump to: navigation, search
(Created page with "'''Home * Engine Testing * Search Statistics''' '''Search statistics''' refers to counting various appearances of interest inside the search or [...")
 
 
(One intermediate revision by the same user not shown)
Line 4: Line 4:
  
 
=Node Statistics=  
 
=Node Statistics=  
Of interest is the appearance of searched [[Node|nodes]] inside an [[Iterative Deepening|iterative deepening framework]] and the ratio of [[Quiescent Node|quiescent nodes]], per [[Depth|depth]] and/or aggregated, in conjunction with [[Branching Factor#EffectiveBranchingFactor|effective branching factor]] (EBF) and of course [[Nodes per second|nodes per second]].
+
Of interest is the appearance of searched [[Node|nodes]] inside an [[Iterative Deepening|iterative deepening framework]] and the ratio of [[Quiescent Node|quiescent nodes]], per [[Depth|depth]] and/or aggregated, in conjunction with [[Branching Factor#EffectiveBranchingFactor|effective branching factor]] (EBF) and of course [[Nodes per Second|nodes per second]].
  
 
==Cutoffs==  
 
==Cutoffs==  
Line 41: Line 41:
 
* [http://www.talkchess.com/forum/viewtopic.php?t=27737 Search statistics] by henkf, [[CCC]], May 04, 2009
 
* [http://www.talkchess.com/forum/viewtopic.php?t=27737 Search statistics] by henkf, [[CCC]], May 04, 2009
 
==2010 ...==
 
==2010 ...==
 +
* [http://www.talkchess.com/forum3/viewtopic.php?f=7&t=42665 make and unmake stadistics] by [[Fermin Serrano]], [[CCC]], February 28, 2012
 
* [http://www.talkchess.com/forum/viewtopic.php?t=45264 Probabilistic approach to optimize search tree] by [[Sergei Markoff|Sergei S. Markoff]], [[CCC]], September 22, 2012
 
* [http://www.talkchess.com/forum/viewtopic.php?t=45264 Probabilistic approach to optimize search tree] by [[Sergei Markoff|Sergei S. Markoff]], [[CCC]], September 22, 2012
 
* [http://www.talkchess.com/forum/viewtopic.php?t=49871 Search statistics] by [[Robert Pope]], [[CCC]], October 30, 2013
 
* [http://www.talkchess.com/forum/viewtopic.php?t=49871 Search statistics] by [[Robert Pope]], [[CCC]], October 30, 2013

Latest revision as of 12:18, 16 January 2020

Home * Engine Testing * Search Statistics

Search statistics refers to counting various appearances of interest inside the search or evaluation routines and to analyze their relationships to eventually spot bugs or unfavorable conditions in move ordering.

Node Statistics

Of interest is the appearance of searched nodes inside an iterative deepening framework and the ratio of quiescent nodes, per depth and/or aggregated, in conjunction with effective branching factor (EBF) and of course nodes per second.

Cutoffs

Inside Alpha-beta- or PV-search it is of particular interest to count how often a node failes high or not, in relation to its node types, that is expected cut-Nodes or expected All-nodes. If a fail-high occurs, it is illuminative to know whether the fail-high move it was tried first, early or late and what move ordering classification like move from the transposition table, winning captures, killer moves, etc. was applied.

Re-Searches

At PV-nodes inside a alpha-beta- or PV-search the number of re-searches does concern, and how often a re-search does improve alpha (or even performs a cutoff) or not.

Root Statistics

The Root as distinguished PV-node specially with aspiration window often has its own statistics related to how much relative time (nodes) of the whole iteration is performed per each root-move, and how often another best move was found. In conjunction with static move properties, score graph by searched depth so far, etc., these statistic based informations may be considered in time management to possibly decide about a new iteration.

Selectivity

Counting the various extensions, reductions and forward pruning decisions in relation with effective branching factor might also spot some deficiency inside the search.

TT Statistics

Statistics of the transposition table covers number of probes and stores, fill level, and number of probe hits, likely differentiated by sufficient draft and type of stored node.

See also

Publications

Forum Posts

1994 ...

2000 ...

2010 ...

Up one level