Free cookie consent management tool by TermsFeed Policy Generator

Changeset 7576


Ignore:
Timestamp:
03/06/12 23:55:40 (12 years ago)
Author:
mkommend
Message:

#1783: Removed questionable source lines in execution state handling in the BatchRun and the Experiment.

Location:
trunk/sources/HeuristicLab.Optimization/3.3
Files:
2 edited

Legend:

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

    r7259 r7576  
    339339    private void Optimizer_Paused(object sender, EventArgs e) {
    340340      if (ExecutionState == ExecutionState.Started) {
    341         batchRunStarted = false;
    342         batchRunPaused = true;
    343         batchRunStopped = false;
    344341        OnPaused();
    345342      }
  • trunk/sources/HeuristicLab.Optimization/3.3/Experiment.cs

    r7259 r7576  
    337337    private void optimizer_Prepared(object sender, EventArgs e) {
    338338      if (Optimizers.All(x => x.ExecutionState == ExecutionState.Prepared)) OnPrepared();
    339       else if (Optimizers.All(x => x.ExecutionState != ExecutionState.Started)) OnPaused();
    340339    }
    341340    private void optimizer_Started(object sender, EventArgs e) {
Note: See TracChangeset for help on using the changeset viewer.