- 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/ShakingOperator.cs
r9456 r10507 56 56 } 57 57 58 public override IOperation Apply() {58 public override IOperation InstrumentedApply() { 59 59 if (NeighborhoodCountParameter.ActualValue == null) 60 60 NeighborhoodCountParameter.ActualValue = new IntValue(Operators.CheckedItems.Count()); … … 64 64 var shaker = base.Operators.CheckedItems.SingleOrDefault(x => x.Index == index); 65 65 66 OperationCollection next = new OperationCollection(base. Apply());66 OperationCollection next = new OperationCollection(base.InstrumentedApply()); 67 67 if (shaker.Value != null) 68 68 next.Insert(0, ExecutionContext.CreateChildOperation(shaker.Value));
Note: See TracChangeset
for help on using the changeset viewer.