Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/21/14 12:22:38 (10 years ago)
Author:
sbreuer
Message:
  • offer search comparison options
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/Utils/FindPreprocessingItemsIterator.cs

    r10852 r10870  
    4545        ++tmpColumnIndex;
    4646      }
     47      if (startCell == null && tmpColumnIndex == columnIndex && rowIndex != 0) {
     48        startCell = GetNextFoundCell(columnIndex, 0);
     49      }
    4750      currentCell = startCell;
    4851    }
     
    6265      bool result = false;
    6366      bool endReached = false;
    64       if (items != null) {
     67      if (CurrentCellExists()) {
    6568        do {
    6669          if (currentCell.Item2 < items[currentCell.Item1].Count - 1) {
     
    9598    private bool CurrentCellExists() {
    9699      bool result = false;
    97       if (items != null) {
     100      if (currentCell != null && items != null) {
    98101        result = items.ContainsKey(currentCell.Item1) && currentCell.Item2 < items[currentCell.Item1].Count;
    99102      }
Note: See TracChangeset for help on using the changeset viewer.