dolvui / Chess

2 stars 0 forks source link

minmax issue #1

Open dolvui opened 4 months ago

dolvui commented 4 months ago

In the branch feat/minmax,

try to improve the process instead of build the tree of moves , then looking for the best one, the goal is to looking for the best move while building the tree thus use all the opti of minmax with alphabeta during the build

with this method iam able to dive into a depth of 5 , without this startegy , a depth of 4 is just too much

only issue this new method f**** up the value and only got some inf and -inf

dolvui commented 4 months ago

seems fix test on the way