Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/16/11 16:48:09 (12 years ago)
Author:
ascheibe
Message:

#1659

  • renamed benchmarking algs to Benchmark where it was missing
  • merged from trunk
Location:
branches/Benchmarking
Files:
4 edited
1 moved

Legend:

Unmodified
Added
Removed
  • branches/Benchmarking

    • Property svn:mergeinfo changed
      /trunkmerged: 7001
  • branches/Benchmarking/sources

  • branches/Benchmarking/sources/HeuristicLab.Algorithms.Benchmarks/3.3/DhrystoneBenchmark.cs

    r7002 r7004  
    3333  [Item("Dhrystone Algorithm", "Dhrystone benchmarking algorithm.")]
    3434  [StorableClass]
    35   public class DhrystoneAlgorithm : IBenchmark {
     35  public class DhrystoneBenchmark : IBenchmark {
    3636    [Storable]
    3737    private byte[][] chunk;
     
    9898
    9999    [StorableConstructor]
    100     public DhrystoneAlgorithm(bool deserializing) { }
    101 
    102     public DhrystoneAlgorithm() { }
    103 
    104     protected DhrystoneAlgorithm(DhrystoneAlgorithm original, Cloner cloner) {
     100    public DhrystoneBenchmark(bool deserializing) { }
     101
     102    public DhrystoneBenchmark() { }
     103
     104    protected DhrystoneBenchmark(DhrystoneBenchmark original, Cloner cloner) {
    105105      cloner.RegisterClonedObject(original, this);
    106106    }
     
    392392
    393393    public IDeepCloneable Clone(Cloner cloner) {
    394       return new DhrystoneAlgorithm(this, cloner);
     394      return new DhrystoneBenchmark(this, cloner);
    395395    }
    396396
  • branches/Benchmarking/sources/HeuristicLab.Algorithms.Benchmarks/3.3/HeuristicLab.Algorithms.Benchmarks-3.3.csproj

    r7002 r7004  
    100100    <Compile Include="Plugin.cs" />
    101101    <Compile Include="Properties\AssemblyInfo.cs" />
    102     <Compile Include="WhetstoneAlgorithm.cs" />
     102    <Compile Include="WhetstoneBenchmark.cs" />
    103103  </ItemGroup>
    104104  <ItemGroup>
Note: See TracChangeset for help on using the changeset viewer.