Houdini 5 has been released
Moderators: hgm, Rebel, chrisw
-
- Posts: 1346
- Joined: Sat Apr 19, 2014 1:47 pm
Re: Houdini 5 has been released
In ippon rating list, Houdini barely below Stockfish 8. Too close to say for now.
-
- Posts: 3601
- Joined: Thu Jun 07, 2012 11:02 pm
Re: Houdini 5 has been released
Has anyone tried any chess960 games ?
-
- Posts: 273
- Joined: Wed Aug 24, 2016 9:49 pm
Re: Houdini 5 has been released
Additionally, didnt Houdart say that his dev version is about 30 elo stronger ?JJJ wrote:In ippon rating list, Houdini barely below Stockfish 8. Too close to say for now.
-
- Posts: 144
- Joined: Fri Sep 12, 2014 4:57 am
- Location: Randwick Australia
Re: Licence problem ...
Nay Lin Tun: When I click on your web page reference it provides a message 'Not Found The requested URL/H5.html was not found on this server' Pity; I was curious.
Allan
Allan
-
- Posts: 417
- Joined: Sat May 24, 2014 9:16 am
Re: Houdini 5 has been released
Good luck in the Superfinal Houdart with Houdini. Houdini 5 looks really impressive; I did not think that Houdini would beat Komodo so handily in the IPON tests. It should be a great 100 games in the Superfinal to watch. Best of luck.Houdini wrote:Houdini 5 has been released today.
More information on our web page http://www.cruxis.com/chess/houdini.htm .
Also in the updated User's Manual: http://www.cruxis.com/chess/manual/index.html .
Make sure to refresh the browser cache using F5 or Ctrl-F5 to get the most recent page.
Thank you for reading,
Robert
-
- Posts: 1471
- Joined: Tue Mar 16, 2010 12:00 am
Re: Houdini 5 has been released
As we've discussed via e-mail, there is an issue in some GUIs with Houdini 5 not correctly reading the Chess960 castling codes.Modern Times wrote:Has anyone tried any chess960 games ?
I will publish an updated Houdini 5.01 in a couple of days that will correct this, together with some other corrections.
Thank you for your patience with a rusty developer .
-
- Posts: 1471
- Joined: Tue Mar 16, 2010 12:00 am
Re: Houdini 5 has been released
Ingo, thank you for running the test.IWB wrote:It aint over till its over
Ingo
+179 Elo in the TOP 16 list is decently close to the 200 marketing Elo, I guess I can keep the value .
-
- Posts: 1471
- Joined: Tue Mar 16, 2010 12:00 am
Re: Houdini 5 has been released
It's coming for sure, what's another month after 3 years?Gurcan Uckardes wrote:What about the Android version? How long we must wait for Houdroid, the thing that never came...? Come on, seriously
-
- Posts: 215
- Joined: Sun Feb 24, 2008 2:08 am
Re: Houdini 5 has been released
Will there be an Ipad version?Houdini wrote:It's coming for sure, what's another month after 3 years?Gurcan Uckardes wrote:What about the Android version? How long we must wait for Houdroid, the thing that never came...? Come on, seriously
Thanks.
-
- Posts: 919
- Joined: Tue Nov 24, 2015 9:11 pm
- Location: upstate
Re: Houdini 5 has been released
Robert, while you're prepping the 5.01 update, may I ask you for a small feature that would take five minutes to code and should make a lot of ppl using Houdini for analysis happy? I mean a UCI option to hide fail-highs/lows.Houdini wrote:I will publish an updated Houdini 5.01 in a couple of days that will correct this, together with some other corrections.Modern Times wrote:Has anyone tried any chess960 games ?
Thank you for your patience with a rusty developer :).
In Stockfish it takes just two extra lines of code (marked with "+" below):
search.cpp:
Code: Select all
// When failing high/low give some update (without cluttering
// the UI) before a re-search.
if ( mainThread
&& multiPV == 1
&& (bestValue <= alpha || bestValue >= beta)
&& Time.elapsed() > 3000
+ && Options["Show Fail High and Fail Low"])
sync_cout << UCI::pv(rootPos, rootDepth, alpha, beta) << sync_endl;
Code: Select all
o["SyzygyProbeDepth"] << Option(1, 1, 100);
o["Syzygy50MoveRule"] << Option(true);
o["SyzygyProbeLimit"] << Option(6, 0, 6);
+ o["Show Fail High and Fail Low"] << Option(false);