コード例 #1
0
 public static void Add(ulong hash, short score)
 {
     _table[hash % _size] = new PawnHashTableEntry(hash, score);
 }
コード例 #2
0
ファイル: PawnHashTable.cs プロジェクト: Tearth/Cosette
 public static void Add(ulong hash, short openingScore, short endingScore)
 {
     _table[hash % _size] = new PawnHashTableEntry(hash, openingScore, endingScore);
 }