Changeset 2773 for trunk/sources/HeuristicLab.Core/3.3/Interfaces
- Timestamp:
- 02/10/10 03:39:02 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.Core/3.3/Interfaces
- Files:
-
- 1 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Core/3.3/Interfaces/IExecutionSequence.cs
r2772 r2773 30 30 /// Interface which represents an execution context. 31 31 /// </summary> 32 public interface IExecution Context: IDeepCloneable { }32 public interface IExecutionSequence : IDeepCloneable { } 33 33 } -
trunk/sources/HeuristicLab.Core/3.3/Interfaces/IOperator.cs
r2757 r2773 44 44 /// <param name="scope">The scope where to execute the current instance.</param> 45 45 /// <returns>The next operation.</returns> 46 IExecution ContextExecute(ExecutionContext context);46 IExecutionSequence Execute(ExecutionContext context); 47 47 /// <summary> 48 48 /// Aborts the current operator.
Note: See TracChangeset
for help on using the changeset viewer.