Changeset 6114 for trunk/sources/HeuristicLab.Optimization
- Timestamp:
- 05/03/11 19:25:13 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/sources/HeuristicLab.Optimization/3.3/Algorithms/Algorithm.cs ΒΆ
r6103 r6114 260 260 public event EventHandler Prepared; 261 261 protected virtual void OnPrepared() { 262 ExecutionState = ExecutionState.Prepared; 262 263 ExecutionTime = TimeSpan.Zero; 263 264 foreach (IStatefulItem statefulObject in this.GetObjectGraphObjects().OfType<IStatefulItem>()) { 264 265 statefulObject.InitializeState(); 265 266 } 266 ExecutionState = ExecutionState.Prepared;267 267 EventHandler handler = Prepared; 268 268 if (handler != null) handler(this, EventArgs.Empty);
Note: See TracChangeset
for help on using the changeset viewer.