Search found 7 matches
- Mon Aug 01, 2016 5:22 am
- Forum: Programming and Technical Discussions
- Topic: Null Move recommendations
- Replies: 5
- Views: 10839
Re: Null Move recommendations
I just add the condition that the depth has to be at least 4 in order to try null move. You look at so few nodes at the lower depths that it's not worth doing null move in my opinion.
- Sat Jul 16, 2016 9:33 pm
- Forum: Programming and Technical Discussions
- Topic: Transposition Table Usage
- Replies: 7
- Views: 6248
Re: Transposition Table Usage
All right, thanks for the assistance!
David Cimbalista
David Cimbalista
- Wed Jul 13, 2016 5:19 pm
- Forum: Programming and Technical Discussions
- Topic: Transposition Table Usage
- Replies: 7
- Views: 6248
Re: Transposition Table Usage
Ok, thanks for the response!
Another quick question: should I be probing and saving to the table in quiescence search? I'm doing it now and it's slowing down the engine.
Thanks,
David Cimbalista
Another quick question: should I be probing and saving to the table in quiescence search? I'm doing it now and it's slowing down the engine.
Thanks,
David Cimbalista
- Tue Jul 12, 2016 4:35 am
- Forum: Programming and Technical Discussions
- Topic: Transposition Table Usage
- Replies: 7
- Views: 6248
Transposition Table Usage
Hi,
I was wondering if any of you could tell me how to use a transposition table. I already have it implemented, I just need to know when I should probe the table, when I should be saving nodes, which node types at different places in the tree, and any other advice you could give me. Your comments ...
I was wondering if any of you could tell me how to use a transposition table. I already have it implemented, I just need to know when I should probe the table, when I should be saving nodes, which node types at different places in the tree, and any other advice you could give me. Your comments ...
- Wed Mar 09, 2016 3:36 pm
- Forum: Programming and Technical Discussions
- Topic: Null Move Assistance
- Replies: 4
- Views: 3413
Re: Null Move Assistance
Thank you Bob!
I'll try this out as soon as I can.
I'll try this out as soon as I can.
- Tue Mar 08, 2016 3:46 pm
- Forum: Programming and Technical Discussions
- Topic: Null Move Assistance
- Replies: 4
- Views: 3413
Re: Null Move Assistance
Hi Mr. Hyatt,
Thanks for the help! I do have one more question though. Like I said in my original post, I'm using two different functions for my search(SearchMin and SearchMax). Your suggestion would seem to only work in a Negamax framework. How would I convert your parameters(beta-1, beta) to two ...
Thanks for the help! I do have one more question though. Like I said in my original post, I'm using two different functions for my search(SearchMin and SearchMax). Your suggestion would seem to only work in a Negamax framework. How would I convert your parameters(beta-1, beta) to two ...
- Mon Mar 07, 2016 5:11 pm
- Forum: Programming and Technical Discussions
- Topic: Null Move Assistance
- Replies: 4
- Views: 3413
Null Move Assistance
Hi all,
I have written a chess engine that is UCI functional and is reasonably strong. My question though is concerning null move pruning. I have not been able to get it to work despite many hours of work.
I think my main problem is that I am searching with the wrong bounds. I have heard of a ...
I have written a chess engine that is UCI functional and is reasonably strong. My question though is concerning null move pruning. I have not been able to get it to work despite many hours of work.
I think my main problem is that I am searching with the wrong bounds. I have heard of a ...