- Timestamp:
- 07/07/19 23:40:10 (4 years ago)
- Location:
- stable
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
-
stable/HeuristicLab.Algorithms.Benchmarks/3.3/Whetstone.cs
r15584 r17097 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 27 27 using HeuristicLab.Data; 28 28 using HeuristicLab.Optimization; 29 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;29 using HEAL.Attic; 30 30 31 31 namespace HeuristicLab.Algorithms.Benchmarks { 32 32 [Item("Whetstone", "Whetstone performance benchmark.")] 33 [Storable Class]33 [StorableType("95D2274E-EFC7-444C-B5CF-F087B0A3C027")] 34 34 public sealed class Whetstone : Benchmark { 35 35 private long begin_time; … … 45 45 46 46 [StorableConstructor] 47 private Whetstone( bool deserializing) : base(deserializing) { }47 private Whetstone(StorableConstructorFlag _) : base(_) { } 48 48 private Whetstone(Whetstone original, Cloner cloner) : base(original, cloner) { } 49 49 public Whetstone() { }
Note: See TracChangeset
for help on using the changeset viewer.