Free cookie consent management tool by TermsFeed Policy Generator

source: branches/ProblemRefactoring/HeuristicLab.Optimization/3.3/BasicProblems/Operators/MultiEncodingCreator.cs @ 13351

Last change on this file since 13351 was 13351, checked in by abeham, 8 years ago

#2521: Adapted multi-encoding for new infrastructure

TODO: Evaluator, Analyzer, ... need to be copied

File size: 2.6 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2015 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.Linq;
24using HeuristicLab.Common;
25using HeuristicLab.Core;
26using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
27
28namespace HeuristicLab.Optimization {
29  [Item("MultiEncodingCreator", "Contains solution creators that together create a multi-encoding.")]
30  [StorableClass]
31  public sealed class MultiEncodingCreator : MultiEncodingOperator<ISolutionCreator>, ISolutionCreator<MultiSolution> {
32    [StorableConstructor]
33    private MultiEncodingCreator(bool deserializing) : base(deserializing) { }
34    private MultiEncodingCreator(MultiEncodingCreator original, Cloner cloner) : base(original, cloner) { }
35    public MultiEncodingCreator() { }
36
37    public override IDeepCloneable Clone(Cloner cloner) {
38      return new MultiEncodingCreator(this, cloner);
39    }
40
41    public override void AddEncoding(IEncoding encoding) {
42      base.AddEncoding(encoding);
43      var parameter = GetParameter(encoding);
44      parameter.Value = encoding.SolutionCreator;
45      encoding.SolutionCreatorChanged += Encoding_SolutionCreatorChanged;
46    }
47
48    public override bool RemoveEncoding(IEncoding encoding) {
49      var success = base.RemoveEncoding(encoding);
50      encoding.SolutionCreatorChanged -= Encoding_SolutionCreatorChanged;
51      return success;
52    }
53
54    private void Encoding_SolutionCreatorChanged(object sender, EventArgs e) {
55      var encoding = (IEncoding)sender;
56      var parameter = GetParameter(encoding);
57
58      var oldCreator = parameter.ValidValues.Single(creator => creator.GetType() == encoding.SolutionCreator.GetType());
59      parameter.ValidValues.Remove(oldCreator);
60      parameter.ValidValues.Add(encoding.SolutionCreator);
61      parameter.Value = encoding.SolutionCreator;
62    }
63  }
64}
Note: See TracBrowser for help on using the repository browser.