CWRules / Othello_Cpp

Othello-playing AI
GNU General Public License v3.0
0 stars 0 forks source link

Improve tree search #9

Open CWRules opened 4 years ago

CWRules commented 4 years ago

Update evaluation function to stop at a specific depth. When building the tree, keep track of the max depth to which the tree is complete and only search up to that. This allows for cutting off building the tree partway through a single level, giving more consistent search times.

CWRules commented 9 months ago

Also: Continue building the tree during the opponent's turn.