Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/24/15 17:08:13 (8 years ago)
Author:
ascheibe
Message:

#2520 added guids to storable classes

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 Information
     1#region License Information
    22/* HeuristicLab
    33 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     
    3030namespace HeuristicLab.Algorithms.Benchmarks {
    3131  [Item("Benchmark", "Base class for benchmarks.")]
    32   [StorableClass]
     32  [StorableClass("FBCB7B7C-8943-4E02-A289-A6C47096FE8A")]
    3333  public abstract class Benchmark : IBenchmark {
    3434    public virtual string ItemName {
  • branches/PersistenceOverhaul/HeuristicLab.Algorithms.Benchmarks/3.3/BenchmarkAlgorithm.cs

    r12504 r13368  
    1 #region License Information
     1#region License Information
    22/* HeuristicLab
    33 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     
    3838  [Item("Benchmark Algorithm", "An algorithm to execute performance benchmarks (Linpack, Dhrystone, Whetstone, etc.).")]
    3939  [Creatable(CreatableAttribute.Categories.TestingAndAnalysis, Priority = 130)]
    40   [StorableClass]
     40  [StorableClass("CD2F76AD-3E63-4114-B12B-DC7A03FC20CD")]
    4141  public sealed class BenchmarkAlgorithm : IAlgorithm {
    4242    private CancellationTokenSource cancellationTokenSource;
  • branches/PersistenceOverhaul/HeuristicLab.Algorithms.Benchmarks/3.3/Dhrystone.cs

    r12012 r13368  
    1 #region License Information
     1#region License Information
    22/* HeuristicLab
    33 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     
    3131namespace HeuristicLab.Algorithms.Benchmarks {
    3232  [Item("Dhrystone", "Dhrystone performance benchmark.")]
    33   [StorableClass]
     33  [StorableClass("028FC98B-D4F7-455F-B895-CBDDE61A1CF4")]
    3434  public sealed class Dhrystone : Benchmark {
    3535    private const int Ident_1 = 0;
  • branches/PersistenceOverhaul/HeuristicLab.Algorithms.Benchmarks/3.3/Linpack.cs

    r12012 r13368  
    1 #region License Information
     1#region License Information
    22/* HeuristicLab
    33 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     
    3131namespace HeuristicLab.Algorithms.Benchmarks {
    3232  [Item("Linpack", "Linpack performance benchmark.")]
    33   [StorableClass]
     33  [StorableClass("EADE3F32-C74C-4708-ADA4-418B63207B02")]
    3434  public sealed class Linpack : Benchmark {
    3535    private const int DEFAULT_PSIZE = 1500;
  • branches/PersistenceOverhaul/HeuristicLab.Algorithms.Benchmarks/3.3/Whetstone.cs

    r12012 r13368  
    1 #region License Information
     1#region License Information
    22/* HeuristicLab
    33 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     
    3131namespace HeuristicLab.Algorithms.Benchmarks {
    3232  [Item("Whetstone", "Whetstone performance benchmark.")]
    33   [StorableClass]
     33  [StorableClass("5504509A-CC61-4385-9C02-E62CF6B1D07F")]
    3434  public sealed class Whetstone : Benchmark {
    3535    private long begin_time;
Note: See TracChangeset for help on using the changeset viewer.