private void CheckColumnGrowth(Borders border)
        {
            var aliveCellGroupCount
                = CurrentGeneration.GetConsecutiveVerticalCellCount(border);

            if (aliveCellGroupCount >= 1)
            {
                AddColumn(border);
            }
        }