Free cookie consent management tool by TermsFeed Policy Generator

Changeset 6466


Ignore:
Timestamp:
06/21/11 17:56:44 (13 years ago)
Author:
mkommend
Message:

#1562: Removed duplicate call of OnStarted in FixedDataAnalysisAlgorithm.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/FixedDataAnalysisAlgorithm.cs

    r5809 r6466  
    2121
    2222using System;
    23 using System.Linq;
     23using System.Threading;
     24using System.Threading.Tasks;
    2425using HeuristicLab.Common;
    25 using HeuristicLab.Core;
    26 using HeuristicLab.Data;
    2726using HeuristicLab.Optimization;
    28 using HeuristicLab.Parameters;
    2927using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    3028using HeuristicLab.Problems.DataAnalysis;
    31 using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
    32 using System.Collections.Generic;
    33 using HeuristicLab.Problems.DataAnalysis.Symbolic;
    34 using System.Threading.Tasks;
    35 using System.Threading;
    3629
    3730namespace HeuristicLab.Algorithms.DataAnalysis {
     
    5750    }
    5851    #endregion
    59    
     52
    6053    private DateTime lastUpdateTime;
    6154
     
    10396    private void Run(object state) {
    10497      CancellationToken cancellationToken = (CancellationToken)state;
    105       OnStarted();
    10698      lastUpdateTime = DateTime.Now;
    10799      System.Timers.Timer timer = new System.Timers.Timer(250);
Note: See TracChangeset for help on using the changeset viewer.