Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/02/11 04:05:04 (13 years ago)
Author:
swagner
Message:

Worked on cancellation and refactored code (#1333)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/ParallelEngine/HeuristicLab.SequentialEngine/3.3/SequentialEngine.cs

    r5185 r5187  
    6262          catch (Exception ex) {
    6363            ExecutionStack.Push(operation);
    64             throw new OperatorExecutionException(operation.Operator, ex);
     64            if (ex is OperationCanceledException) throw ex;
     65            else throw new OperatorExecutionException(operation.Operator, ex);
    6566          }
    6667          if (next != null) ExecutionStack.Push(next);
Note: See TracChangeset for help on using the changeset viewer.