CWRules / Othello_Python

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

Improve time estimation #11

Closed CWRules closed 4 years ago

CWRules commented 4 years ago

Time estimation in make_tree() is not very accurate. Come up with something better.

CWRules commented 4 years ago

Try assuming next level will take 10x longer than the last.

CWRules commented 4 years ago

Estimated time is now (nodes in node_list) * (time taken on last tree level) / (nodes in last level). Works much better.