OliThink 5.1.0 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.
OliThink 5.1.0 released
http://home.arcor.de/dreamlike/chess/index.html
Changes to 5.0.9:
-Providing Linux binaries
-Changed time management, supporting mps control.
-Removed a little bug in _parse_fen() that stroke through when using gcc without optimization
-Now hash is identical for 64bit and 32bit.
Oliver Brausch
Changes to 5.0.9:
-Providing Linux binaries
-Changed time management, supporting mps control.
-Removed a little bug in _parse_fen() that stroke through when using gcc without optimization
-Now hash is identical for 64bit and 32bit.
Oliver Brausch
-
Tony Thomas
Re: OliThink 5.1.0 released
You should seriously think about adjustable hash table scheme for the next release. Otherwise poor guys like me will never be able to test it.
- Jim Ablett
- Posts: 1327
- Joined: Fri Jul 14, 2006 5:56 am
- Location: London, England
- Contact:
Re: OliThink 5.1.0 released
Hi Oliver,
Thanks for the update.
I compiled some Intel builds here >
http://www.zshare.net/download/92185189377fad/
There were a few problems compiling for Windows with Intel/Msvc.
Olithink doesn't exit cleanly with exit(0) and crashes. I fixed this by
replacing exit(0) with ExitProcess(0).
Works ok that way, but it's still ending too ubruptly as I'm unable to gather any profile data to compile a p.g.o build.
Also your win32 build fails to make any moves at all on my 32 bit XP system. I fixed this also.
Fixed src is included with my download.
regards,
Jim.
Thanks for the update.
I compiled some Intel builds here >
http://www.zshare.net/download/92185189377fad/
There were a few problems compiling for Windows with Intel/Msvc.
Olithink doesn't exit cleanly with exit(0) and crashes. I fixed this by
replacing exit(0) with ExitProcess(0).
Code: Select all
#ifdef _MSC_VER
if (!strncmp(buf,"quit",4)) ExitProcess(0);
#else
if (!strncmp(buf,"quit",4)) Exit(0);
#endif
Also your win32 build fails to make any moves at all on my 32 bit XP system. I fixed this also.
Fixed src is included with my download.
regards,
Jim.
- Jim Ablett
- Posts: 1327
- Joined: Fri Jul 14, 2006 5:56 am
- Location: London, England
- Contact:
Re: OliThink 5.1.0 released
Oh this, looks nice. may i use it for my homepage?Jim Ablett wrote:New version deserves a new logo >
![]()
Jim.
- Jim Ablett
- Posts: 1327
- Joined: Fri Jul 14, 2006 5:56 am
- Location: London, England
- Contact:
Re: OliThink 5.1.0 released
Of course! Glad you like itOliverBr wrote:Oh this, looks nice. may i use it for my homepage?Jim Ablett wrote:New version deserves a new logo >
![]()
Jim.
Jim.
Re: OliThink 5.1.0 released
Jim Ablett wrote:Hi Oliver,
Thanks for the update.
I compiled some Intel builds here >
http://www.zshare.net/download/92185189377fad/
There were a few problems compiling for Windows with Intel/Msvc.
Olithink doesn't exit cleanly with exit(0) and crashes. I fixed this by
replacing exit(0) with ExitProcess(0).
Works ok that way, but it's still ending too ubruptly as I'm unable to gather any profile data to compile a p.g.o build.Code: Select all
#ifdef _MSC_VER if (!strncmp(buf,"quit",4)) ExitProcess(0); #else if (!strncmp(buf,"quit",4)) Exit(0); #endif
Also your win32 build fails to make any moves at all on my 32 bit XP system. I fixed this also.
Fixed src is included with my download.
regards,
Jim.
To the rescue again. Thanks, Jim. It wasnt much fun just watching it sit there and never move- the logo is great!
Best,
Re: OliThink 5.1.0 released
That's quite strange. The win32 executable works very well with me. Does anyone else have these problems?geots wrote:Jim Ablett wrote:Hi Oliver,
Thanks for the update.
I compiled some Intel builds here >
http://www.zshare.net/download/92185189377fad/
There were a few problems compiling for Windows with Intel/Msvc.
Olithink doesn't exit cleanly with exit(0) and crashes. I fixed this by
replacing exit(0) with ExitProcess(0).
Works ok that way, but it's still ending too ubruptly as I'm unable to gather any profile data to compile a p.g.o build.Code: Select all
#ifdef _MSC_VER if (!strncmp(buf,"quit",4)) ExitProcess(0); #else if (!strncmp(buf,"quit",4)) Exit(0); #endif
Also your win32 build fails to make any moves at all on my 32 bit XP system. I fixed this also.
Fixed src is included with my download.
regards,
Jim.
To the rescue again. Thanks, Jim. It wasnt much fun just watching it sit there and never move- the logo is great!
Best,
- Graham Banks
- Posts: 30733
- Joined: Sun Feb 26, 2006 9:52 am
- Location: Auckland, NZ
Re: OliThink 5.1.0 released
Yes.OliverBr wrote:That's quite strange. The win32 executable works very well with me. Does anyone else have these problems?geots wrote:Jim Ablett wrote:Hi Oliver,
Thanks for the update.
I compiled some Intel builds here >
http://www.zshare.net/download/92185189377fad/
There were a few problems compiling for Windows with Intel/Msvc.
Olithink doesn't exit cleanly with exit(0) and crashes. I fixed this by
replacing exit(0) with ExitProcess(0).
Works ok that way, but it's still ending too ubruptly as I'm unable to gather any profile data to compile a p.g.o build.Code: Select all
#ifdef _MSC_VER if (!strncmp(buf,"quit",4)) ExitProcess(0); #else if (!strncmp(buf,"quit",4)) Exit(0); #endif
Also your win32 build fails to make any moves at all on my 32 bit XP system. I fixed this also.
Fixed src is included with my download.
regards,
Jim.
To the rescue again. Thanks, Jim. It wasnt much fun just watching it sit there and never move- the logo is great!
Best,
Regards, Graham.
My email addresses:
gbanksnz at gmail.com
gbanksnz at yahoo.co.nz
gbanksnz at gmail.com
gbanksnz at yahoo.co.nz


