- Timestamp:
- 12/26/10 03:51:30 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ParallelEngine/HeuristicLab.Operators/3.3/AlgorithmOperator.cs
r4722 r5177 55 55 } 56 56 57 public override IOperation Apply( ) {58 OperationCollection next = new OperationCollection(base.Apply( ));57 public override IOperation Apply(IExecutionContext context) { 58 OperationCollection next = new OperationCollection(base.Apply(context)); 59 59 if (operatorGraph.InitialOperator != null) 60 next.Insert(0, ExecutionContext.CreateChildOperation(operatorGraph.InitialOperator));60 next.Insert(0, context.CreateChildOperation(operatorGraph.InitialOperator)); 61 61 return next; 62 62 }
Note: See TracChangeset
for help on using the changeset viewer.