Free cookie consent management tool by TermsFeed Policy Generator

source: branches/ProgrammableProblem/HeuristicLab.Optimization/3.3/BasicProblems/MultiEncoding.cs @ 11949

Last change on this file since 11949 was 11949, checked in by mkommend, 9 years ago

#2174: Distributed files in programmable problem branch to the correct plugins.

File size: 3.5 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 System.Linq;
25using HeuristicLab.Common;
26using HeuristicLab.Core;
27using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
28using HeuristicLab.PluginInfrastructure;
29
30namespace HeuristicLab.Optimization {
31  [Item("MultiEncoding", "Describes a combined encoding consisting of multiple simpler encodings.")]
32  [StorableClass]
33  public sealed class MultiEncoding : Encoding<MultiEncodingCreator> {
34
35    private readonly List<IEncoding> encodings;
36    [Storable]
37    public IEnumerable<IEncoding> Encodings {
38      get { return encodings; }
39      private set { encodings.AddRange(value); }
40    }
41
42    [StorableConstructor]
43    private MultiEncoding(bool deserializing)
44      : base(deserializing) {
45      encodings = new List<IEncoding>();
46    }
47    public override IDeepCloneable Clone(Cloner cloner) { return new MultiEncoding(this, cloner); }
48    private MultiEncoding(MultiEncoding original, Cloner cloner)
49      : base(original, cloner) {
50      encodings = new List<IEncoding>(original.Encodings.Select(cloner.Clone));
51    }
52    public MultiEncoding()
53      : base("MultiEncoding") {
54      encodings = new List<IEncoding>();
55      SolutionCreator = new MultiEncodingCreator();
56
57      foreach (var @operator in ApplicationManager.Manager.GetInstances<IMultiEncodingOperator>())
58        encodingOperators.Add(@operator);
59    }
60
61    public override Individual GetIndividual(IScope scope) {
62      return new MultiEncodingIndividual(this, scope);
63    }
64
65    public MultiEncoding Add(IEncoding encoding) {
66      if (encoding is MultiEncoding) throw new InvalidOperationException("Nesting of MultiEncodings is not supported.");
67      if (Encodings.Any(e => e.Name == encoding.Name)) throw new ArgumentException("Encoding name must be unique", "encoding.Name");
68      encodings.Add(encoding);
69
70      Parameters.AddRange(encoding.Parameters);
71
72      foreach (var @operator in Operators.OfType<IMultiEncodingOperator>()) {
73        @operator.AddEncoding(encoding);
74      }
75      OnEncodingsChanged();
76      return this;
77    }
78
79    public bool Remove(IEncoding encoding) {
80      var success = encodings.Remove(encoding);
81      Parameters.RemoveRange(encoding.Parameters);
82      foreach (var @operator in Operators.OfType<IMultiEncodingOperator>()) {
83        @operator.RemoveEncoding(encoding);
84      }
85      OnEncodingsChanged();
86      return success;
87    }
88
89    public override void ConfigureOperators(IEnumerable<IOperator> operators) {
90    }
91
92    public event EventHandler EncodingsChanged;
93    private void OnEncodingsChanged() {
94      var handler = EncodingsChanged;
95      if (handler != null) handler(this, EventArgs.Empty);
96    }
97  }
98}
Note: See TracBrowser for help on using the repository browser.