Changeset 2029
- Timestamp:
- 06/06/09 16:53:27 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/Operator Architecture Refactoring/HeuristicLab.ThreadParallelEngine/3.2/ThreadParallelEngine.cs
r1530 r2029 64 64 /// </summary> 65 65 public ThreadParallelEngine() { 66 myWorkers = Environment.ProcessorCount;66 myWorkers = System.Environment.ProcessorCount; 67 67 currentOperators = new IOperator[1000]; 68 68 } … … 126 126 try { 127 127 currentOperators[currentOperatorIndex] = atomicOperation.Operator; 128 next = atomicOperation.Operator.Execute(atomicOperation. Scope);128 next = atomicOperation.Operator.Execute(atomicOperation.Environment, atomicOperation.Scope); 129 129 } 130 130 catch (Exception ex) {
Note: See TracChangeset
for help on using the changeset viewer.