}
}
private void printPosition(ConstBoard board)
{
PointList black = new PointList();
PointList white = new PointList();
for (GoPoint p : board)
{
GoColor c = board.getColor(p);
if (c == BLACK)
black.add(p);
else if (c == WHITE)
white.add(p);
}
printSetup(black, white);
printNewLine();
printToPlay(board.getToMove());
}