Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/03/10 06:04:49 (14 years ago)
Author:
swagner
Message:

Continued work on algorithm batch processing (#947).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Core.Views/3.3/EngineView.cs

    r2917 r3260  
    103103      else {
    104104        UpdateExecutionTimeTextBox();
    105         logTextBox.Clear();
    106105        Log("Engine prepared");
    107106      }
     
    127126    protected virtual void Content_ExecutionTimeChanged(object sender, EventArgs e) {
    128127      executionTimeCounter++;
    129       if ((executionTimeCounter == 100) || !Content.Running) {
     128      if ((executionTimeCounter >= 100) || !Content.Running) {
    130129        executionTimeCounter = 0;
    131130        UpdateExecutionTimeTextBox();
Note: See TracChangeset for help on using the changeset viewer.