Runs smoothly on my computer.
Thanks.
xpdnt_071017 released
Moderator: Ras
-
- Posts: 3533
- Joined: Tue Jan 09, 2007 8:33 pm
- Location: Antalya, Turkey
Re: xpdnt_071017 released
hi, merhaba, hallo HT
-
- Posts: 3533
- Joined: Tue Jan 09, 2007 8:33 pm
- Location: Antalya, Turkey
Re: xpdnt_071017 released
Hello,
I am getting
"This application failed to start because the config.. is incorrect"
message.
I am getting
"This application failed to start because the config.. is incorrect"
message.
hi, merhaba, hallo HT
-
- Posts: 2278
- Joined: Fri Jul 14, 2006 7:56 am
- Location: London, England
- Full name: Jim Ablett
Re: xpdnt_071017 released
Unix type paths in src.I am getting
"This application failed to start because the config.. is incorrect"
message.
Code: Select all
from 'main.c'
strcpy(name, "./logs/debug.log"); - Unix
should be in Windows >
strcpy(name, ".\logs\debug.log"); - Windows
My build runs ok - debug/log files now write to root folder.
Jim.
-
- Posts: 166
- Joined: Wed Mar 08, 2006 9:49 pm
- Location: S. New Jersey, USA
Re: xpdnt_071017 released
Updated to xpdnt_071113
using the eval hash gave a 3% score increase in 1200 game tourney
found a bug in timing: could return a (-) search time
not too much more to report ...
The archive contains source and *nix executable. Maybe Jim will compile a windows version.
I did remove the logging and hence the \ / problems
http://www.debog.com/ai/
using the eval hash gave a 3% score increase in 1200 game tourney
found a bug in timing: could return a (-) search time
not too much more to report ...
The archive contains source and *nix executable. Maybe Jim will compile a windows version.
I did remove the logging and hence the \ / problems
http://www.debog.com/ai/
-
- Posts: 166
- Joined: Wed Mar 08, 2006 9:49 pm
- Location: S. New Jersey, USA
Re: xpdnt_071017 released
Don't bother! The Time control is still buggy!!!!
I am about to give up on this!
I am about to give up on this!
-
- Posts: 2278
- Joined: Fri Jul 14, 2006 7:56 am
- Location: London, England
- Full name: Jim Ablett
Re: xpdnt_071017 released
Hi David,
I've been tinkering with the time problem myself. The changes below
work ok for me so far. The main culprit seems to be the extra reserve time added.
I'll incorporate these fixes into the latest version and post the windows build for you to test later.
Rgds,
Jim Ablett.
Don't bother! The Time control is still buggy!!!!
I am about to give up on this!
I've been tinkering with the time problem myself. The changes below
work ok for me so far. The main culprit seems to be the extra reserve time added.
I'll incorporate these fixes into the latest version and post the windows build for you to test later.
Code: Select all
------------------------------------------------------------
Xpdnt 071017 bugfixes. (lines with changes have JA comment)
------------------------------------------------------------
----------------------------------------
FIX FOR TIMEOUT PROBLEMS AFTER 40TH MOVE
----------------------------------------
---------------------------------
in 'main.c' - line 639
---------------------------------
if (!strcmp(command, "level"))
{
sscanf(line, "level %d %d %d", &mpt, &tpm, &inc);
if (mpt) rmoves = mpt;// * 2;
else
// rmoves = 30; // was this - JA
rmoves = mpt = 40; // changed to this - JA
inc *= 10;
continue;
}
----------------------------------
---------------------------------
FIX FOR 40TH MOVE TIMEOUT BUG
---------------------------------
----------------------------------
in 'think.c' - line 634
----------------------------------
if(stop_search)
{
if(reserve)
{
// st += reserve; // use it
// commented out (not using reserve) as it causes
// 40th move timeout. - JA
reserve = 0;
stop_search = 0;
continue;
}
break;
}
---------------------------------
Rgds,
Jim Ablett.
-
- Posts: 2278
- Joined: Fri Jul 14, 2006 7:56 am
- Location: London, England
- Full name: Jim Ablett
Re: xpdnt_071017 released
Xpdnt 071113 win32 Intel compiler 10 p.g.o
http://www.2xupload.to/file/b005d915561 ... a.zip.html
Mirrors:
http://w14.easy-share.com/10183031.html
http://www.fileforwarding.com/index.php ... d&id=11333
http://www.mediafire.com/?cvtvytg0dti
Jim.
http://www.2xupload.to/file/b005d915561 ... a.zip.html
Mirrors:
http://w14.easy-share.com/10183031.html
http://www.fileforwarding.com/index.php ... d&id=11333
http://www.mediafire.com/?cvtvytg0dti
Jim.
-
- Posts: 2278
- Joined: Fri Jul 14, 2006 7:56 am
- Location: London, England
- Full name: Jim Ablett
Re: xpdnt_071017 released
Just noticed New Xpdnt still using old version string.
Fixed and re-compiled. Will now correctly display 071113.
Please download again below:
Xpdnt 071113 win32 Intel compiler 10 p.g.o
http://myfreefilehosting.com/f/fd23dea959_0.55MB
Mirrors:
http://www.zshare.net/download/49095359664a4b/
http://w14.easy-share.com/10209571.html
Jim.
Code: Select all
#define VERSION "071017"
Please download again below:
Xpdnt 071113 win32 Intel compiler 10 p.g.o
http://myfreefilehosting.com/f/fd23dea959_0.55MB
Mirrors:
http://www.zshare.net/download/49095359664a4b/
http://w14.easy-share.com/10209571.html
Jim.
-
- Posts: 166
- Joined: Wed Mar 08, 2006 9:49 pm
- Location: S. New Jersey, USA
Re: xpdnt_071017 released
Thanks Jim!
I **think** I fixed the problem! [where have I heard that before??]
1. Leaving a 1/2 second buffer on the clocks
2. Increased the time-check rate
3. use less time for 'reserve' time. [was using too much time to resolve failures]
I did run some 1 minute games 40 moves per tc and it worked!
Linux version uploaded with sources.
http://www.debog.com/ai/
I **think** I fixed the problem! [where have I heard that before??]
1. Leaving a 1/2 second buffer on the clocks
2. Increased the time-check rate
3. use less time for 'reserve' time. [was using too much time to resolve failures]
I did run some 1 minute games 40 moves per tc and it worked!
Linux version uploaded with sources.
http://www.debog.com/ai/