Beispiel #1
0
 public void CopyTo(PV targetPV)
 {
     for (int x = 0; x < Game.MAX_PLY; x++)
     {
         targetPV[x] = MoveHashes[x];
     }
 }
Beispiel #2
0
 public void Initialize()
 {
     PV = new PV();
     PV.Initialize();
 }