Search found 43 matches
- Fri Apr 03, 2020 11:06 am
- Forum: Computer Chess Club: Programming and Technical Discussions
- Topic: Fairy Stockfish
- Replies: 5
- Views: 875
Re: Fairy Stockfish
I just put together a first version of the introduction to the code base, see https://github.com/ianfab/Fairy-Stockfi ... g-the-code.
- Fri Apr 03, 2020 9:20 am
- Forum: Computer Chess Club: Programming and Technical Discussions
- Topic: Fairy Stockfish
- Replies: 5
- Views: 875
Re: Fairy Stockfish
As you already found out, I use bitboards with 128 bit for the large-board version that supports board sizes up to 12x10, and 8 bit remain unused. For variants that use smaller boards than the bitboard size of the respective version (128bit/64bit), a bitboard containing the actual squares of the boa...
- Wed Jan 08, 2020 9:32 pm
- Forum: Computer Chess Club: General Topics
- Topic: The Stockfish of shogi
- Replies: 28
- Views: 8802
Re: The Stockfish of shogi
In Fairy-Stockfish the base piece values are the same for all variants, they are only adjusted for a few rules that can heavily influence dynamics like losing chess rules, piece drops, and board size (for sliders). E.g., for drop games, the piece values are scaled by a v_max/(v_max+v) formula, wher...
- Wed Jan 08, 2020 12:52 pm
- Forum: Computer Chess Club: General Topics
- Topic: The Stockfish of shogi
- Replies: 28
- Views: 8802
Re: The Stockfish of shogi
In Fairy-Stockfish the base piece values are the same for all variants, they are only adjusted for a few rules that can heavily influence dynamics like losing chess rules, piece drops, and board size (for sliders). E.g., for drop games, the piece values are scaled by a v_max/(v_max+v) formula, where...
- Tue Jan 07, 2020 11:37 pm
- Forum: Computer Chess Club: General Topics
- Topic: The Stockfish of shogi
- Replies: 28
- Views: 8802
Re: The Stockfish of shogi
Yes, that was a bit of an overstatement, I meant that the terms are the same, while the piece values (apart from rook and bishop) and a few other things of course differ. However, the evaluation function is quite generic, i.e., it chooses/modifies the evaluation terms based on the rules/features of ...
- Tue Jan 07, 2020 8:58 pm
- Forum: Computer Chess Club: General Topics
- Topic: The Stockfish of shogi
- Replies: 28
- Views: 8802
Re: The Stockfish of shogi
Actually many of the top shogi engines are very similar and based on Stockfish (Dolphin, YaneuraOu, Apery, ...), but their strength comes from the evaluation files they use. The evaluation files are no (deep) neural networks but as far as I know just some coefficients for low-order polynomials of pi...
- Mon Dec 09, 2019 6:38 pm
- Forum: Computer Chess Club: General Topics
- Topic: best server for computers to play variants currently?
- Replies: 25
- Views: 5368
Re: best server for computers to play variants currently?
The problem with S-Chess for lichess is not the lack of popularity, but that it uses fairy pieces and gating of pieces which both do not exist on lichess yet, so it would perhaps require more work than other lichess variants. I think in hindsight they would not add racing kings again, but it can not...
- Tue Nov 19, 2019 12:33 pm
- Forum: Computer Chess Club: General Topics
- Topic: Fairy-Stockfish 10.3 released
- Replies: 40
- Views: 7334
Fairy-Stockfish 10.4 released
Although the last release was only one month ago, I decided to make a new release due to two major new features, namely Xiangqi and CECP/XBoard protocol support. Fairy-Stockfish can now be used without UCI2WB adapter in WinBoard/XBoard. https://github.com/ianfab/Fairy-Stockfish/releases/tag/fairy_sf...
- Sat Oct 26, 2019 2:21 pm
- Forum: Computer Chess Club: General Topics
- Topic: Fairy-Stockfish 10.3 released
- Replies: 40
- Views: 7334
Re: Fairy-Stockfish 10.3 released
...... Fairy Stockfish largeboard 10.3 works now on Winboard with HGM's modification but there is another problem now. Fairy Stockfish largeboard 10.3 lost on time in a 5'+3"(5 minutes+3 seconds/move) game. In fact it didn't obey the time control at all! It was a Capablanca random Chess game with a...
- Fri Oct 25, 2019 8:28 pm
- Forum: Computer Chess Club: General Topics
- Topic: Fairy-Stockfish 10.3 released
- Replies: 40
- Views: 7334
Re: Fairy-Stockfish 10.3 released
It seems that WinBoard crashes, which almost by definition is a WinBoard bug. String handling in WinBoard unfortunately is not very robust; it mostly doesn't test for buffer overrun, and just relies on all text buffers being large enough. (Currently set to 512 bytes through the macro MSG_SIZ.) Perh...