Changeset 10507 for stable/HeuristicLab.Selection
- 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.Selection/3.3/Selector.cs
r9456 r10507 33 33 [Item("Selector", "A base class for selection operators.")] 34 34 [StorableClass] 35 public abstract class Selector : SingleSuccessorOperator {35 public abstract class Selector : InstrumentedOperator { 36 36 public override bool CanChangeName { 37 37 get { return false; } … … 54 54 } 55 55 56 public sealed override IOperation Apply() {56 public sealed override IOperation InstrumentedApply() { 57 57 List<IScope> scopes = new List<IScope>(CurrentScope.SubScopes); 58 58 IScope[] selected = Select(scopes); … … 66 66 CurrentScope.SubScopes.Add(selectedScope); 67 67 68 return base. Apply();68 return base.InstrumentedApply(); 69 69 } 70 70
Note: See TracChangeset
for help on using the changeset viewer.