superchessengine / sce

next-gen AI enabled chess engine.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Search time too high with only depth of 4

khushit-shah opened this issue · comments

  • Engine.evaluate() takes upto 1 minute to evaluate the position with only depth of 4 plys (2 moves)
  • As we are implementing alpha/beta pruning this should be in the range of seconds.
  • Transposition Table, incremental deepening to solve the problem + better static evaluator.

The problem is with minimaxTakeVersion, We are not limiting it with any depth. Transposition table will help it immensely.

related to #4

solved in commit 0430f6d