ChessUSA.com TalkChess.com
Hosted by Your Move Chess & Games
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

OliThink 5.3.1 released (Win, Mac, Linux and Java)
Goto page 1, 2, 3  Next
 
Post new topic       TalkChess.com Forum Index -> Computer Chess Club: General Topics Threaded
View previous topic :: View next topic  
Author Message
Oliver Brausch



Joined: 18 Dec 2007
Posts: 237
Location: Munich, Germany

PostPosted: Tue Feb 28, 2012 3:34 am    Post subject: OliThink 5.3.1 released (Win, Mac, Linux and Java) Reply to topic Reply with quote

-Two years after 5.3.0 there is a new version of OliThink. A little bug was removed. This seems to improve about 35 ELO.

-Furthermore the Java Version, which seems to be the best Java Engine available, has been revised.

-Note, that the Java Version on a 64bit Java Runtime Environment is as strong as the native one on a 32bit System.

-MacOSX binaries added.

Download here as usual:

http://home.arcor.de/dreamlike/chess/index.html

The x64 Windows binary hasn't been tested yet. Please check it out and tell me, if it doesn't work.
Back to top
View user's profile Send private message Send e-mail Visit poster's website
Graham Banks



Joined: 26 Feb 2006
Posts: 19879
Location: Auckland, NZ

PostPosted: Tue Feb 28, 2012 4:47 am    Post subject: Re: OliThink 5.3.1 released (Win, Mac, Linux and Java) Reply to topic Reply with quote

OliverBr wrote:
Two years after 5.3.0 there is a new version of OliThink.


Thanks Oliver. Smile
_________________
My email addresses:
gbanksnz at gmail.com
gbanksnz at yahoo.co.nz
Back to top
View user's profile Send private message Send e-mail
Matthias Gemuh



Joined: 09 Mar 2006
Posts: 2876

PostPosted: Tue Feb 28, 2012 5:53 am    Post subject: Re: OliThink 5.3.1 released (Win, Mac, Linux and Java) Reply to topic Reply with quote

OliverBr wrote:

...
-Furthermore the Java Version, which seems to be the best Java Engine available, has been revised.

-Note, that the Java Version on a 64bit Java Runtime Environment is as strong as the native one on a 32bit System.
...


You really mean stronger than Cuckoo ?
_________________
My engine was quite strong till I added knowledge to it.
http://biglion.bplaced.net
http://w2410tmq9.homepage.t-online.de
Back to top
View user's profile Send private message Visit poster's website
Ruxy Sylwyka



Joined: 21 Apr 2006
Posts: 1949
Location: IASI-ROMANIA

PostPosted: Tue Feb 28, 2012 6:08 am    Post subject: Re: Thank you a lot....but....... Reply to topic Reply with quote

OliverBr wrote:

-Furthermore the Java Version, which seems to be the best Java Engine available, has been revised.


Hello !

Thank you Mr. Olivier for the long avaited OliThink 5.3.1 J !
This your engine is for sure the best Java WB chess engine but only the place 3/4 - th ( together with Magnum 3.00 r20 JA) in the Java world. My very long SUPREME JAVA TOURNAMENT shows me CuckooCkess 1.12 ( by far) and Flux 2.2 like the best Java chess engines !

Thank you again !
SilvianR Wink

Here is the Java WB tournament (with OliThink 5.3.0 J):

http://talkchess.com/forum/viewtopic.php?topic_view=threads&p=446574&t=42087

Here is the Java UCI tournament:

http://talkchess.com/forum/viewtopic.php?topic_view=threads&p=451760&t=42087

My SUPREME JAVA TOURNAMENT 2012 ( the first five places in each tournament ) is under way !
Back to top
View user's profile Send private message Send e-mail
Marek Soszynski



Joined: 10 May 2006
Posts: 328
Location: Birmingham, England

PostPosted: Tue Feb 28, 2012 6:58 am    Post subject: Re: OliThink 5.3.1 released (Win, Mac, Linux and Java) Reply to topic Reply with quote

It would be a fine thing to add analyse mode to the Linux compile.
_________________
Marek Soszynski
Back to top
View user's profile Send private message
Lucas Braesch



Joined: 31 May 2010
Posts: 1824

PostPosted: Tue Feb 28, 2012 10:10 am    Post subject: Re: OliThink 5.3.1 released (Win, Mac, Linux and Java) Reply to topic Reply with quote

OliverBr wrote:
-Two years after 5.3.0 there is a new version of OliThink. A little bug was removed. This seems to improve about 35 ELO.

-Furthermore the Java Version, which seems to be the best Java Engine available, has been revised.

-Note, that the Java Version on a 64bit Java Runtime Environment is as strong as the native one on a 32bit System.

-MacOSX binaries added.

Download here as usual:

http://home.arcor.de/dreamlike/chess/index.html

The x64 Windows binary hasn't been tested yet. Please check it out and tell me, if it doesn't work.

I don't know if you saw my email, but there is a bug about the move format. Really a trivial fix

=> replace
Code:

printf("%d. ... ", COUNT/2 + 1);


by
Code:
printf("move ");


the "%d. ... %s" format is antiquated xboard stuff that doesn't work with some modern interfaces. better to use "move %s", simply.

I'm currently running Olithink 5.3.1 in my Open Source Bullet rating list (1'+1"). Results available tomorrow in the tournament forum.

Lucas
Back to top
View user's profile Send private message
Oliver Brausch



Joined: 18 Dec 2007
Posts: 237
Location: Munich, Germany

PostPosted: Tue Feb 28, 2012 11:08 am    Post subject: Re: OliThink 5.3.1 released (Win, Mac, Linux and Java) Reply to topic Reply with quote

lucasart wrote:
OliverBr wrote:
-Two years after 5.3.0 there is a new version of OliThink. A little bug was removed. This seems to improve about 35 ELO.

-Furthermore the Java Version, which seems to be the best Java Engine available, has been revised.

-Note, that the Java Version on a 64bit Java Runtime Environment is as strong as the native one on a 32bit System.

-MacOSX binaries added.

Download here as usual:

http://home.arcor.de/dreamlike/chess/index.html

The x64 Windows binary hasn't been tested yet. Please check it out and tell me, if it doesn't work.

I don't know if you saw my email, but there is a bug about the move format. Really a trivial fix

=> replace
Code:

printf("%d. ... ", COUNT/2 + 1);


by
Code:
printf("move ");


the "%d. ... %s" format is antiquated xboard stuff that doesn't work with some modern interfaces. better to use "move %s", simply.

I'm currently running Olithink 5.3.1 in my Open Source Bullet rating list (1'+1"). Results available tomorrow in the tournament forum.

Lucas


Hi Lucas, I got your email, but forget to change this. I did it now and re-uploaded the files with this change.
Back to top
View user's profile Send private message Send e-mail Visit poster's website
Oliver Brausch



Joined: 18 Dec 2007
Posts: 237
Location: Munich, Germany

PostPosted: Tue Feb 28, 2012 11:15 am    Post subject: Re: Thank you a lot....but....... Reply to topic Reply with quote

Sylwy wrote:
OliverBr wrote:

-Furthermore the Java Version, which seems to be the best Java Engine available, has been revised.


Hello !

Thank you Mr. Olivier for the long avaited OliThink 5.3.1 J !
This your engine is for sure the best Java WB chess engine but only the place 3/4 - th ( together with Magnum 3.00 r20 JA) in the Java world. My very long SUPREME JAVA TOURNAMENT shows me CuckooCkess 1.12 ( by far) and Flux 2.2 like the best Java chess engines !

Thank you again !
SilvianR Wink

Here is the Java WB tournament (with OliThink 5.3.0 J):

http://talkchess.com/forum/viewtopic.php?topic_view=threads&p=446574&t=42087

Here is the Java UCI tournament:

http://talkchess.com/forum/viewtopic.php?topic_view=threads&p=451760&t=42087

My SUPREME JAVA TOURNAMENT 2012 ( the first five places in each tournament ) is under way !


Of course, I could transfer Stockfish into Java as I did with OliThink. Only problem is, that I will need at least one week full work, because of the excessive use of pointers and c++ specific stuff.
Back to top
View user's profile Send private message Send e-mail Visit poster's website
Ruxy Sylwyka



Joined: 21 Apr 2006
Posts: 1949
Location: IASI-ROMANIA

PostPosted: Tue Feb 28, 2012 11:36 am    Post subject: Re: Thank you a lot....but....... Reply to topic Reply with quote

OliverBr wrote:
Sylwy wrote:
OliverBr wrote:

-Furthermore the Java Version, which seems to be the best Java Engine available, has been revised.


Hello !

Thank you Mr. Olivier for the long avaited OliThink 5.3.1 J !
This your engine is for sure the best Java WB chess engine but only the place 3/4 - th ( together with Magnum 3.00 r20 JA) in the Java world. My very long SUPREME JAVA TOURNAMENT shows me CuckooCkess 1.12 ( by far) and Flux 2.2 like the best Java chess engines !

Thank you again !
SilvianR Wink

Here is the Java WB tournament (with OliThink 5.3.0 J):

http://talkchess.com/forum/viewtopic.php?topic_view=threads&p=446574&t=42087

Here is the Java UCI tournament:

http://talkchess.com/forum/viewtopic.php?topic_view=threads&p=451760&t=42087

My SUPREME JAVA TOURNAMENT 2012 ( the first five places in each tournament ) is under way !


Of course, I could transfer Stockfish into Java as I did with OliThink. Only problem is, that I will need at least one week full work, because of the excessive use of pointers and c++ specific stuff.


Hi Maestro Oliver !

That's ( but not only) an explanation why I love Java : all 30 chess engines I have are original works . The strenght isn't so important for me. I like a lot - for example Animats Chess rev23-a nice Australian Chess engine (Mr.Stuart Allen). Also I like to play myself with BremboCE , Carballo...................
Well , I know that CuckooChess has some nice features: a strong (and small) engine book- inntegrated in the .exe , endgame bitbases (also integrated). Flux is also a true phenomenon: a low speed and depth but a superb evaluation function ( made by Mr. Nanova).
It's a true passion for me to study every new Java chess engine. Even the unfinished ones ( like the Romanian Black&Right-very buggy , the unfinished Norvegian Mentally Challenged rev.1 , the impossible Italian PsychoChess 0.1 or the Duch move generator POS-1.2 (DeepBrutePOS)..........).

So , THANK YOU again for the new OliThink 5.3.1 J.

Have a nice day !
SilvianR
Wink
Back to top
View user's profile Send private message Send e-mail
Jim Ablett



Joined: 14 Jul 2006
Posts: 1251
Location: London, England

PostPosted: Tue Feb 28, 2012 9:09 pm    Post subject: Re: OliThink 5.3.1 released (Win, Mac, Linux and Java) Reply to topic Reply with quote

Marek Soszynski wrote:
It would be a fine thing to add analyse mode to the Linux compile.


Try my builds Smile Usual place.

& thanks for the update Oliver.

Jim.
_________________
http://jimablett.atwebpages.com/
Back to top
View user's profile Send private message Visit poster's website
Display posts from previous:   
Post new topic       TalkChess.com Forum Index -> Computer Chess Club: General Topics All times are GMT
Goto page 1, 2, 3  Next
Threaded
Page 1 of 3

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum




Powered by phpBB © 2001, 2005 phpBB Group
Enhanced with Moby Threads