Changeset 10261
- Timestamp:
- 12/19/13 14:14:52 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Operators/3.3/InstrumentedOperator.cs
r10231 r10261 83 83 var opCol = new OperationCollection(); 84 84 foreach (var beforeAction in BeforeExecutionOperators) { 85 var beforeActionOperation = ExecutionContext.Create Operation(beforeAction);85 var beforeActionOperation = ExecutionContext.CreateChildOperation(beforeAction); 86 86 opCol.Add(beforeActionOperation); 87 87 } … … 99 99 var opCol = new OperationCollection(); 100 100 foreach (var afterAction in AfterExecutionOperators) { 101 var afterActionOperation = ExecutionContext.Create Operation(afterAction);101 var afterActionOperation = ExecutionContext.CreateChildOperation(afterAction); 102 102 opCol.Add(afterActionOperation); 103 103 }
Note: See TracChangeset
for help on using the changeset viewer.