Changeset 7268 for branches/HeuristicLab.TimeSeries/HeuristicLab.Algorithms.Benchmarks/3.3/IBenchmark.cs
- Timestamp:
- 01/03/12 11:22:21 (13 years ago)
- Location:
- branches/HeuristicLab.TimeSeries
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.TimeSeries
- Property svn:mergeinfo changed
/trunk/sources merged: 7214,7216-7230,7233-7239,7241,7243-7252,7254,7256-7261,7265-7266
- Property svn:mergeinfo changed
-
branches/HeuristicLab.TimeSeries/HeuristicLab.Algorithms.Benchmarks/3.3
- Property svn:ignore
-
old new 2 2 bin 3 3 obj 4 *.vs10x 5 *.user
-
- Property svn:ignore
-
branches/HeuristicLab.TimeSeries/HeuristicLab.Algorithms.Benchmarks/3.3/IBenchmark.cs
r7006 r7268 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 1Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 24 24 using HeuristicLab.Core; 25 25 using HeuristicLab.Optimization; 26 26 27 namespace HeuristicLab.Algorithms.Benchmarks { 27 28 public interface IBenchmark : IItem { 28 29 byte[][] ChunkData { get; set; } 29 30 TimeSpan TimeLimit { get; set; } 30 void Run(CancellationToken cancellationToken, ResultCollection resul s);31 void Run(CancellationToken cancellationToken, ResultCollection results); 31 32 } 32 33 }
Note: See TracChangeset
for help on using the changeset viewer.