- Timestamp:
- 12/28/10 01:44:33 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ParallelEngine/HeuristicLab.Operators.Programmable/3.3/ProgrammableOperator.cs
r5177 r5178 452 452 #region HeuristicLab interfaces 453 453 454 public override IOperation Apply( IExecutionContext context) {454 public override IOperation Apply() { 455 455 lock (syncRoot) { 456 456 if (executeMethod == null) { … … 459 459 } 460 460 461 var parameters = new List<object>() { this, context };461 var parameters = new List<object>() { this, ExecutionContext }; 462 462 parameters.AddRange(Parameters.Select(p => (object)p)); 463 463 return (IOperation)executeMethod.Invoke(null, parameters.ToArray());
Note: See TracChangeset
for help on using the changeset viewer.