Free cookie consent management tool by TermsFeed Policy Generator

Changeset 2029


Ignore:
Timestamp:
06/06/09 16:53:27 (15 years ago)
Author:
swagner
Message:

Refactoring of the Operator Architecture (#95)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/Operator Architecture Refactoring/HeuristicLab.ThreadParallelEngine/3.2/ThreadParallelEngine.cs

    r1530 r2029  
    6464    /// </summary>
    6565    public ThreadParallelEngine() {
    66       myWorkers = Environment.ProcessorCount;
     66      myWorkers = System.Environment.ProcessorCount;
    6767      currentOperators = new IOperator[1000];
    6868    }
     
    126126        try {
    127127          currentOperators[currentOperatorIndex] = atomicOperation.Operator;
    128           next = atomicOperation.Operator.Execute(atomicOperation.Scope);
     128          next = atomicOperation.Operator.Execute(atomicOperation.Environment, atomicOperation.Scope);
    129129        }
    130130        catch (Exception ex) {
Note: See TracChangeset for help on using the changeset viewer.