Changeset 6466 for trunk/sources/HeuristicLab.Algorithms.DataAnalysis
- Timestamp:
- 06/21/11 17:56:44 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/FixedDataAnalysisAlgorithm.cs
r5809 r6466 21 21 22 22 using System; 23 using System.Linq; 23 using System.Threading; 24 using System.Threading.Tasks; 24 25 using HeuristicLab.Common; 25 using HeuristicLab.Core;26 using HeuristicLab.Data;27 26 using HeuristicLab.Optimization; 28 using HeuristicLab.Parameters;29 27 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 30 28 using 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;36 29 37 30 namespace HeuristicLab.Algorithms.DataAnalysis { … … 57 50 } 58 51 #endregion 59 52 60 53 private DateTime lastUpdateTime; 61 54 … … 103 96 private void Run(object state) { 104 97 CancellationToken cancellationToken = (CancellationToken)state; 105 OnStarted();106 98 lastUpdateTime = DateTime.Now; 107 99 System.Timers.Timer timer = new System.Timers.Timer(250);
Note: See TracChangeset
for help on using the changeset viewer.