Changeset 2916 for trunk/sources/HeuristicLab.Core/3.3/Interfaces
- Timestamp:
- 03/03/10 03:14:37 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Core/3.3/Interfaces/IEngine.cs
r2834 r2916 31 31 public interface IEngine : IItem { 32 32 /// <summary> 33 /// Gets the operator graph of the current instance.34 /// </summary>35 OperatorGraph OperatorGraph { get; set; }36 /// <summary>37 /// Gets the global scope of the current instance.38 /// </summary>39 IScope GlobalScope { get; }40 41 /// <summary>42 33 /// Gets the execution time of the current instance. 43 34 /// </summary> … … 53 44 bool Finished { get; } 54 45 55 /// <summary>56 /// Prepares the engine for a new run.57 /// </summary>58 void Prepare();59 46 /// <summary> 60 47 /// Prepares the engine with a given initial operation. … … 74 61 void Stop(); 75 62 76 /// <summary>77 /// Occurs when the operator graph was changed.78 /// </summary>79 event EventHandler OperatorGraphChanged;80 63 /// <summary> 81 64 /// Occurs when the execution time was changed.
Note: See TracChangeset
for help on using the changeset viewer.