- Timestamp:
- 11/24/15 17:08:13 (9 years ago)
- Location:
- branches/PersistenceOverhaul/HeuristicLab.Algorithms.Benchmarks/3.3
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PersistenceOverhaul/HeuristicLab.Algorithms.Benchmarks/3.3/Benchmark.cs
r12012 r13368 1 #region License Information1 #region License Information 2 2 /* HeuristicLab 3 3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) … … 30 30 namespace HeuristicLab.Algorithms.Benchmarks { 31 31 [Item("Benchmark", "Base class for benchmarks.")] 32 [StorableClass ]32 [StorableClass("FBCB7B7C-8943-4E02-A289-A6C47096FE8A")] 33 33 public abstract class Benchmark : IBenchmark { 34 34 public virtual string ItemName { -
branches/PersistenceOverhaul/HeuristicLab.Algorithms.Benchmarks/3.3/BenchmarkAlgorithm.cs
r12504 r13368 1 #region License Information1 #region License Information 2 2 /* HeuristicLab 3 3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) … … 38 38 [Item("Benchmark Algorithm", "An algorithm to execute performance benchmarks (Linpack, Dhrystone, Whetstone, etc.).")] 39 39 [Creatable(CreatableAttribute.Categories.TestingAndAnalysis, Priority = 130)] 40 [StorableClass ]40 [StorableClass("CD2F76AD-3E63-4114-B12B-DC7A03FC20CD")] 41 41 public sealed class BenchmarkAlgorithm : IAlgorithm { 42 42 private CancellationTokenSource cancellationTokenSource; -
branches/PersistenceOverhaul/HeuristicLab.Algorithms.Benchmarks/3.3/Dhrystone.cs
r12012 r13368 1 #region License Information1 #region License Information 2 2 /* HeuristicLab 3 3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) … … 31 31 namespace HeuristicLab.Algorithms.Benchmarks { 32 32 [Item("Dhrystone", "Dhrystone performance benchmark.")] 33 [StorableClass ]33 [StorableClass("028FC98B-D4F7-455F-B895-CBDDE61A1CF4")] 34 34 public sealed class Dhrystone : Benchmark { 35 35 private const int Ident_1 = 0; -
branches/PersistenceOverhaul/HeuristicLab.Algorithms.Benchmarks/3.3/Linpack.cs
r12012 r13368 1 #region License Information1 #region License Information 2 2 /* HeuristicLab 3 3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) … … 31 31 namespace HeuristicLab.Algorithms.Benchmarks { 32 32 [Item("Linpack", "Linpack performance benchmark.")] 33 [StorableClass ]33 [StorableClass("EADE3F32-C74C-4708-ADA4-418B63207B02")] 34 34 public sealed class Linpack : Benchmark { 35 35 private const int DEFAULT_PSIZE = 1500; -
branches/PersistenceOverhaul/HeuristicLab.Algorithms.Benchmarks/3.3/Whetstone.cs
r12012 r13368 1 #region License Information1 #region License Information 2 2 /* HeuristicLab 3 3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) … … 31 31 namespace HeuristicLab.Algorithms.Benchmarks { 32 32 [Item("Whetstone", "Whetstone performance benchmark.")] 33 [StorableClass ]33 [StorableClass("5504509A-CC61-4385-9C02-E62CF6B1D07F")] 34 34 public sealed class Whetstone : Benchmark { 35 35 private long begin_time;
Note: See TracChangeset
for help on using the changeset viewer.