Check out Grant Acedrex, our featured variant for April, 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

Falcon Chess. Play Falcon Chess on Game Courier![All Comments] [Add Comment or Rating]
Larry Smith wrote on Sun, Nov 9, 2008 01:25 AM UTC:
For those who are interested, the following is my Zillions coding for 'the piece that shall not be named'.

-----------------------------------------------------------

(define xxxxxx_move
  (
  $1 $2
  (set-flag clear_path 
    (or
      (and empty? (or (empty? $3)(empty? $5)))
      (and (empty? $4) (empty? $5))
    )
  )
  (verify (flag? clear_path))
  $1 (verify not-friend?)
  add
  )
)

(xxxxxx_move n ne s w sw)
(xxxxxx_move n nw s e se)
(xxxxxx_move s se n w nw)
(xxxxxx_move s sw n e ne)
(xxxxxx_move e ne w s sw)
(xxxxxx_move e se w n nw)
(xxxxxx_move w nw e s se)
(xxxxxx_move w sw e n ne)
(xxxxxx_move ne n sw e s)
(xxxxxx_move nw n se w s)
(xxxxxx_move se s nw e n)
(xxxxxx_move sw s ne w n)
(xxxxxx_move ne e sw n w)
(xxxxxx_move nw w se n e)
(xxxxxx_move se e nw s w)
(xxxxxx_move sw w ne s e)



--------------------------------------------------------------

Using this code,  the piece was evaluated at 6529 in the center of an open 10x10 field by the Zillions engine. Compare this to Pawn at 2961, Knight at 9153 and Bison at 14699.