Remove Shatranj stalemate claim
authorH.G. Muller <h.g.muller@hccnet.nl>
Sun, 17 Jan 2010 14:20:34 +0000 (15:20 +0100)
committerH.G. Muller <h.g.muller@hccnet.nl>
Sun, 17 Jan 2010 14:20:34 +0000 (15:20 +0100)
As the search of Shamax does not distinguish checkmate and stalemate, it
could never be triggered.

changelog
fairymax.c

index 3a28cbb..e4e6f6a 100644 (file)
--- a/changelog
+++ b/changelog
@@ -75,4 +75,5 @@
 16/1/2010 Fixed bug in Shatranj result claims.
           Flip eval sign when side-to-move changes through WB color command.
           
+17/1/2010 Removed Shatranj stalemate claim again, as it was never triggered.
 
index e615fd4..b939cfc 100644 (file)
@@ -331,13 +331,6 @@ int PrintResult(int s)
                         printf("1-0 {Bare King}\n");\r
                 return 5;\r
         }\r
-        if(cnt>-I+1 && K==0 && L==0) {\r
-                if (s == WHITE)\r
-                        printf("0-1 {Stalemate}\n");\r
-                else\r
-                        printf("1-0 {Stalemate}\n");\r
-                return 2;\r
-        }\r
 #else\r
         if(cnt>-I+1 && K==0 && L==0) {\r
                 printf("1/2-1/2 {Stalemate}\n");\r