[11397] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
| 3 | * Copyright (C) 2002-2014 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
| 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 |
|
---|
[11484] | 22 | using System;
|
---|
| 23 | using System.Collections.Generic;
|
---|
| 24 | using HeuristicLab.Common;
|
---|
| 25 | using HeuristicLab.Core;
|
---|
| 26 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
| 27 |
|
---|
[11397] | 28 | namespace HeuristicLab.Problems.Programmable {
|
---|
[11484] | 29 | [Item("ProblemDefinition", "Base class for problem definitions.")]
|
---|
| 30 | [StorableClass]
|
---|
| 31 | public abstract class ProblemDefinition : NamedItem, IProblemDefinition {
|
---|
| 32 | [Storable(Name = "Encoding")]
|
---|
[11550] | 33 | private IEncoding encoding;
|
---|
| 34 | public IEncoding Encoding {
|
---|
[11484] | 35 | get { return encoding; }
|
---|
| 36 | protected set {
|
---|
[11543] | 37 | if (value == null) throw new ArgumentNullException("The encoding must not be null.");
|
---|
[11484] | 38 | if (encoding == value) return;
|
---|
| 39 | encoding = value;
|
---|
| 40 | OnProblemDefinitionChanged();
|
---|
| 41 | }
|
---|
| 42 | }
|
---|
[11402] | 43 |
|
---|
[11484] | 44 | [StorableConstructor]
|
---|
| 45 | protected ProblemDefinition(bool deserializing) : base(deserializing) { }
|
---|
| 46 | protected ProblemDefinition(ProblemDefinition original, Cloner cloner)
|
---|
| 47 | : base(original, cloner) {
|
---|
| 48 | this.encoding = cloner.Clone(original.encoding);
|
---|
| 49 | }
|
---|
[11550] | 50 | protected ProblemDefinition(IEncoding encoding) : this(encoding, "ProblemDefinition") { }
|
---|
| 51 | protected ProblemDefinition(IEncoding encoding, string name) : this(encoding, name, string.Empty) { }
|
---|
| 52 | protected ProblemDefinition(IEncoding encoding, string name, string description)
|
---|
[11484] | 53 | : base(name, description) {
|
---|
| 54 | Encoding = encoding;
|
---|
| 55 | }
|
---|
| 56 |
|
---|
| 57 | public event EventHandler ProblemDefinitionChanged;
|
---|
| 58 | protected void OnProblemDefinitionChanged() {
|
---|
| 59 | var handler = ProblemDefinitionChanged;
|
---|
| 60 | if (handler != null) handler(this, EventArgs.Empty);
|
---|
| 61 | }
|
---|
| 62 |
|
---|
| 63 | public abstract IEnumerable<Individual> GetNeighbors(IRandom random, Individual vector);
|
---|
[11397] | 64 | }
|
---|
| 65 | }
|
---|