SebLague / Chess-Coding-Adventure

A work-in-progress chess bot written in C#
https://youtu.be/U4ogK0MIzqk
MIT License
1.43k stars 303 forks source link

Difficulty Level #17

Closed saifajath closed 1 year ago

saifajath commented 1 year ago

How to set difficulty level for AI? i.e, Easy, Medium, Hard

MEHRDADsmj commented 1 year ago

Try changing the Depth property. The deeper it goes, the more it searches, the harder the AI becomes. Also increasing the depth may affect response time since it has to search more nodes in the tree.

saifajath commented 1 year ago

Thank you brother