
Search found 3 matches
- Sun Jan 13, 2013 10:58 pm
- Forum: Programming and Technical Discussions
- Topic: Alpha-beta with transposition table
- Replies: 0
- Views: 1355
Alpha-beta with transposition table
Hi to all. I've implemented the alpha-beta with transposition table. Please, can anyone tell me is this implementation correct 

- Sun Jan 13, 2013 3:24 pm
- Forum: Programming and Technical Discussions
- Topic: Using a Transposition Table with Zobrist Keys
- Replies: 29
- Views: 16339
Re: Using a Transposition Table with Zobrist Keys
Thanks for reply Hyatt. But I have another question. How return value > alpha and < beta can be true at the end of search in alphaBetaMax and alphaBetaMin since we have this blocks: if( score > alpha ) alpha = score;(AlphaBetaMax), and if( score < beta ) beta = score;(AlphaBetaMin)?
- Fri Jan 11, 2013 5:53 pm
- Forum: Programming and Technical Discussions
- Topic: Using a Transposition Table with Zobrist Keys
- Replies: 29
- Views: 16339
Re: Using a Transposition Table with Zobrist Keys
Hello to everyone. I do not quite understand how works TT. Why do we have to check that the score <= alpha (in case of UpperBound) and score > = beta (in the case of Lower bound)?