Changeset 15393 for stable/HeuristicLab.SequentialEngine
- Timestamp:
- 10/03/17 09:27:05 (7 years ago)
- Location:
- stable
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
- Property svn:mergeinfo changed
/trunk/sources merged: 15368,15376
- Property svn:mergeinfo changed
-
stable/HeuristicLab.SequentialEngine/3.3/SequentialEngine.cs
r14186 r15393 62 62 catch (Exception ex) { 63 63 ExecutionStack.Push(operation); 64 if (ex is OperationCanceledException) throw ex;64 if (ex is OperationCanceledException) throw; 65 65 else throw new OperatorExecutionException(operation.Operator, ex); 66 66 } 67 67 if (next != null) ExecutionStack.Push(next); 68 69 if (operation.Operator.Breakpoint) {70 Log.LogMessage(string.Format("Breakpoint: {0}", operation.Operator.Name != string.Empty ? operation.Operator.Name : operation.Operator.ItemName));71 Pause();72 }73 68 } 74 69 }
Note: See TracChangeset
for help on using the changeset viewer.