Hello,
I am just releasing the version 1.1 of RedQueen.
What is new/fixed:
- Fixed bug at discovered check pieces code;
- Improved lazy eval code;
- Code clean up;
- All evaluation parameters were externalized to a configuration file;
- Time management minor tweaks;
- Aspiration window code minor improvements;
- More agressive LMR;
Version 1.1.0 is scoring 54% against the previous one (1.0.0).
Obs.: In the new version the user can fiddle around with each evaluation parameter by editing the text file that comes along with the binaries.
Linux 32/64 bits binaries/source: http://sourceforge.net/projects/redquee ... p/download
Windows 32/64 bits binaries/source: http://sourceforge.net/projects/redquee ... p/download
SVN tag: https://redqueenchess.svn.sourceforge.n ... ease-1.1.0
Regards,
RedQueen 1.1 released
Moderator: Ras
-
bhlangonijr
- Posts: 482
- Joined: Thu Oct 16, 2008 4:23 am
- Location: Milky Way
RedQueen 1.1 released
Ben-Hur Carlos Langoni Junior
http://sourceforge.net/projects/redqueenchess/
http://sourceforge.net/projects/redqueenchess/
-
Graham Banks
- Posts: 45781
- Joined: Sun Feb 26, 2006 10:52 am
- Location: Auckland, NZ
Re: RedQueen 1.1 released
Hi Ben-Hur. I can get the 64-bit version working, but not the 32-bit version.bhlangonijr wrote:Hello,
I am just releasing the version 1.1 of RedQueen.
Graham.
gbanksnz at gmail.com
-
mcostalba
- Posts: 2684
- Joined: Sat Jun 14, 2008 9:17 pm
Re: RedQueen 1.1 released
I don't think this is an improvment:bhlangonijr wrote: - Aspiration window code minor improvements;
Code: Select all
aspirationDelta = std::max(aspirationDelta/2,10);
You may want to write instead
Code: Select all
aspirationDelta += std::max(aspirationDelta/2,10);
-
stevenaaus
- Posts: 613
- Joined: Wed Oct 13, 2010 9:44 am
- Location: Australia
Re: RedQueen 1.1 released
32 bit is ok for Linux Mint 10.
Any chance of a linux makefile ?
Any chance of a linux makefile ?
-
lucasart
- Posts: 3243
- Joined: Mon May 31, 2010 1:29 pm
- Full name: lucasart
Re: RedQueen 1.1 released
64 bit works for me too, using Linux 3.2.0stevenaaus wrote: 32 bit is ok for Linux Mint 10.
Linux is not a compiler. You probably meant a GCC makefile?stevenaaus wrote: Any chance of a linux makefile ?
-
bhlangonijr
- Posts: 482
- Joined: Thu Oct 16, 2008 4:23 am
- Location: Milky Way
Re: RedQueen 1.1 released
Hello Graham,Graham Banks wrote:Hi Ben-Hur. I can get the 64-bit version working, but not the 32-bit version.bhlangonijr wrote:Hello,
I am just releasing the version 1.1 of RedQueen.
Graham.
Is there an error message or the program simply crashes on your system?
I have tested it on a Windows 7 box.
Thanks,
Ben-Hur Carlos Langoni Junior
http://sourceforge.net/projects/redqueenchess/
http://sourceforge.net/projects/redqueenchess/
-
bhlangonijr
- Posts: 482
- Joined: Thu Oct 16, 2008 4:23 am
- Location: Milky Way
Re: RedQueen 1.1 released
Wow what a lapse! The previous code was:mcostalba wrote:I don't think this is an improvment:bhlangonijr wrote: - Aspiration window code minor improvements;
Code: Select all
aspirationDelta = std::max(aspirationDelta/2,10);
You may want to write instead
Code: Select all
aspirationDelta += std::max(aspirationDelta/2,10);
Code: Select all
aspirationDelta = std::max(aspirationDelta*130/100,10);
Thanks a lot,
Ben-Hur Carlos Langoni Junior
http://sourceforge.net/projects/redqueenchess/
http://sourceforge.net/projects/redqueenchess/
-
bhlangonijr
- Posts: 482
- Joined: Thu Oct 16, 2008 4:23 am
- Location: Milky Way
Re: RedQueen 1.1 released
Hello Garbor,SzG wrote: Hi Ben-Hur,
For me it is not clear if this means a fix is needed or we can live with that mistake.
It is not a blocking issue but it is rather something that is hurting the playing strength. I will be releasing a bug fix version (1.1.1) ASAP. The fixed version is already commited in the repo with also a releasing tag. I am just waiting some users input as for the reason the 32 bit windows version is not working. I usually build it with cross platform tools, so I can't really test it in a real 32 bit windows environment.
Ben-Hur Carlos Langoni Junior
http://sourceforge.net/projects/redqueenchess/
http://sourceforge.net/projects/redqueenchess/
-
bhlangonijr
- Posts: 482
- Joined: Thu Oct 16, 2008 4:23 am
- Location: Milky Way
Re: RedQueen 1.1 released
Hi Steve,stevenaaus wrote:32 bit is ok for Linux Mint 10.
Any chance of a linux makefile ?
I promise i will create a make file for the next version. I am a lazy post "vi programmer" that uses Eclipse CDT which automatically generates the make files.
Ben-Hur Carlos Langoni Junior
http://sourceforge.net/projects/redqueenchess/
http://sourceforge.net/projects/redqueenchess/
-
zullil
- Posts: 6442
- Joined: Tue Jan 09, 2007 12:31 am
- Location: PA USA
- Full name: Louis Zulli
Re: RedQueen 1.1 released
Makefiles are processed by make, not by a compiler. You probably meant a GNU makefile?lucasart wrote:Linux is not a compiler. You probably meant a GCC makefile?stevenaaus wrote: Any chance of a linux makefile ?
In any case, the source compiled flawlessly (under Mac OS X 10.7) using
Code: Select all
g++ -O3 -Wall *.cpp -o redqueen