Iterative deepening is not the good term. I don’t restart from the start. I use the nodes from the last depth.
The whole depth at once.
The score of the node. And the score of a node is parent.score + game.eval() * COEF_PATIENCE^depth
Iterative deepening is not the good term. I don’t restart from the start. I use the nodes from the last depth.
The whole depth at once.
The score of the node. And the score of a node is parent.score + game.eval() * COEF_PATIENCE^depth