private Matrix <Cell> PerformCellAndSegmentCalculation()
        {
            Matrix <Cell> matrix = CellCalculator.Calculate(Board, Board.TopLeft.X, Board.BottomRight.X);

            SegmentCalculator.Calculate(matrix);
            return(matrix);
        }
 private void PerformCellCalculation()
 {
     Matrix <Cell> matrix = CellCalculator.Calculate(Board, Board.TopLeft.X, Board.BottomRight.X);
 }