I started working on a chess engine recently and have been looking at CPW, this forum etc.
I was wondering in iterative deepening whether the node count and time outputted by engines are only for one iteration or in total
To give an example, suppose my engine searched 20 nodes in the first depth 1 search and another 67 in depth 2, would it output something like
Code: Select all
info depth 1 nodes 20 ...
info depth 2 nodes 87 ...
Code: Select all
info depth 1 nodes 20 ...
info depth 2 nodes 67 ...
