- Timestamp:
- 02/25/14 14:00:47 (11 years ago)
- Location:
- stable
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
- Property svn:mergeinfo changed
/trunk/sources merged: 10149,10231,10261,10291-10292,10295,10298
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Optimization.Operators/3.3/UserDefinedOperator.cs
r9456 r10507 35 35 public UserDefinedOperator() : base() { } 36 36 37 public override IOperation Apply() {37 public override IOperation InstrumentedApply() { 38 38 OperationCollection result = new OperationCollection(); 39 39 foreach (IOperator op in Operators.CheckedItems.OrderBy(x => x.Index).Select(x => x.Value)) { 40 40 result.Add(ExecutionContext.CreateOperation(op)); 41 41 } 42 result.Add(base. Apply());42 result.Add(base.InstrumentedApply()); 43 43 return result; 44 44 }
Note: See TracChangeset
for help on using the changeset viewer.