Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/19/10 06:19:16 (14 years ago)
Author:
swagner
Message:

Operator architecture refactoring (#95)

  • worked on operators, engines, and optimization
Location:
trunk/sources/HeuristicLab.Selection/3.3
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Selection/3.3/Reducer.cs

    r2830 r2834  
    4646    }
    4747
    48     public sealed override IExecutionSequence Apply() {
     48    public sealed override IOperation Apply() {
    4949      List<IScope> scopes = new List<IScope>(CurrentScope.SubScopes);
    5050      List<IScope> reduced = Reduce(scopes);
  • trunk/sources/HeuristicLab.Selection/3.3/Selector.cs

    r2830 r2834  
    5959    }
    6060
    61     public sealed override IExecutionSequence Apply() {
     61    public sealed override IOperation Apply() {
    6262      List<IScope> scopes = new List<IScope>(CurrentScope.SubScopes);
    6363      IScope[] selected = Select(scopes);
Note: See TracChangeset for help on using the changeset viewer.