ChessGUI development suspended.
Re: ChessGUI development suspended.
Hi, I'd like to know how to set up a match with engines of differing depth, for instance, I'd like to play a match of Rybka 4 at depth 5 against ProDeo 1.6 at Depth 10 (they seem close in strength, I'd like to know which one is best and games are played really fast), but I couldn't find such an option.
- Matthias Gemuh
- Posts: 295
- Joined: Wed Jun 09, 2010 2:48 pm
- Contact:
Re: ChessGUI development suspended.
I and HGM have preached many sermons against such "depth" matches.Ovyron wrote:Hi, I'd like to know how to set up a match with engines of differing depth, for instance, I'd like to play a match of Rybka 4 at depth 5 against ProDeo 1.6 at Depth 10 (they seem close in strength, I'd like to know which one is best and games are played really fast), but I couldn't find such an option.
That is why ChessGUI does not have that option.
Aided by engines, GMs can be very strong.
http://www.hylogic.de
http://www.hylogic.de
Re: ChessGUI development suspended.
I run games for fun, what is the argument against running games for fun?
Re: ChessGUI development suspended.
Nothing. The problem arises when there becomes a conflation of science/fun in reports of testing results.I run games for fun, what is the argument against running games for fun?
- Matthias Gemuh
- Posts: 295
- Joined: Wed Jun 09, 2010 2:48 pm
- Contact:
Re: ChessGUI development suspended.
When testing an engine against its own older version, the "depth" can sometimes be meaningful, depending on what was modified inside the engine. So I may some day implement the thing in ChessGUI.
Matthias.
Matthias.
Aided by engines, GMs can be very strong.
http://www.hylogic.de
http://www.hylogic.de
Re: ChessGUI development suspended.
I don't use the GUI to "test" the engine, I only like to watch the games, and it's great to finally see ProDeo playing at the same strength of Rybka, so I'll be looking forward to the implementation
- Matthias Gemuh
- Posts: 295
- Joined: Wed Jun 09, 2010 2:48 pm
- Contact:
Re: ChessGUI development suspended.
A single click now pulls all Arena 1.99 and Arena 2.01 engines into ChessGUI 0.195 and configures them for immediate use.
Every imported engine works without manual tweaking, but fine-tuning (e.g. setting number of threads) is a privilege reserved for the freak wink: .
Matthias.
Every imported engine works without manual tweaking, but fine-tuning (e.g. setting number of threads) is a privilege reserved for the freak wink: .
Matthias.
Aided by engines, GMs can be very strong.
http://www.hylogic.de
http://www.hylogic.de
- kingliveson
- Posts: 1388
- Joined: Thu Jun 10, 2010 1:22 am
- Real Name: Franklin Titus
- Location: 28°32'1"N 81°22'33"W
Re: ChessGUI development suspended.
Matthias, thanks for ChessGui .195 which seems to be working well with my huge book creation -- took a little over 5 hours to complete. One thing is there's no info on sort. Just want to make sure everything is working great before it's uploaded.
PAWN : Knight >> Bishop >> Rook >>Queen
- Matthias Gemuh
- Posts: 295
- Joined: Wed Jun 09, 2010 2:48 pm
- Contact:
Re: ChessGUI development suspended.
I shall give the user more control over the choice of winning book moves during games.kingliveson wrote:Matthias, thanks for ChessGui .195 which seems to be working well with my huge book creation -- took a little over 5 hours to complete. One thing is there's no info on sort. Just want to make sure everything is working great before it's uploaded.
Now the unchangeable formula is:
Code: Select all
if (nMoveCount > 40) nMoveCount = 4; else if (nMoveCount > 20) nMoveCount = 3; else nMoveCount = min(2, nMoveCount);
Else if there are more than 20 valid moves in book in current position, play any of best 3 moves.
Else if there are more than 1 valid moves in book in current position, play any of best 2 moves.
Else if there is only 1 valid move in book in current position, play it.
The decision taken can be seen in debug files.
Matthias.
Aided by engines, GMs can be very strong.
http://www.hylogic.de
http://www.hylogic.de
- kingliveson
- Posts: 1388
- Joined: Thu Jun 10, 2010 1:22 am
- Real Name: Franklin Titus
- Location: 28°32'1"N 81°22'33"W
Re: ChessGUI development suspended.
Book sorting has been put on hold for now. There was no eta, and didn't seem to be working, but we'll come back to that later. One issue am sure might bother others is text size not scaling right. 1920x1200 resolution and as you can see in the attached graphic, something is...well take a look. Thanks!
PAWN : Knight >> Bishop >> Rook >>Queen