Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/03/11 19:25:13 (13 years ago)
Author:
swagner
Message:

Code formatting and minor changes (#1424)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Optimization/3.3/Algorithms/Algorithm.cs

    r6103 r6114  
    260260    public event EventHandler Prepared;
    261261    protected virtual void OnPrepared() {
     262      ExecutionState = ExecutionState.Prepared;
    262263      ExecutionTime = TimeSpan.Zero;
    263264      foreach (IStatefulItem statefulObject in this.GetObjectGraphObjects().OfType<IStatefulItem>()) {
    264265        statefulObject.InitializeState();
    265266      }
    266       ExecutionState = ExecutionState.Prepared;
    267267      EventHandler handler = Prepared;
    268268      if (handler != null) handler(this, EventArgs.Empty);
Note: See TracChangeset for help on using the changeset viewer.