Free cookie consent management tool by TermsFeed Policy Generator

source: branches/ProgrammableProblem/HeuristicLab.Problems.Programmable/3.3/ProblemDefinition.cs @ 11484

Last change on this file since 11484 was 11484, checked in by abeham, 10 years ago

#2174: Major refactoring

  • Removed ProblemDefinitionHosts
  • Renamed ParameterVector to Individual
  • Renamed Configuration to Encoding
  • Changed handling of existing operators that they will not be removed and recreated, but only rewired
File size: 2.4 KB
Line 
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
22using System;
23using System.Collections.Generic;
24using HeuristicLab.Common;
25using HeuristicLab.Core;
26using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
27
28namespace HeuristicLab.Problems.Programmable {
29  [Item("ProblemDefinition", "Base class for problem definitions.")]
30  [StorableClass]
31  public abstract class ProblemDefinition : NamedItem, IProblemDefinition {
32    [Storable(Name = "Encoding")]
33    private Encoding encoding;
34    public Encoding Encoding {
35      get { return encoding; }
36      protected set {
37        if (encoding == value) return;
38        encoding = value;
39        OnProblemDefinitionChanged();
40      }
41    }
42
43    [StorableConstructor]
44    protected ProblemDefinition(bool deserializing) : base(deserializing) { }
45    protected ProblemDefinition(ProblemDefinition original, Cloner cloner)
46      : base(original, cloner) {
47      this.encoding = cloner.Clone(original.encoding);
48    }
49    protected ProblemDefinition(Encoding encoding) : this(encoding, "ProblemDefinition") { }
50    protected ProblemDefinition(Encoding encoding, string name) : this(encoding, name, string.Empty) { }
51    protected ProblemDefinition(Encoding encoding, string name, string description)
52      : base(name, description) {
53      Encoding = encoding;
54    }
55
56    public event EventHandler ProblemDefinitionChanged;
57    protected void OnProblemDefinitionChanged() {
58      var handler = ProblemDefinitionChanged;
59      if (handler != null) handler(this, EventArgs.Empty);
60    }
61
62    public abstract IEnumerable<Individual> GetNeighbors(IRandom random, Individual vector);
63  }
64}
Note: See TracBrowser for help on using the repository browser.