Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/15/10 05:26:02 (15 years ago)
Author:
swagner
Message:

Operator architecture refactoring (#95)

  • worked on operators, parameters and problems
File:
1 edited

Legend:

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

    r2794 r2796  
    110110      ExecutionContextCollection next = new ExecutionContextCollection(base.Apply());
    111111      for (int i = Operators.Count - 1; i >= 0; i--)
    112         next.Insert(0, new ExecutionContext(ExecutionContext.Parent, Operators[i], ExecutionContext.Scope));
     112        next.Insert(0, ExecutionContext.CreateContext(Operators[i]));
    113113      return next;
    114114    }
Note: See TracChangeset for help on using the changeset viewer.