Guest User

Untitled

a guest
Jun 14th, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Nim 0.28 KB | None | 0 0
  1. type
  2.  
  3.   Position* = tuple[y, x: int]
  4.  
  5.   Move* = ref object
  6.     start*: Position
  7.     fin*: Position
  8.     algebraic*: string
  9.     uci*: string
  10.  
  11.   Transposition* = ref object
  12.     zobrist*: uint64
  13.     eval*: int
  14.     score_type*: string
  15.     refutation*: Move
  16.     depth*: int
Add Comment
Please, Sign In to add comment