Check out Symmetric Chess, our featured variant for March, 2024.


[ Help | Earliest Comments | Latest Comments ]
[ List All Subjects of Discussion | Create New Subject of Discussion ]
[ List Earliest Comments Only For Pages | Games | Rated Pages | Rated Games | Subjects of Discussion ]

Single Comment

Forward Chess ZIP file. Download these files to play Forward Chess with Zillions of Games![All Comments] [Add Comment or Rating]
💡📝Michael Nelson wrote on Thu, Feb 5, 2004 01:28 AM UTC:
Larry's suggestion also improves play and the code is elegant. I'm going
to
do some testing and see which approach seems to do better.

I have a more elegant macro for Peter's method which will allow the
final
move to be made:

(define King-win (
(verify (in-zone? promotion-zone))
(if (in-zone? promotion-zone a1)
	White-throne ; dummy position with a White King
else
	Black-throne ; dummy position with a Black King
)
add
))