Search found 158 matches
- Sun Jun 11, 2017 10:49 pm
- Forum: Computer Chess Club: Programming and Technical Discussions
- Topic: When should I consider parallel search ?
- Replies: 34
- Views: 7135
Re: When should I consider parallel search ?
Hej Patrik! I would not say that you missed a single thing. I would say that you are a genius that could solve so many Rubriks' cubes at once. SMP when it is at its best :) Yes, I call it thinking outside the cube :) PS Jag tror att du skulle förbättra din automatiska Texel tuning om du ändrade til...
- Sun Jun 11, 2017 6:54 pm
- Forum: Computer Chess Club: Programming and Technical Discussions
- Topic: When should I consider parallel search ?
- Replies: 34
- Views: 7135
Re: When should I consider parallel search ?
flok wrote:it did not work
Imagine you give me a Rubik's cube and ask me to solve it. I finish it in only 15 seconds and this is what it looks like:flok wrote:I was wondering what aspect I missed

Now, what aspect of solving Rubik's cube would you say I missed?
- Tue Jun 06, 2017 11:45 am
- Forum: Computer Chess Club: General Topics
- Topic: Anyone know how to adjust the clock width in Arena?
- Replies: 1
- Views: 668
Re: Anyone know how to adjust the clock width in Arena?
The names are shown below the clock as well. I think those boxes on the left and right are supposed to contain the engines' logos.
- Mon May 22, 2017 11:56 pm
- Forum: Computer Chess Club: General Topics
- Topic: Another attempt at comparing Evals ELO-wise
- Replies: 58
- Views: 11523
Re: Another attempt at comparing Evals ELO-wise
Let's just be glad his last name wasn't Oberknezsevics.Laskos wrote:Well, I understand that Arpad Elo is a HungarianSzG wrote:Please! Elo!
- Sat May 20, 2017 11:48 pm
- Forum: Computer Chess Club: General Topics
- Topic: Does anyone have a very old AMD machine ?
- Replies: 29
- Views: 6309
Re: Does anyone have a very old AMD machine ?
Thanks Colin, very useful ! So 43 seconds for that Crafty bench at 2.5Ghz. So if that same CPU was running at 2.4Ghz it would probably be 45 secs. And 7,624 ms for SF8, which at 2.4Ghz would be around 7,300 ms. That can't be right. I guess you flipped the 25/24 part of the equation on the last one.
- Thu Apr 06, 2017 10:39 am
- Forum: Computer Chess Club: Programming and Technical Discussions
- Topic: #define X (MinGW)
- Replies: 36
- Views: 7652
Re: #define X (MinGW)
With regex you can do '\bX\b' and it will ignore X's having other letters before or after it. Most editors have an option 'match whole word only', which does the same thing.hgm wrote:global substitution isn't an option, because the X and Y also frequently occur inside may other variable and macro names.
- Sat Apr 01, 2017 9:21 pm
- Forum: Computer Chess Club: General Topics
- Topic: A modern Turk
- Replies: 2
- Views: 1276
Re: A modern Turk
The game in the video is the one Napoleon played against the Turk.
- Thu Mar 23, 2017 11:25 pm
- Forum: Computer Chess Club: Programming and Technical Discussions
- Topic: PSQT for move ordering ?
- Replies: 4
- Views: 1469
Re: PSQT for move ordering ?
I don't know why they should be different. That example with the knight is pretty close to typical values for a normal psqt, I think.
- Thu Mar 23, 2017 11:15 pm
- Forum: Computer Chess Club: Programming and Technical Discussions
- Topic: PSQT for move ordering ?
- Replies: 4
- Views: 1469
Re: PSQT for move ordering ?
Where can I find them Well, you have to write the code. It's not something you find in a box in the garage. Do you mean what values to use? I use the same tables as in the evaluation function. psq[piecetype][to_sq] - psq[piecetype][from_sq] That's it. I use it only for moves with no history score. ...
- Thu Mar 09, 2017 1:38 pm
- Forum: Computer Chess Club: Programming and Technical Discussions
- Topic: Game time in fraction of minutes in Arena.
- Replies: 8
- Views: 2316
Re: Game time in fraction of minutes in Arena.
You should probably use a small time increment to avoid time losses, though. Maybe 100 ms or so.