Beispiel #1
0
 public void Branch(AlfaBetaByteNode node, sbyte state)
 {
     if (node.Children != null && node.Children.Length > 0)
     {
         throw new InvalidOperationException("Leave nodes are already created");
     }
 }
 public sbyte GoDown(sbyte state, AlfaBetaByteNode node)
 {
     return((sbyte)(state + node.ValueChange));
 }