Moderator: Andres Valverde
Uri Blass wrote:I wonder if there is a correct statistics about tablebases positions.
I do not like the files that I got from tony werten that seems to consider every possible symmetry about tablebases positions so I have only the number of tablebases position in the table and not the number of possible positions when I do not consider symmetric positions as the same.
In kpk it was easy to get the right number by assuming that the pawn is only in file a-d but in knk kbk it is not so easy and I see no simple calculation like dividing by 2 to get the correct number.
I want to debug my new fen function and my tablebases functions and I need statistics about all correct not broken tablebases positions (one of the reasons is to see if I reject only the positions when the king of the side not to move is under threat and another reason to see if I have no error in getting the score when I probe the tablebases).
Uri
Uri Blass wrote:yes and thanks in advance
I hope that the Edwards tablebases include correct information about the distance to mate and also about cases that the weaker side wins.
I remember that old Fritz that used some old tablebases(I think thompson's tablebases) had problems in some endgames because the tablebases included information only for cases that the strongest side wins.
Uri
Uri Blass wrote:I already verified that the 3 pieces are correct and I think that I have correct code to count position in the nalimov tablebases by simply count twice positions that both kings on the same main diagnol and later divide by 8.
timfoden wrote:Uri Blass wrote:I already verified that the 3 pieces are correct and I think that I have correct code to count position in the nalimov tablebases by simply count twice positions that both kings on the same main diagnol and later divide by 8.
This may not be the case if all the pieces are on the main diagonal.
Uri Blass wrote:for KPK I simply need to count all positions and divide by 2
I am not sure if it solves the general problem for more pieces at this monent.
Dieter B?r?ner wrote:Uri Blass wrote:for KPK I simply need to count all positions and divide by 2
I am not sure if it solves the general problem for more pieces at this monent.
For the TBs with pawns, this should be correct in the general case. Don't forget to count positions with ep possibility.
What you will not be able to count easily is the broken positions inside the TBs - but that is not interesting anyway. Positions with triple check (and other illegal positions) are inside the TBs and have distance to mate or draw.
Cheers,
Dieter
Dieter B?r?ner wrote:BTW, Any idea for an indexing scheme, how this could be avoided (two positions for Rd2 vs. Rb4)? I don't see anything.
Cheers,
Dieter
Dieter B?r?ner wrote:>Here is some statistics for
>KQR vs KQ(stronger side to move) at the bottom of this post.
>I hoped to find mate in 70 that I could translate without doubt to a draw
>because after conversion it is mate in 19 or shorter mate but
>unfortunately the shorter mate is mate in 67 that still not clear that the
>stronger side does not win because the winning line may be
There are many mates in Nalimov KQRKQ that are really draw. See my statistics, that is distance to conversion at the end of the post (actually to conversion or pawn move, but that is the same here). It also gives the maximum positions.
>I am not going to repeat the process for other tablebases because every
>5 piece tablebases takes hours.
Which process? Just to generate the statistics? If it took hours, your program is very inefficient. My program just generated kqrkq in 20 minutes. This included a final scan through all postions to generate the statistics. Statistics alone should not take more than a couple of minutes.
>If I can get at least table of the maximal distance to mate in every
>configuration of pieces then it can be productive.
I thought, you got the tbs files? Then you have the max distances. If you don't have all tbs files, I think you can download them from Dann. I also have all 3/4/5 men tbs and most 6men tbs, and could send them by mail.
>Another productive thing is to get table of the maximal distance to mate
>for every configuration of pieces and pawn structure in case that the
>tablebases include pawns.
>Is it possible to get the data from the nalimov tablebases without doing
>a loop on all possible positions?
For the pawn structure - no. You can decompress the tables with datacomp.exe and just read the bytes inside the file. I don't know the exact translation from the byte to mate in at the moment. But you would find out easily by comparing the counts for all byte values with a tbs file.
Regards,
Dieter
for (sq1=0; sq1<64; sq1++)
for (sq2=0; sq2<64; sq2++)
for (sq3=0; sq3<64; sq3++)
for (sq4=0; sq4<64; sq4++)
for (sq5=0; sq5<64; sq5++)
{
/* setup the five pieces on sq1-sq5,
probe the position in the TB
and collect statistics */
}
Dieter B?r?ner wrote:>>BTW, Any idea for an indexing scheme, how this could be avoided (two
>>positions for Rd2 vs. Rb4)? I don't see anything.
>Well, I don't see any reason why it wouldn't be possible to use 3 pieces
>for the initial symmetry, in the same way as 2 kings are used. Say 2
>kings + 1 piece. It would just be more difficult to calculate.
Ok, yes. I meant without the use of rather large lookup tables.
timfoden wrote:Well, I think that this is still posible (no large lookup tables).
Return to Programming and Technical Discussions
Users browsing this forum: No registered users and 27 guests