Senpai 1.0 (new engine)

Discussion of anything and everything relating to chess playing software and machines.

Moderator: Ras

Xann
Posts: 127
Joined: Sat Jan 22, 2011 7:14 pm
Location: Lille, France

Re: Senpai 1.0 (new engine)

Post by Xann »

and not beyond? ;)
overlord
Posts: 198
Joined: Sun Jun 03, 2012 6:46 pm
Location: Trinec, Czech Republic

Re: Senpai 1.0 (new engine)

Post by overlord »

Fabien,

nice to see that you are back. Fruit was a milestone. Before that I thought that engines will never be better than Shreddre and/or Fritz :)
overlord
Posts: 198
Joined: Sun Jun 03, 2012 6:46 pm
Location: Trinec, Czech Republic

Re: Senpai 1.0 (new engine)

Post by overlord »

I believe that you have a lot of new and fresh ideas :) Right now we have three top engines, so why not four? :)
User avatar
JuLieN
Posts: 2949
Joined: Mon May 05, 2008 12:16 pm
Location: Bordeaux (France)
Full name: Julien Marcel

Re: Senpai 1.0 (new engine)

Post by JuLieN »

Gerd Isenberg wrote:How about "Blockers and Beyond"?
Awesome! I coin the short version : B&B ! ;)
"The only good bug is a dead bug." (Don Dailey)
[Blog: http://tinyurl.com/predateur ] [Facebook: http://tinyurl.com/fbpredateur ] [MacEngines: http://tinyurl.com/macengines ]
User avatar
Bloodbane
Posts: 154
Joined: Thu Oct 03, 2013 4:17 pm

Re: Senpai 1.0 (new engine)

Post by Bloodbane »

Didn't expect this, it's nice to see an old salt returning back.

C++11 is still perhaps not that good an idea for software which is supposed to be portable. I've had trouble with the new regex on another project(gcc doesn't compile the code so I can't run it on Linux). Maybe in a year or two everything will be okay though.
Functional programming combines the flexibility and power of abstract mathematics with the intuitive clarity of abstract mathematics.
https://github.com/mAarnos
Xann
Posts: 127
Joined: Sat Jan 22, 2011 7:14 pm
Location: Lille, France

Re: Senpai 1.0 (new engine)

Post by Xann »

Why not? 300 Elo?
syzygy
Posts: 5696
Joined: Tue Feb 28, 2012 11:56 pm

Re: Senpai 1.0 (new engine)

Post by syzygy »

Xann wrote:Hi Ronald.

Thanks for the info.

We know these errors very well. Your compiler does not support std::thread.
I finally got it to run anyway, using boost to replace std::thread and after an incredible hassle with libraries that don't want to get found.

The function rand_int() only returns even values, so there is the problem. Maybe replace by:

Code: Select all

int rand_int(int n) {
   assert(n > 0);
   return int(rand_float() * double(2*n)) / 2;
}
syzygy
Posts: 5696
Joined: Tue Feb 28, 2012 11:56 pm

Re: Senpai 1.0 (new engine)

Post by syzygy »

syzygy wrote:

Code: Select all

int rand_int(int n) {
   assert(n > 0);
   return int(rand_float() * double(2*n)) / 2;
}
This doesn't work.

Just use something better.... :-)
RAND_MAX = 32767
Last edited by syzygy on Mon Mar 17, 2014 9:56 pm, edited 1 time in total.
ouachita
Posts: 454
Joined: Tue Jan 15, 2013 4:33 pm
Location: Ritz-Carlton, NYC
Full name: Bobby Johnson

Re: Senpai 1.0 (new engine)

Post by ouachita »

RDM - purely out of curiosity, have you been posting at TCEC in recent days or did I see a RDM imposter?
SIM, PhD, MBA, PE
Xann
Posts: 127
Joined: Sat Jan 22, 2011 7:14 pm
Location: Lille, France

Re: Senpai 1.0 (new engine)

Post by Xann »

Thanks a lot! At some point I sent Joachim a table of PolyGlot random numbers, but he answered that the problem was still there. So I assumed it was something else.