RedQueen 1.1 released
Moderators: hgm, Harvey Williamson, bob
Forum rules
This textbox is used to restore diagrams posted with the [d] tag before the upgrade.
This textbox is used to restore diagrams posted with the [d] tag before the upgrade.
-
bhlangonijr
- Posts: 482
- Joined: Thu Oct 16, 2008 2:23 am
- Location: Milky Way
- Contact:
RedQueen 1.1 released
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,
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,
Ben-Hur Carlos Langoni Junior
http://sourceforge.net/projects/redqueenchess/
http://sourceforge.net/projects/redqueenchess/
- Graham Banks
- Posts: 30733
- Joined: Sun Feb 26, 2006 9: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.
My email addresses:
gbanksnz at gmail.com
gbanksnz at yahoo.co.nz
gbanksnz at gmail.com
gbanksnz at yahoo.co.nz
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: 596
- Joined: Wed Oct 13, 2010 7:44 am
- Location: Australia
- Contact:
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 ?
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 2:23 am
- Location: Milky Way
- Contact:
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 2:23 am
- Location: Milky Way
- Contact:
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/
Re: RedQueen 1.1 released
Hi Ben-Hur,bhlangonijr wrote: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);
In this case I don't need the addition operator. I've read your post regarding *Ippos aspiration window formula and tried it, but also including other changes in the test.. And it passed in all tests with ~+30 Elo over the previous version (based on 5000 games)...Code: Select all
aspirationDelta = std::max(aspirationDelta*130/100,10);
Thanks a lot,
For me it is not clear if this means a fix is needed or we can live with that mistake.
Gabor Szots
CCRL testing group
CCRL testing group
-
bhlangonijr
- Posts: 482
- Joined: Thu Oct 16, 2008 2:23 am
- Location: Milky Way
- Contact:
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 2:23 am
- Location: Milky Way
- Contact:
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/

