[7247] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[12012] | 3 | * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[7247] | 4 | *
|
---|
| 5 | * This file is part of HeuristicLab.
|
---|
| 6 | *
|
---|
| 7 | * HeuristicLab is free software: you can redistribute it and/or modify
|
---|
| 8 | * it under the terms of the GNU General Public License as published by
|
---|
| 9 | * the Free Software Foundation, either version 3 of the License, or
|
---|
| 10 | * (at your option) any later version.
|
---|
| 11 | *
|
---|
| 12 | * HeuristicLab is distributed in the hope that it will be useful,
|
---|
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
| 15 | * GNU General Public License for more details.
|
---|
| 16 | *
|
---|
| 17 | * You should have received a copy of the GNU General Public License
|
---|
| 18 | * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
|
---|
| 19 | */
|
---|
| 20 | #endregion
|
---|
| 21 |
|
---|
| 22 | using System;
|
---|
| 23 | using System.Drawing;
|
---|
| 24 | using System.Threading;
|
---|
| 25 | using HeuristicLab.Common;
|
---|
| 26 | using HeuristicLab.Core;
|
---|
| 27 | using HeuristicLab.Optimization;
|
---|
| 28 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
| 29 |
|
---|
| 30 | namespace HeuristicLab.Algorithms.Benchmarks {
|
---|
| 31 | [Item("Benchmark", "Base class for benchmarks.")]
|
---|
| 32 | [StorableClass]
|
---|
| 33 | public abstract class Benchmark : IBenchmark {
|
---|
[13656] | 34 | public virtual string ItemName
|
---|
| 35 | {
|
---|
[7247] | 36 | get { return ItemAttribute.GetName(this.GetType()); }
|
---|
| 37 | }
|
---|
[13656] | 38 | public virtual string ItemDescription
|
---|
| 39 | {
|
---|
[7247] | 40 | get { return ItemAttribute.GetDescription(this.GetType()); }
|
---|
| 41 | }
|
---|
[13656] | 42 | public Version ItemVersion
|
---|
| 43 | {
|
---|
[7247] | 44 | get { return ItemAttribute.GetVersion(this.GetType()); }
|
---|
| 45 | }
|
---|
[13656] | 46 |
|
---|
| 47 | public virtual Image ItemImage
|
---|
| 48 | {
|
---|
[7247] | 49 | get { return ItemAttribute.GetImage(this.GetType()); }
|
---|
| 50 | }
|
---|
| 51 |
|
---|
| 52 | [Storable]
|
---|
| 53 | private byte[][] chunk;
|
---|
[13656] | 54 | public byte[][] ChunkData
|
---|
| 55 | {
|
---|
[7247] | 56 | get { return chunk; }
|
---|
| 57 | set { chunk = value; }
|
---|
| 58 | }
|
---|
| 59 |
|
---|
| 60 | [Storable]
|
---|
| 61 | private TimeSpan timeLimit;
|
---|
[13656] | 62 | public TimeSpan TimeLimit
|
---|
| 63 | {
|
---|
[7247] | 64 | get { return timeLimit; }
|
---|
| 65 | set { timeLimit = value; }
|
---|
| 66 | }
|
---|
| 67 |
|
---|
| 68 | [StorableConstructor]
|
---|
| 69 | protected Benchmark(bool deserializing) { }
|
---|
| 70 | protected Benchmark(Benchmark original, Cloner cloner) {
|
---|
| 71 | cloner.RegisterClonedObject(original, this);
|
---|
| 72 | }
|
---|
| 73 | protected Benchmark() { }
|
---|
| 74 |
|
---|
| 75 | public object Clone() {
|
---|
| 76 | return Clone(new Cloner());
|
---|
| 77 | }
|
---|
| 78 | public abstract IDeepCloneable Clone(Cloner cloner);
|
---|
| 79 |
|
---|
| 80 | public abstract void Run(CancellationToken token, ResultCollection results);
|
---|
| 81 |
|
---|
| 82 | public override string ToString() {
|
---|
| 83 | return ItemName;
|
---|
| 84 | }
|
---|
| 85 |
|
---|
| 86 | public event EventHandler ItemImageChanged;
|
---|
| 87 | protected virtual void OnItemImageChanged() {
|
---|
| 88 | EventHandler handler = ItemImageChanged;
|
---|
| 89 | if (handler != null) handler(this, EventArgs.Empty);
|
---|
| 90 | }
|
---|
| 91 |
|
---|
| 92 | public event EventHandler ToStringChanged;
|
---|
| 93 | protected virtual void OnToStringChanged() {
|
---|
| 94 | EventHandler handler = ToStringChanged;
|
---|
| 95 | if (handler != null) handler(this, EventArgs.Empty);
|
---|
| 96 | }
|
---|
| 97 | }
|
---|
| 98 | }
|
---|