- Timestamp:
- 01/03/12 11:22:21 (13 years ago)
- Location:
- branches/HeuristicLab.TimeSeries
- Files:
-
- 3 deleted
- 6 edited
- 5 copied
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/HeuristicLab.Algorithms.Benchmarks-3.3.csproj
r7006 r7268 84 84 <Reference Include="System" /> 85 85 <Reference Include="System.Core" /> 86 <Reference Include="System.Data" /> 86 87 <Reference Include="System.Drawing" /> 87 <Reference Include="System.Xml.Linq" />88 <Reference Include="System.Data.DataSetExtensions" />89 <Reference Include="Microsoft.CSharp" />90 <Reference Include="System.Data" />91 88 <Reference Include="System.Xml" /> 92 89 </ItemGroup> 93 90 <ItemGroup> 94 <Compile Include="Benchmark.cs"> 95 <SubType>Code</SubType> 96 </Compile> 97 <Compile Include="DhrystoneBenchmark.cs" /> 91 <Compile Include="Benchmark.cs" /> 92 <Compile Include="BenchmarkAlgorithm.cs" /> 93 <Compile Include="Dhrystone.cs" /> 98 94 <Compile Include="IBenchmark.cs" /> 99 <Compile Include="Linpack Benchmark.cs" />95 <Compile Include="Linpack.cs" /> 100 96 <Compile Include="Plugin.cs" /> 101 97 <Compile Include="Properties\AssemblyInfo.cs" /> 102 <Compile Include="Whetstone Benchmark.cs" />98 <Compile Include="Whetstone.cs" /> 103 99 </ItemGroup> 104 100 <ItemGroup> … … 131 127 <Project>{BBAB9DF5-5EF3-4BA8-ADE9-B36E82114937}</Project> 132 128 <Name>HeuristicLab.Data-3.3</Name> 133 <Private>False</Private>134 </ProjectReference>135 <ProjectReference Include="..\..\HeuristicLab.Operators\3.3\HeuristicLab.Operators-3.3.csproj">136 <Project>{23DA7FF4-D5B8-41B6-AA96-F0561D24F3EE}</Project>137 <Name>HeuristicLab.Operators-3.3</Name>138 129 <Private>False</Private> 139 130 </ProjectReference> -
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 } -
branches/HeuristicLab.TimeSeries/HeuristicLab.Algorithms.Benchmarks/3.3/Plugin.cs.frame
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. … … 26 26 /// Plugin class for HeuristicLab.Algorithms.Benchmark plugin. 27 27 /// </summary> 28 [Plugin("HeuristicLab.Algorithms.Benchmarks", "Provides different benchmarking algorithms", "3.3.5.$WCREV$")]28 [Plugin("HeuristicLab.Algorithms.Benchmarks", "Provides different performance benchmark algorithms.", "3.3.6.$WCREV$")] 29 29 [PluginFile("HeuristicLab.Algorithms.Benchmarks-3.3.dll", PluginFileType.Assembly)] 30 30 [PluginDependency("HeuristicLab.Collections", "3.3")] … … 32 32 [PluginDependency("HeuristicLab.Common.Resources", "3.3")] 33 33 [PluginDependency("HeuristicLab.Core", "3.3")] 34 [PluginDependency("HeuristicLab.Data", "3.3")] 34 [PluginDependency("HeuristicLab.Data", "3.3")] 35 35 [PluginDependency("HeuristicLab.Optimization", "3.3")] 36 36 [PluginDependency("HeuristicLab.Parameters", "3.3")] 37 [PluginDependency("HeuristicLab.Persistence", "3.3")] 37 [PluginDependency("HeuristicLab.Persistence", "3.3")] 38 38 public class HeuristicLabAlgorithmsBenchmarksPlugin : PluginBase { 39 39 } -
branches/HeuristicLab.TimeSeries/HeuristicLab.Algorithms.Benchmarks/3.3/Properties/AssemblyInfo.cs.frame
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. … … 27 27 // associated with an assembly. 28 28 [assembly: AssemblyTitle("HeuristicLab.Algorithms.Benchmarks")] 29 [assembly: AssemblyDescription(" Benchmarking")]29 [assembly: AssemblyDescription("HeuristicLab performance benchmark algorithms")] 30 30 [assembly: AssemblyConfiguration("")] 31 31 [assembly: AssemblyCompany("")] 32 32 [assembly: AssemblyProduct("HeuristicLab")] 33 [assembly: AssemblyCopyright("(c) 2002-201 1HEAL")]33 [assembly: AssemblyCopyright("(c) 2002-2012 HEAL")] 34 34 [assembly: AssemblyTrademark("")] 35 35 [assembly: AssemblyCulture("")] … … 41 41 42 42 // The following GUID is for the ID of the typelib if this project is exposed to COM 43 [assembly: Guid(" 3E422463-0CE0-400D-9544-5C11D5818769")]43 [assembly: Guid("2C246561-1750-4770-BDB9-0FD89D844068")] 44 44 45 45 // Version information for an assembly consists of the following four values: … … 53 53 // by using the '*' as shown below: 54 54 [assembly: AssemblyVersion("3.3.0.0")] 55 [assembly: AssemblyFileVersion("3.3. 5.$WCREV$")]55 [assembly: AssemblyFileVersion("3.3.6.$WCREV$")]
Note: See TracChangeset
for help on using the changeset viewer.