-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Optimize search efficiency with transposition table
Introduce the utilization of Zobrist hashing to implement a transposition table, enhancing the search efficiency of the algorithm. The transposition table serves to prevent redundant searches of identical game states, thereby optimizing the overall search process. Introduce the utilization of Zobrist hashing to implement a transposition table, enhancing the search efficiency of the algorithm. The transposition table serves to prevent redundant searches of identical game states, thereby optimizing the overall search process. Experimental results for the first moves at positions a1 and b2 demonstrate a notable reduction in search count: +----+---------+---------+ | | Before | After | +----+---------+---------+ | a1 | 13464 | 10479 | | b2 | 16531 | 9419 | +----+---------+---------+
- Loading branch information
1 parent
15f7954
commit dab098e
Showing
3 changed files
with
23 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters