LC0 with the net MeanGirl7 finds it in about 10 seconds at depth 6. I have no idea how to copy the analysis output from scid vs pc or to properly insert an image in this chat, so here is a screenshot:
https://imgur.com/a/1kXJhqo
Search found 238 matches
- Mon Dec 16, 2019 11:24 am
- Forum: Computer Chess Club: General Topics
- Topic: Evaluation challenge
- Replies: 26
- Views: 4181
- Thu Nov 21, 2019 9:17 am
- Forum: Computer Chess Club: General Topics
- Topic: Mussaurus 0.1-prealpha - a poor man's Vice
- Replies: 45
- Views: 9916
Re: Mussaurus 0.1-prealpha - a poor man's Vice
What about a README file in your github, with some instructions to compile Mussaurus?
- Tue Oct 08, 2019 3:51 pm
- Forum: Computer Chess Club: General Topics
- Topic: Fizbo 2 sources just got released
- Replies: 9
- Views: 4387
Re: Fizbo 2 sources just got released
I downloaded the linux version from https://sites.google.com/site/fizbochessengine/ but it seems to be a Windows executable: $ file fizbo2x64_no_pc_linux fizbo2x64_no_pc_linux: PE32+ executable (console) x86-64, for MS Windows If I try to run the file: $ ./fizbo2x64_no_pc_linux run-detectors: unable...
- Fri Apr 12, 2019 9:42 am
- Forum: Computer Chess Club: General Topics
- Topic: Why you need opening book for Stockfish!
- Replies: 11
- Views: 4044
Re: Why you need opening book for Stockfish!
So playing 1.a3 would be one good option against Stockfish?
- Thu Mar 07, 2019 2:41 pm
- Forum: Computer Chess Club: Programming and Technical Discussions
- Topic: Chess programming C++
- Replies: 15
- Views: 6624
Re: Chess programming C++
H. H. Muller, where can be found KinSlayer's code? Doesn't seem to be here http://home.hccnet.nl/h.g.muller/chess.html Secondchess is a very simple chess engine, based on Firstchess, and its goal is to help to understand how a chess engine works. It's written in C though. https://github.com/emdio/se...
- Wed Jan 02, 2019 6:59 pm
- Forum: Computer Chess Club: General Topics
- Topic: Very interesting engine "Sashimi"
- Replies: 12
- Views: 3722
Re: Very interesting engine "Sashimi"
Sure. I followed the instructions here to get the nightly version (I have no experience at all with rust) https://www.oreilly.com/library/view/rust-programming-by/9781788390637/e07dc768-de29-482e-804b-0274b4bef418.xhtml And then just ran the command "cargo build --release --all" from the sashimi fol...
- Wed Jan 02, 2019 6:37 pm
- Forum: Computer Chess Club: General Topics
- Topic: Very interesting engine "Sashimi"
- Replies: 12
- Views: 3722
Re: Very interesting engine "Sashimi"
Ok, I didn't' properly read tmokonen's issue with compiling. I used the nighly version of rust and compiled the engine with no problem.
Probably it'd be a good idea opening an issue on the github repo.
Probably it'd be a good idea opening an issue on the github repo.
- Wed Jan 02, 2019 5:51 pm
- Forum: Computer Chess Club: General Topics
- Topic: Very interesting engine "Sashimi"
- Replies: 12
- Views: 3722
Re: Very interesting engine "Sashimi"
About the compiling issue, it seems rust nightly version is needed
https://github.com/zxqfl/sashimi/issues/2
https://github.com/zxqfl/sashimi/issues/2
- Wed Oct 03, 2018 7:47 pm
- Forum: Computer Chess Club: General Topics
- Topic: A very simple engine in C/C++ using bitboards?
- Replies: 10
- Views: 5553
Re: A very simple engine in C/C++ using bitboards?
[/quote] Try also this one. My early versions from 2005. This is a working xboard engine: https://github.com/ed-apostol/TwistedLogic-alpha/blob/master/src/omega9.c [/quote] This one doesn't compile $ gcc -o omega9 omega9.c omega9.c: In function ‘gettime’: omega9.c:533:5: warning: implicit declaratio...
- Mon Oct 01, 2018 1:35 pm
- Forum: Computer Chess Club: General Topics
- Topic: A very simple engine in C/C++ using bitboards?
- Replies: 10
- Views: 5553
A very simple engine in C/C++ using bitboards?
Hi all Maybe someone here remembers Firstchess "FirstChess, a very simple open source chess program with a command line interface written by Nguyen Hong Pham (surname) in C for didactic purpose, introduced in 2002" https://github.com/nguyenpham/FirstChess I'm wondering whether something similar, wri...