Free cookie consent management tool by TermsFeed Policy Generator

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

Worked on refactoring of algorithm analysis and tracing (#999)

  • fixed bug in MultiAnalyzer
  • fixed flickering of results
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Analysis/3.3/MultiAnalyzer.cs

    r3658 r3664  
    6262      IntValue interval = UpdateIntervalParameter.ActualValue;
    6363      if (interval == null) interval = new IntValue(1);
     64
    6465      IntValue counter = UpdateCounterParameter.ActualValue;
    65       if (counter == null) counter = new IntValue(interval.Value);
    66       else counter.Value++;
     66      if (counter == null) {
     67        counter = new IntValue(interval.Value);
     68        UpdateCounterParameter.ActualValue = counter;
     69      } else counter.Value++;
    6770
    6871      if (counter.Value == interval.Value) {
Note: See TracChangeset for help on using the changeset viewer.