Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/19/13 14:14:52 (10 years ago)
Author:
mkommend
Message:

#2119: Chained exeuction contexts of before and after operators in the instrumented operator to enable a parameter lookup.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Operators/3.3/InstrumentedOperator.cs

    r10231 r10261  
    8383      var opCol = new OperationCollection();
    8484      foreach (var beforeAction in BeforeExecutionOperators) {
    85         var beforeActionOperation = ExecutionContext.CreateOperation(beforeAction);
     85        var beforeActionOperation = ExecutionContext.CreateChildOperation(beforeAction);
    8686        opCol.Add(beforeActionOperation);
    8787      }
     
    9999      var opCol = new OperationCollection();
    100100      foreach (var afterAction in AfterExecutionOperators) {
    101         var afterActionOperation = ExecutionContext.CreateOperation(afterAction);
     101        var afterActionOperation = ExecutionContext.CreateChildOperation(afterAction);
    102102        opCol.Add(afterActionOperation);
    103103      }
Note: See TracChangeset for help on using the changeset viewer.