Search found 361 matches
- Sun Jan 03, 2021 4:05 am
- Forum: Computer Chess Club: General Topics
- Topic: New engine releases 2020
- Replies: 598
- Views: 164914
Re: New engine releases 2020
The ldc2 compiler is probably available in your linux distribution, but I always got trouble in using them. I prefer to directly download the last version at github, currently (but 1.25 is coming soon): https://github.com/ldc-developers/ldc/releases/download/v1.24.0/ldc2-1.24.0-linux-x86_64.tar.xz ...
- Sat Jan 02, 2021 8:45 pm
- Forum: Computer Chess Club: General Topics
- Topic: New engine releases 2020
- Replies: 598
- Views: 164914
Re: New engine releases 2020
I downloaded a compiler here and could compile Dumb 1.6.
- Sat Jan 02, 2021 8:28 pm
- Forum: Computer Chess Club: General Topics
- Topic: New engine releases 2020
- Replies: 598
- Views: 164914
Re: New engine releases 2020
Hi Morgan. Thank you for your answer. But, unfortunately, snapd doesn't seem to be available on my distro (Mageia). I am looking for another solution.mhouppin wrote: ↑Sat Jan 02, 2021 7:58 pmHi Roland,
If you have snapd installed on your Linux distro, you can install the D compiler withCode: Select all
sudo snap install ldc2 --classic
- Sat Jan 02, 2021 7:26 pm
- Forum: Computer Chess Club: General Topics
- Topic: New engine releases 2020
- Replies: 598
- Views: 164914
Re: New engine releases 2020
Have fun with it. Hello! For your information, I cannot use the Linux binary of Dumb 1.6. [roland@localhost 16]$ ./dumb-1.6 ./dumb-1.6: /lib64/libc.so.6: version `GLIBC_2.32' not found (required by ./dumb-1.6) [roland@localhost 16]$ It seems that I have to compile the source. I search how I can ins...
- Fri Dec 04, 2020 6:22 pm
- Forum: Computer Chess Club: General Topics
- Topic: Alouette 0.0.1
- Replies: 41
- Views: 12601
Alouette 0.1.4
Hello ! I released Alouette 0.1.4. https://github.com/rchastain/alouette/releases/tag/0.1.4 Faster move generation Piece square tables Random mover mode (parameter "-r" or "--random") There is now a Makefile in the repository. Of course you need to install the Free Pascal compiler. I compressed all ...
- Fri Nov 27, 2020 5:30 am
- Forum: Computer Chess Club: General Topics
- Topic: New engine: paulchen332
- Replies: 9
- Views: 1824
Re: New engine: paulchen332
May I ask which gcc version you are compiling with? This looks like a manifestation of this bug , which erroneously caused class members to be inaccessible in noexcept declarations. As such I assume your version is <=8? Thank you for your answer. Indeed, it's gcc version 8. [roland@localhost paulch...
- Thu Nov 26, 2020 6:44 pm
- Forum: Computer Chess Club: General Topics
- Topic: New engine: paulchen332
- Replies: 9
- Views: 1824
Re: New engine: paulchen332
Hello! When I try to build the engine (on Linux 64), I get the following error message: [roland@localhost paulchen332 (main)]$ LC_ALL=C make g++ -Wfatal-errors -std=c++17 -Wall -pedantic -Werror -O3 -march=native -ggdb -flto -Iinclude -Idep/ptl/include -Idep/pcl/include -c src/default_search_control...
- Sat Nov 21, 2020 7:11 pm
- Forum: Computer Chess Club: General Topics
- Topic: OpenCritter compiled for Linux with Free Pascal
- Replies: 6
- Views: 1572
Re: OpenCritter compiled for Linux with Free Pascal
The engine works more or less but there are some issues that I am not able to fix for now, because there are many things in the program that I don't understand. For example, I didn't know until today what is a "null move".
I created a git repository: Open Critter
Contributions are welcome.

I created a git repository: Open Critter
Contributions are welcome.
- Sat Nov 21, 2020 5:18 am
- Forum: Computer Chess Club: General Topics
- Topic: New engine releases 2020
- Replies: 598
- Views: 164914
Re: New engine releases 2020
Hippocampe 0.4.2.0.2.
Fixed illegal pawn move. (Thank to Taimo Peelo for reporting the bug.)
Added setboard command.
Fixed illegal pawn move. (Thank to Taimo Peelo for reporting the bug.)
Added setboard command.
- Thu Nov 19, 2020 5:49 am
- Forum: Computer Chess Club: General Topics
- Topic: OpenCritter compiled for Linux with Free Pascal
- Replies: 6
- Views: 1572
Re: OpenCritter compiled for Linux with Free Pascal
By the way, I tested the program in Chess960 mode: it doesn't work. I am trying to find what is wrong. There was an error in the FEN parser. It is fixed now. But there is another problem: after a castling from the opponent, the engine plays illegal move. I must take the time to review everything re...