How to implement KPK ?

Discussion of chess software programming and technical issues.

Moderators: hgm, Rebel, chrisw

Chan Rasjid
Posts: 588
Joined: Thu Mar 09, 2006 4:47 pm
Location: Singapore

Re: How to implement KPK ?

Post by Chan Rasjid »

hgm wrote:Why not just use the bitbase? It is only 64KB.
Because there is no free lunch :D

Though magic bitboard move generation should be the best, there is no codes that is in the public domain. I am still using my rotated birboard.

Same for bitbase.

Rasjid.
User avatar
hgm
Posts: 27788
Joined: Fri Mar 10, 2006 10:06 am
Location: Amsterdam
Full name: H G Muller

Re: How to implement KPK ?

Post by hgm »

You could write your own code to generate it, and put it in the public domain. :idea:

That seems simpler, and much less bug-prone then the code you are trying to write now.

Let me make a first attempt. (Completely untested...)

Code: Select all

/* Public-domain KPK bitbase code by H.G. Muller */

#define WTM 0
#define BTM 1

char dtc[2][64][64][64]; // 512 KB
char bitbase[2*62*64*6];

char steps[] = {1, -1, 16, -16, 15, -15, 17, -17};
void
Init ()
{
  int wk, bk, p;
  for&#40;wk=0; wk<64; wk++) for&#40;bk=0; bk<64; bk++) for&#40;p=0; p<64; p++) &#123;
    if&#40;bk == wk&#41; dtc&#91;BTM&#93;&#91;wk&#93;&#91;p&#93;&#91;bk&#93; = 1, dtc&#91;WTM&#93;&#91;wk&#93;&#91;p&#93;&#91;bk&#93; = -1; else
    if&#40;wk == p&#41; dtc&#91;BTM&#93;&#91;wk&#93;&#91;p&#93;&#91;bk&#93; = dtc&#91;WTM&#93;&#91;wk&#93;&#91;p&#93;&#91;bk&#93; = -1; else
    if&#40;bk ==  p&#41; dtc&#91;BTM&#93;&#91;wk&#93;&#91;p&#93;&#91;bk&#93; = 1; else // with WTM black just captured P
    if&#40;p >= 56&#41; dtc&#91;WTM&#93;&#91;wk&#93;&#91;p&#93;&#91;bk&#93; = 1; // promoted and on move = win
  &#125;
&#125;

void
BlackPass ()
&#123;
  int wk, bk, p, d;
  for&#40;wk=0; wk<64; wk++) for&#40;bk=0; bk<64; bk++) for&#40;p=0; p<64; p++) &#123;
    int O88 = &#40;bk & 070&#41; + bk; // 0x88 square number
    if&#40;dtc&#91;BTM&#93;&#91;wk&#93;&#91;p&#93;&#91;bk&#93;) continue; // already decided
    dtc&#91;BTM&#93;&#91;wk&#93;&#91;p&#93;&#91;bk&#93; = 1; // assume lost, if no escape will be found
    for&#40;d=0; d<8; d++) &#123;
      int to = O88 + steps&#91;d&#93;;
      if&#40;to & 0x88&#41; continue; // off board
      if&#40;dtc&#91;WTM&#93;&#91;wk&#93;&#91;p&#93;&#91;to&#93; <= 0&#41; &#123; dtc&#91;BTM&#93;&#91;wk&#93;&#91;p&#93;&#91;bk&#93; = 0; break; &#125; // escape
    &#125;
  &#125;
&#125;

void
WhitePass ()
&#123;
  int wk, bk, p, d;
  for&#40;wk=0; wk<64; wk++) for&#40;bk=0; bk<64; bk++) for&#40;p=0; p<64; p++) &#123;
    int O88 = &#40;wk & 070&#41; + wk; // 0x88 square number
    if&#40;dtc&#91;WTM&#93;&#91;wk&#93;&#91;p&#93;&#91;bk&#93;) continue; // already decided
    if&#40;bk != p&#41; &#123; // pawn not captured, so can move
      if&#40;p+8 != bk && dtc&#91;BTM&#93;&#91;wk&#93;&#91;p+8&#93;&#91;bk&#93; > 0&#41;  &#123; dtc&#91;WTM&#93;&#91;wk&#93;&#91;p&#93;&#91;bk&#93; = 1; continue; &#125;
      if&#40;p+7 == bk && &#40;p & 7&#41; != 0&#41;  &#123; dtc&#91;WTM&#93;&#91;wk&#93;&#91;p&#93;&#91;bk&#93; = 1; continue; &#125;
      if&#40;p+9 == bk && &#40;p & 7&#41; != 7&#41;  &#123; dtc&#91;WTM&#93;&#91;wk&#93;&#91;p&#93;&#91;bk&#93; = 1; continue; &#125;
    &#125;
    for&#40;d=0; d<8; d++) &#123;
      int to = O88 + steps&#91;d&#93;;
      if&#40;to & 0x88&#41; continue; // off board
      if&#40;dtc&#91;BTM&#93;&#91;to&#93;&#91;p&#93;&#91;bk&#93; > 0&#41; &#123; dtc&#91;WTM&#93;&#91;wk&#93;&#91;p&#93;&#91;bk&#93; = 1; break; &#125;
    &#125;
  &#125;
&#125;

void
Pack ()
&#123;
  int wk, bk, p, i;
  for&#40;wk=0; wk<64; wk++) for&#40;bk=0; bk<64; bk++) for&#40;p=8; p<56; p++) &#123;
    int index = &#40;bk >> 3&#41; + 8*wk + 8*64*&#40;p-8&#41;;
    bitbase&#91;2*index&#93; |= &#40;dtc&#91;WTM&#93;&#91;wk&#93;&#91;p&#93;&#91;bk&#93; > 0&#41; << &#40;bk & 7&#41;;
    bitbase&#91;2*index+1&#93; |= &#40;dtc&#91;BTM&#93;&#91;wk&#93;&#91;p&#93;&#91;bk&#93; > 0&#41; << &#40;bk & 7&#41;;
  &#125;
&#125;

void
Build ()
&#123;
  int i;
  Init&#40;);
  for&#40;i=0; i<100; i++) // won't take more than 100 moves
    WhitePass&#40;), BlackPass&#40;);
  Pack&#40;);
&#125;
User avatar
hgm
Posts: 27788
Joined: Fri Mar 10, 2006 10:06 am
Location: Amsterdam
Full name: H G Muller

Re: How to implement KPK ?

Post by hgm »

The white pass and black pass look very similar, so perhaps it is more elegant to merge them into one routine:

Code: Select all

void
Pass &#40;int stm&#41;
&#123;
  int wk, bk, p, d;
  for&#40;wk=0; wk<64; wk++) for&#40;bk=0; bk<64; bk++) for&#40;p=0; p<64; p++) &#123;
    int k = stm == WTM ? wk &#58; bk
    int O88 = &#40;k & 070&#41; + k; // 0x88 square number of King
    if&#40;dtc&#91;stm&#93;&#91;wk&#93;&#91;p&#93;&#91;bk&#93;) continue; // already decided
    dtc&#91;stm&#93;&#91;wk&#93;&#91;p&#93;&#91;bk&#93; = stm;  // assume lost if btm, undecided if wtm
    if&#40;bk != p && stm == WTM&#41; &#123; // pawn not captured, so can move
      if&#40;p+8 != bk && dtc&#91;BTM&#93;&#91;wk&#93;&#91;p+8&#93;&#91;bk&#93; > 0&#41;  &#123; dtc&#91;WTM&#93;&#91;wk&#93;&#91;p&#93;&#91;bk&#93; = 1; continue; &#125;
      if&#40;p+7 == bk && &#40;p & 7&#41; != 0&#41;  &#123; dtc&#91;WTM&#93;&#91;wk&#93;&#91;p&#93;&#91;bk&#93; = 1; continue; &#125;
      if&#40;p+9 == bk && &#40;p & 7&#41; != 7&#41;  &#123; dtc&#91;WTM&#93;&#91;wk&#93;&#91;p&#93;&#91;bk&#93; = 1; continue; &#125;
    &#125;
    for&#40;d=0; d<8; d++) &#123;
      int to = O88 + steps&#91;d&#93;;
      if&#40;to & 0x88&#41; continue; // off board
      if&#40;stm == WTM ? dtc&#91;BTM&#93;&#91;to&#93;&#91;p&#93;&#91;bk&#93; > 0 &#58; dtc&#91;WTM&#93;&#91;wk&#93;&#91;p&#93;&#91;to&#93; > 0&#41;
      &#123; dtc&#91;stm&#93;&#91;wk&#93;&#91;p&#93;&#91;bk&#93; = !stm; break; &#125;
    &#125;
  &#125;
&#125;

void
Build ()
&#123;
  int i;
  Init&#40;);
  for&#40;i=0; i<100; i++) // won't take more than 100 moves
    Pass&#40;WTM&#41;, Pass&#40;BTM&#41;;
  Pack&#40;);
&#125;
I guess the bk == p positions should be set to -1 in Init(), and not to 1; the Pass() code does not ever test the state of the daughter position in dtc when it captures the black King with a Pawn, but just assigns a win. So the only testing of this position that ever is important is when the black King stepped onto the Pawn, whether on the previous ply or longer before that. The btm cases have to be marked as draw, to prevent black being forced to 'step off' the Pawn again by zugzwang when white does not have a King move to capture the black King, and tries another one.
User avatar
lucasart
Posts: 3232
Joined: Mon May 31, 2010 1:29 pm
Full name: lucasart

Re: How to implement KPK ?

Post by lucasart »

hgm wrote:Why not just use the bitbase? It is only 64KB.
mine is 24 KB: 64*64*24*2 = 24576 * 8 bits = 24 KB. But it's not public domain and never will be: GPL stays GPL, that's the whole point of it.
Theory and practice sometimes clash. And when that happens, theory loses. Every single time.
User avatar
hgm
Posts: 27788
Joined: Fri Mar 10, 2006 10:06 am
Location: Amsterdam
Full name: H G Muller

Re: How to implement KPK ?

Post by hgm »

Ah, you make use of left-right symmetry. Nice idea. I now did that too, by adding a >>1 to the Pawn square during packing, and incrementing it in steps of 2. This should throw away all positions where the Pawn is on an odd file. (A bit wasteful, as the generation still uses the full set of positions, but the assumption was this would be infinitely fast anyway, or that speed would not be important because you save it on a file.)

The following code is tested in the sense that it compiles (there was a missing semicolon), and runs without segfaulting (I had forgotten to convert the 0x88 to-square back to a normal square index.)

Code: Select all

/* Public-domain KPK bitbase code by H.G. Muller */

#define WTM 0
#define BTM 1

char dtc&#91;2&#93;&#91;64&#93;&#91;64&#93;&#91;64&#93;; // 512 KB
char bitbase&#91;2*64*64*3&#93;;

char steps&#91;&#93; = &#123;1, -1, 16, -16, 15, -15, 17, -17&#125;;

void
Init ()
&#123;
  int wk, bk, p;
  for&#40;wk=0; wk<64; wk++) for&#40;bk=0; bk<64; bk++) for&#40;p=0; p<64; p++) &#123;
    if&#40;bk == wk&#41; dtc&#91;BTM&#93;&#91;wk&#93;&#91;p&#93;&#91;bk&#93; = 1, dtc&#91;WTM&#93;&#91;wk&#93;&#91;p&#93;&#91;bk&#93; = -1; else
    if&#40;wk == p&#41; dtc&#91;BTM&#93;&#91;wk&#93;&#91;p&#93;&#91;bk&#93; = dtc&#91;WTM&#93;&#91;wk&#93;&#91;p&#93;&#91;bk&#93; = -1; else
    if&#40;bk ==  p&#41; dtc&#91;BTM&#93;&#91;wk&#93;&#91;p&#93;&#91;bk&#93; = -1; else // with WTM black just captured P
    if&#40;p >= 56&#41; dtc&#91;WTM&#93;&#91;wk&#93;&#91;p&#93;&#91;bk&#93; = 1; // promoted and on move = win
  &#125;
&#125;

void
Pass &#40;int stm&#41;
&#123;
  int wk, bk, p, d;
  for&#40;wk=0; wk<64; wk++) for&#40;bk=0; bk<64; bk++) for&#40;p=0; p<64; p++) &#123;
    int k = stm == WTM ? wk &#58; bk;
    int O88 = &#40;k & 070&#41; + k; // 0x88 square number of King
    if&#40;dtc&#91;stm&#93;&#91;wk&#93;&#91;p&#93;&#91;bk&#93;) continue; // already decided
    dtc&#91;stm&#93;&#91;wk&#93;&#91;p&#93;&#91;bk&#93; = stm;  // assume lost if btm, undecided if wtm
    if&#40;bk != p && stm == WTM&#41; &#123; // pawn not captured, so can move
      if&#40;p+8 != bk && dtc&#91;BTM&#93;&#91;wk&#93;&#91;p+8&#93;&#91;bk&#93; > 0&#41;  &#123; dtc&#91;WTM&#93;&#91;wk&#93;&#91;p&#93;&#91;bk&#93; = 1; continue; &#125;
      if&#40;p+7 == bk && &#40;p & 7&#41; != 0&#41;  &#123; dtc&#91;WTM&#93;&#91;wk&#93;&#91;p&#93;&#91;bk&#93; = 1; continue; &#125;
      if&#40;p+9 == bk && &#40;p & 7&#41; != 7&#41;  &#123; dtc&#91;WTM&#93;&#91;wk&#93;&#91;p&#93;&#91;bk&#93; = 1; continue; &#125;
    &#125;
    for&#40;d=0; d<8; d++) &#123;
      int to = O88 + steps&#91;d&#93;;
      if&#40;to & 0x88&#41; continue; // off board
      to -= to>>1 & 070;
      if&#40;stm == WTM ? dtc&#91;BTM&#93;&#91;to&#93;&#91;p&#93;&#91;bk&#93; > 0 &#58; dtc&#91;WTM&#93;&#91;wk&#93;&#91;p&#93;&#91;to&#93; > 0&#41;
      &#123; dtc&#91;stm&#93;&#91;wk&#93;&#91;p&#93;&#91;bk&#93; = !stm; break; &#125;
    &#125;
  &#125;
&#125;

void
Pack ()
&#123;
  int wk, bk, p, i;
  for&#40;wk=0; wk<64; wk++) for&#40;bk=0; bk<64; bk++) for&#40;p=8; p<56; p+=2&#41; &#123;
    int index = &#40;bk >> 3&#41; + 8*wk + 8*64*&#40;p-8>>1&#41;;
    bitbase&#91;2*index&#93; |= &#40;dtc&#91;WTM&#93;&#91;wk&#93;&#91;p&#93;&#91;bk&#93; > 0&#41; << &#40;bk & 7&#41;;
    bitbase&#91;2*index+1&#93; |= &#40;dtc&#91;BTM&#93;&#91;wk&#93;&#91;p&#93;&#91;bk&#93; > 0&#41; << &#40;bk & 7&#41;;
  &#125;
&#125;

void
Build ()
&#123;
  int i;
  Init&#40;);
  for&#40;i=0; i<100; i++) // won't take more than 100 moves
    Pass&#40;WTM&#41;, Pass&#40;BTM&#41;;
  Pack&#40;);
&#125;
When I run it, it prints

Code: Select all

white to move&#58; 211980+, 23085=, 27079-
black to move&#58; 140386+, 113694=, 8064-
where = and - together count the non-won positions (which are not properly distinguished by the algorithm), and + the number of listed wins.

[Edit] O, I guess it still needs a stalemate correction.
User avatar
lucasart
Posts: 3232
Joined: Mon May 31, 2010 1:29 pm
Full name: lucasart

Re: How to implement KPK ?

Post by lucasart »

hgm wrote:Ah, you make use of left-right symmetry. Nice idea.
This is no idea of mine. It's a great classic, and rather trivial. Many have done it before me. Some might have done it even before I was born :wink:
Theory and practice sometimes clash. And when that happens, theory loses. Every single time.
Chan Rasjid
Posts: 588
Joined: Thu Mar 09, 2006 4:47 pm
Location: Singapore

Re: How to implement KPK ?

Post by Chan Rasjid »

hgm wrote:You could write your own code to generate it, and put it in the public domain. :idea:

That seems simpler, and much less bug-prone then the code you are trying to write now.

Let me make a first attempt. (Completely untested...)

Code: Select all

/* Public-domain KPK bitbase code by H.G. Muller */

#define WTM 0
#define BTM 1

char dtc&#91;2&#93;&#91;64&#93;&#91;64&#93;&#91;64&#93;; // 512 KB
char bitbase&#91;2*62*64*6&#93;;

char steps&#91;&#93; = &#123;1, -1, 16, -16, 15, -15, 17, -17&#125;;
void
Init ()
&#123;
  int wk, bk, p;
  for&#40;wk=0; wk<64; wk++) for&#40;bk=0; bk<64; bk++) for&#40;p=0; p<64; p++) &#123;
    if&#40;bk == wk&#41; dtc&#91;BTM&#93;&#91;wk&#93;&#91;p&#93;&#91;bk&#93; = 1, dtc&#91;WTM&#93;&#91;wk&#93;&#91;p&#93;&#91;bk&#93; = -1; else
    if&#40;wk == p&#41; dtc&#91;BTM&#93;&#91;wk&#93;&#91;p&#93;&#91;bk&#93; = dtc&#91;WTM&#93;&#91;wk&#93;&#91;p&#93;&#91;bk&#93; = -1; else
    if&#40;bk ==  p&#41; dtc&#91;BTM&#93;&#91;wk&#93;&#91;p&#93;&#91;bk&#93; = 1; else // with WTM black just captured P
    if&#40;p >= 56&#41; dtc&#91;WTM&#93;&#91;wk&#93;&#91;p&#93;&#91;bk&#93; = 1; // promoted and on move = win
  &#125;
&#125;

void
BlackPass ()
&#123;
  int wk, bk, p, d;
  for&#40;wk=0; wk<64; wk++) for&#40;bk=0; bk<64; bk++) for&#40;p=0; p<64; p++) &#123;
    int O88 = &#40;bk & 070&#41; + bk; // 0x88 square number
    if&#40;dtc&#91;BTM&#93;&#91;wk&#93;&#91;p&#93;&#91;bk&#93;) continue; // already decided
    dtc&#91;BTM&#93;&#91;wk&#93;&#91;p&#93;&#91;bk&#93; = 1; // assume lost, if no escape will be found
    for&#40;d=0; d<8; d++) &#123;
      int to = O88 + steps&#91;d&#93;;
      if&#40;to & 0x88&#41; continue; // off board
      if&#40;dtc&#91;WTM&#93;&#91;wk&#93;&#91;p&#93;&#91;to&#93; <= 0&#41; &#123; dtc&#91;BTM&#93;&#91;wk&#93;&#91;p&#93;&#91;bk&#93; = 0; break; &#125; // escape
    &#125;
  &#125;
&#125;

void
WhitePass ()
&#123;
  int wk, bk, p, d;
  for&#40;wk=0; wk<64; wk++) for&#40;bk=0; bk<64; bk++) for&#40;p=0; p<64; p++) &#123;
    int O88 = &#40;wk & 070&#41; + wk; // 0x88 square number
    if&#40;dtc&#91;WTM&#93;&#91;wk&#93;&#91;p&#93;&#91;bk&#93;) continue; // already decided
    if&#40;bk != p&#41; &#123; // pawn not captured, so can move
      if&#40;p+8 != bk && dtc&#91;BTM&#93;&#91;wk&#93;&#91;p+8&#93;&#91;bk&#93; > 0&#41;  &#123; dtc&#91;WTM&#93;&#91;wk&#93;&#91;p&#93;&#91;bk&#93; = 1; continue; &#125;
      if&#40;p+7 == bk && &#40;p & 7&#41; != 0&#41;  &#123; dtc&#91;WTM&#93;&#91;wk&#93;&#91;p&#93;&#91;bk&#93; = 1; continue; &#125;
      if&#40;p+9 == bk && &#40;p & 7&#41; != 7&#41;  &#123; dtc&#91;WTM&#93;&#91;wk&#93;&#91;p&#93;&#91;bk&#93; = 1; continue; &#125;
    &#125;
    for&#40;d=0; d<8; d++) &#123;
      int to = O88 + steps&#91;d&#93;;
      if&#40;to & 0x88&#41; continue; // off board
      if&#40;dtc&#91;BTM&#93;&#91;to&#93;&#91;p&#93;&#91;bk&#93; > 0&#41; &#123; dtc&#91;WTM&#93;&#91;wk&#93;&#91;p&#93;&#91;bk&#93; = 1; break; &#125;
    &#125;
  &#125;
&#125;

void
Pack ()
&#123;
  int wk, bk, p, i;
  for&#40;wk=0; wk<64; wk++) for&#40;bk=0; bk<64; bk++) for&#40;p=8; p<56; p++) &#123;
    int index = &#40;bk >> 3&#41; + 8*wk + 8*64*&#40;p-8&#41;;
    bitbase&#91;2*index&#93; |= &#40;dtc&#91;WTM&#93;&#91;wk&#93;&#91;p&#93;&#91;bk&#93; > 0&#41; << &#40;bk & 7&#41;;
    bitbase&#91;2*index+1&#93; |= &#40;dtc&#91;BTM&#93;&#91;wk&#93;&#91;p&#93;&#91;bk&#93; > 0&#41; << &#40;bk & 7&#41;;
  &#125;
&#125;

void
Build ()
&#123;
  int i;
  Init&#40;);
  for&#40;i=0; i<100; i++) // won't take more than 100 moves
    WhitePass&#40;), BlackPass&#40;);
  Pack&#40;);
&#125;
As Deng Xiaopeng said: "It does not matter if a cat is red or black as long as it catches the mouse" - but don't take too long.

As Dr. Robert Hyatt said: "In my forty years in computer chess, I have yet to see a game that played to a KPK ending." - but there is always a tomorrow.

As Herr Muller said: "I have already put the KPK bitbase generator in the public domain. If you don't understand simple retrograde analysis starting from the promotion squares and about the concept of un-make, you should not be in chess programming. Go! Join a choir and make some sound!" - don't be too certain that that someone would't be signed up by Sony later.

As another said:"If your program can't outplay Houdini 5, don't give the excuse that it is because you have no KPK bitbase or that you discovered a bug in your KPK routine. Just say - ' Robert is really a genius'"

It does not matter very much if I use the KPK bitbase. If there is a bug in my search, then it will still not be able to play a KPK ending.

Best Regards,
Rasjid.
User avatar
hgm
Posts: 27788
Joined: Fri Mar 10, 2006 10:06 am
Location: Amsterdam
Full name: H G Muller

Re: How to implement KPK ?

Post by hgm »

I see KPK quite often.

Anyway, to further the public-domain cause, the following code actually runs, and prints some numbers that seem to make sense (like the number of stalemates, which matches what I calculated by hand). I even put in the initial double-push, which is important for rule-of-squares situations.

Btw, this is the dumb algorithm, which does not use any unmoves. It just attempts regular moving from all not-yet-decided positions, to look for a move to a won position for white, and to a non-lost position for black.

Code: Select all

/* Public-domain KPK bitbase code by H.G. Muller */

#define WTM 0
#define BTM 1

char dtc&#91;2&#93;&#91;64&#93;&#91;64&#93;&#91;64&#93;; // 512 KB
char bitbase&#91;2*64*64*3&#93;;

char steps&#91;&#93; = &#123;1, -1, 16, -16, 15, -15, 17, -17&#125;; // 0x88 King steps

void
Init ()
&#123; /* 3 = bK captured, 2 = can capture bK, 1 = won, 0 = undecided, -1 = broken or wK captured */
  int wk, bk, p;
  for&#40;wk=0; wk<64; wk++) for&#40;p=0; p<64; p++) for&#40;bk=0; bk<64; bk++) &#123;
    if&#40;bk == wk&#41; dtc&#91;BTM&#93;&#91;wk&#93;&#91;p&#93;&#91;bk&#93; = 3, dtc&#91;WTM&#93;&#91;wk&#93;&#91;p&#93;&#91;bk&#93; = -1; else
    if&#40;wk == p&#41; dtc&#91;BTM&#93;&#91;wk&#93;&#91;p&#93;&#91;bk&#93; = dtc&#91;WTM&#93;&#91;wk&#93;&#91;p&#93;&#91;bk&#93; = -1; else
    if&#40;bk ==  p&#41; dtc&#91;BTM&#93;&#91;wk&#93;&#91;p&#93;&#91;bk&#93; = -3; else // with WTM black just captured P
    if&#40;p >= 56&#41; dtc&#91;WTM&#93;&#91;wk&#93;&#91;p&#93;&#91;bk&#93; = 1; // promoted and on move = win
  &#125;
&#125;

void
Pass &#40;int stm, int first, int def, int esc&#41;
&#123;
  int wk, bk, p, d;
  for&#40;wk=0; wk<64; wk++) for&#40;p=0; p<64; p++) for&#40;bk=0; bk<64; bk++) &#123;
    int k = stm == WTM ? wk &#58; bk;
    int O88 = &#40;k & 070&#41; + k; // 0x88 square number of King
    if&#40;dtc&#91;stm&#93;&#91;wk&#93;&#91;p&#93;&#91;bk&#93;) continue; // already decided
    dtc&#91;stm&#93;&#91;wk&#93;&#91;p&#93;&#91;bk&#93; = def;  // assume lost if btm, undecided if wtm
    if&#40;bk != p && stm == WTM&#41; &#123; // pawn not captured, so can move
      if&#40;p+8 != bk && &#40;dtc&#91;BTM&#93;&#91;wk&#93;&#91;p+8 &#93;&#91;bk&#93; > first || p < 16 &&
         p+16 != bk && dtc&#91;BTM&#93;&#91;wk&#93;&#91;p+16&#93;&#91;bk&#93; > first&#41;)  &#123; dtc&#91;WTM&#93;&#91;wk&#93;&#91;p&#93;&#91;bk&#93; = esc; continue; &#125;
      if&#40;p+7 == bk && &#40;p & 7&#41; != 0&#41;  &#123; dtc&#91;WTM&#93;&#91;wk&#93;&#91;p&#93;&#91;bk&#93; = 2; continue; &#125;
      if&#40;p+9 == bk && &#40;p & 7&#41; != 7&#41;  &#123; dtc&#91;WTM&#93;&#91;wk&#93;&#91;p&#93;&#91;bk&#93; = 2; continue; &#125;
    &#125;
    for&#40;d=0; d<8; d++) &#123;
      int to = O88 + steps&#91;d&#93;;
      if&#40;to & 0x88&#41; continue; // off board
      to -= to>>1 & 070;
      if&#40;stm == WTM ? dtc&#91;BTM&#93;&#91;to&#93;&#91;p&#93;&#91;bk&#93; > first &#58; dtc&#91;WTM&#93;&#91;wk&#93;&#91;p&#93;&#91;to&#93; <= first&#41;
      &#123; dtc&#91;stm&#93;&#91;wk&#93;&#91;p&#93;&#91;bk&#93; = esc; break; &#125;
    &#125;
  &#125;
&#125;

void
Pack ()
&#123;
  int wk, bk, p, i;
  for&#40;wk=0; wk<64; wk++) for&#40;p=8; p<56; p+=2&#41; for&#40;bk=0; bk<64; bk++) &#123; // calculate probe address and bit
    int index = &#40;bk >> 3&#41; + 8*wk + 8*64*&#40;p-8>>1&#41;;
    bitbase&#91;2*index&#93; |= &#40;dtc&#91;WTM&#93;&#91;wk&#93;&#91;p&#93;&#91;bk&#93; > 0&#41; << &#40;bk & 7&#41;;
    bitbase&#91;2*index+1&#93; |= &#40;dtc&#91;BTM&#93;&#91;wk&#93;&#91;p&#93;&#91;bk&#93; > 0&#41; << &#40;bk & 7&#41;;
  &#125;
&#125;

void
Build ()
&#123;
  int i;
  Init&#40;);
  Pass&#40;WTM, 2, 0, 2&#41;; Pass&#40;BTM, 1, -2, 0&#41;; // calculate King captures and 

stalemates
  for&#40;i=0; i<25; i++) // won't take more than 25 moves
    Pass&#40;WTM, 0, 0, 1&#41;, Pass&#40;BTM, 0, 1, 0&#41;;
  Pack&#40;);
&#125;
Printing the stats of the positions with the Pawn on rank 2-7 afterwards gives:

Code: Select all

white to move&#58; 124960+, 41044=, 6096-, 0 stalemate, 24508 K-capture
black to move&#58; 97604+, 89866=, 6066-, 18 stalemate, 0 K-capture
where + means won to white, = means draw, - illegal by white's fault or black stalemated. (White stalemates are not separately identified, they count with the other draws.)
User avatar
hgm
Posts: 27788
Joined: Fri Mar 10, 2006 10:06 am
Location: Amsterdam
Full name: H G Muller

Re: How to implement KPK ?

Post by hgm »

From probing a few hundred randomly generated positions I could not find an error. So it seems the code is OK.
Chan Rasjid
Posts: 588
Joined: Thu Mar 09, 2006 4:47 pm
Location: Singapore

Re: How to implement KPK ?

Post by Chan Rasjid »

hgm wrote:I see KPK quite often.

Anyway, to further the public-domain cause, the following code actually runs, and prints some numbers that seem to make sense (like the number of stalemates, which matches what I calculated by hand). I even put in the initial double-push, which is important for rule-of-squares situations.

Btw, this is the dumb algorithm, which does not use any unmoves. It just attempts regular moving from all not-yet-decided positions, to look for a move to a won position for white, and to a non-lost position for black.

Code: Select all

/* Public-domain KPK bitbase code by H.G. Muller */

#define WTM 0
#define BTM 1

char dtc&#91;2&#93;&#91;64&#93;&#91;64&#93;&#91;64&#93;; // 512 KB
char bitbase&#91;2*64*64*3&#93;;

char steps&#91;&#93; = &#123;1, -1, 16, -16, 15, -15, 17, -17&#125;; // 0x88 King steps

void
Init ()
&#123; /* 3 = bK captured, 2 = can capture bK, 1 = won, 0 = undecided, -1 = broken or wK captured */
  int wk, bk, p;
  for&#40;wk=0; wk<64; wk++) for&#40;p=0; p<64; p++) for&#40;bk=0; bk<64; bk++) &#123;
    if&#40;bk == wk&#41; dtc&#91;BTM&#93;&#91;wk&#93;&#91;p&#93;&#91;bk&#93; = 3, dtc&#91;WTM&#93;&#91;wk&#93;&#91;p&#93;&#91;bk&#93; = -1; else
    if&#40;wk == p&#41; dtc&#91;BTM&#93;&#91;wk&#93;&#91;p&#93;&#91;bk&#93; = dtc&#91;WTM&#93;&#91;wk&#93;&#91;p&#93;&#91;bk&#93; = -1; else
    if&#40;bk ==  p&#41; dtc&#91;BTM&#93;&#91;wk&#93;&#91;p&#93;&#91;bk&#93; = -3; else // with WTM black just captured P
    if&#40;p >= 56&#41; dtc&#91;WTM&#93;&#91;wk&#93;&#91;p&#93;&#91;bk&#93; = 1; // promoted and on move = win
  &#125;
&#125;

void
Pass &#40;int stm, int first, int def, int esc&#41;
&#123;
  int wk, bk, p, d;
  for&#40;wk=0; wk<64; wk++) for&#40;p=0; p<64; p++) for&#40;bk=0; bk<64; bk++) &#123;
    int k = stm == WTM ? wk &#58; bk;
    int O88 = &#40;k & 070&#41; + k; // 0x88 square number of King
    if&#40;dtc&#91;stm&#93;&#91;wk&#93;&#91;p&#93;&#91;bk&#93;) continue; // already decided
    dtc&#91;stm&#93;&#91;wk&#93;&#91;p&#93;&#91;bk&#93; = def;  // assume lost if btm, undecided if wtm
    if&#40;bk != p && stm == WTM&#41; &#123; // pawn not captured, so can move
      if&#40;p+8 != bk && &#40;dtc&#91;BTM&#93;&#91;wk&#93;&#91;p+8 &#93;&#91;bk&#93; > first || p < 16 &&
         p+16 != bk && dtc&#91;BTM&#93;&#91;wk&#93;&#91;p+16&#93;&#91;bk&#93; > first&#41;)  &#123; dtc&#91;WTM&#93;&#91;wk&#93;&#91;p&#93;&#91;bk&#93; = esc; continue; &#125;
      if&#40;p+7 == bk && &#40;p & 7&#41; != 0&#41;  &#123; dtc&#91;WTM&#93;&#91;wk&#93;&#91;p&#93;&#91;bk&#93; = 2; continue; &#125;
      if&#40;p+9 == bk && &#40;p & 7&#41; != 7&#41;  &#123; dtc&#91;WTM&#93;&#91;wk&#93;&#91;p&#93;&#91;bk&#93; = 2; continue; &#125;
    &#125;
    for&#40;d=0; d<8; d++) &#123;
      int to = O88 + steps&#91;d&#93;;
      if&#40;to & 0x88&#41; continue; // off board
      to -= to>>1 & 070;
      if&#40;stm == WTM ? dtc&#91;BTM&#93;&#91;to&#93;&#91;p&#93;&#91;bk&#93; > first &#58; dtc&#91;WTM&#93;&#91;wk&#93;&#91;p&#93;&#91;to&#93; <= first&#41;
      &#123; dtc&#91;stm&#93;&#91;wk&#93;&#91;p&#93;&#91;bk&#93; = esc; break; &#125;
    &#125;
  &#125;
&#125;

void
Pack ()
&#123;
  int wk, bk, p, i;
  for&#40;wk=0; wk<64; wk++) for&#40;p=8; p<56; p+=2&#41; for&#40;bk=0; bk<64; bk++) &#123; // calculate probe address and bit
    int index = &#40;bk >> 3&#41; + 8*wk + 8*64*&#40;p-8>>1&#41;;
    bitbase&#91;2*index&#93; |= &#40;dtc&#91;WTM&#93;&#91;wk&#93;&#91;p&#93;&#91;bk&#93; > 0&#41; << &#40;bk & 7&#41;;
    bitbase&#91;2*index+1&#93; |= &#40;dtc&#91;BTM&#93;&#91;wk&#93;&#91;p&#93;&#91;bk&#93; > 0&#41; << &#40;bk & 7&#41;;
  &#125;
&#125;

void
Build ()
&#123;
  int i;
  Init&#40;);
  Pass&#40;WTM, 2, 0, 2&#41;; Pass&#40;BTM, 1, -2, 0&#41;; // calculate King captures and 

stalemates
  for&#40;i=0; i<25; i++) // won't take more than 25 moves
    Pass&#40;WTM, 0, 0, 1&#41;, Pass&#40;BTM, 0, 1, 0&#41;;
  Pack&#40;);
&#125;
Printing the stats of the positions with the Pawn on rank 2-7 afterwards gives:

Code: Select all

white to move&#58; 124960+, 41044=, 6096-, 0 stalemate, 24508 K-capture
black to move&#58; 97604+, 89866=, 6066-, 18 stalemate, 0 K-capture
where + means won to white, = means draw, - illegal by white's fault or black stalemated. (White stalemates are not separately identified, they count with the other draws.)
Muller's public domain kpk bitbase generator should be working. I probe the bitbase for a few kpk positions and they are in agreement with match results when the positions are played by stockfish vs komodo.

The various programs I have all could play kpk endings perfectly. Even the weakest, simplex, which is about at the level of my engine, could do so. I noticed that when these engines analyse a typical kpk position, the PV remains almost unchanged (the first four moves) from a very early depth of 9 or 10 till 30 or more plies. But my implementation of the kpk evaluation is still not working. In analysis mode, the PV keeps changing.

My kpk evaluation returns 0/1 when it is a draw. If a win, it will return 5 x pawn and some simple evaluation terms. Maybe, someone who have implemented kpk sucessfully may check my codes to see if it should work. If it should work, then it means there are bugs in my search that somehow escaped detection.

The code for my kpk evaluator has the probe codes for Muller's bitbase:

Code: Select all

int evalkpk&#40;const int side&#41; &#123;
    const int pCol = !bits&#91;0&#93;&#91;Pawn&#93;;
    const int pOnMove = &#40;pCol == side&#41;;
    const int pK = king&#91;pCol&#93;, loneK = king&#91;pCol ^ 1&#93;, p = firstone&#40;bits&#91;pCol&#93;&#91;Pawn&#93;);
    int probeWk, probeBk, probeWp;
    int win, index, stm;

    if &#40;kMap&#91;king&#91;side&#93;&#93; & bits&#91;side ^ 1&#93;&#91;Pawn&#93; & ~kMap&#91;king&#91;side ^ 1&#93;&#93;) &#123;
        /* insurance - safe capture of pawn */
        return 1;
    &#125;

    /* probe kpk bitbase &#40;as white with the pawn&#41; */
    if &#40;pCol == 0&#41; &#123;
        /* my internal chess board square mapping is unusual, &#40;a1, a2, a3,...) -> &#40;0, 1, 2, ...)
         * convert to mapping of bitbase */
        probeWk = sqMapA1B1&#91;pK&#93;;
        probeBk = sqMapA1B1&#91;loneK&#93;;
        probeWp = sqMapA1B1&#91;p&#93;;
        stm = side;
    &#125; else &#123;
        /* flip everything  */
        probeWk = 63 - sqMapA1B1&#91;pK&#93;;
        probeBk = 63 - sqMapA1B1&#91;loneK&#93;;
        probeWp = 63 - sqMapA1B1&#91;p&#93;;
        stm = side ^ 1;
    &#125;

    index = 2 * (&#40;probeBk >> 3&#41; + 8 * probeWk + 8 * 64 * (&#40;probeWp - 8&#41; >> 1&#41;) + 1 * stm;
    /* probe bitbase; 1 == win, 0 == draw */
    win = &#40;bitbase&#91;index&#93; >> &#40;probeBk & 7&#41;) & 1;

    if (!win&#41; &#123;
        return 1;
    &#125;

    const int promSq = PROMOTE_SQ&#40;p, pCol&#41;;
    const int pFrontSq = pCol ? p - 1 &#58; p + 1;
    
    int x = v5Pawn
            - DIST&#40;p, promSq&#41;
            - &#40;pFrontSq == loneK ? 8 &#58; 0&#41;
            - &#40;DIST&#40;pK, p&#41; > DIST&#40;loneK, p&#41; ? 8 &#58; -8&#41; 
            - &#40;DIST&#40;pK, pFrontSq&#41; > DIST&#40;loneK, pFrontSq&#41; ? 8 &#58; -8&#41;
            - &#40;DIST&#40;pK, promSq&#41; > DIST&#40;loneK, promSq&#41; ? 16 &#58; -16&#41;;

    ASSERT_COLOR_SYMM&#40;side ? &#40;pCol ? x &#58; -x&#41; &#58; &#40;pCol ? -x &#58; x&#41;);
    return &#40;pOnMove ? x &#58; -x&#41;;
&#125;
Best Regards,
Rasjid.