return nextBoard;
}
private void evolveCellNeighbours(Board nextBoard, Set<Position> neighbours) {
for (Position neighbourPosition: neighbours) {
Cell nextNeighbourState = determineCellAt(neighbourPosition).evolveIntoNewState(this);
nextNeighbourState.attachToBoard(nextBoard);
}
}