Esempio n. 1
0
 // this is wrong.  Need Equals override on Board
 public bool Equals(BoardMove other)
 {
     return(depth == other.depth && board.Equals(other.board));
 }
Esempio n. 2
0
 // this is wrong.  Need Equals override on Board
 public bool Equals(BoardMove other)
 {
     return(depth == other.depth && move.Equals(other.move));
 }