示例#1
0
 public static void Add(ulong hash, short score)
 {
     _table[hash % _size] = new PawnHashTableEntry(hash, score);
 }
示例#2
0
 public static void Add(ulong hash, short openingScore, short endingScore)
 {
     _table[hash % _size] = new PawnHashTableEntry(hash, openingScore, endingScore);
 }