Free cookie consent management tool by TermsFeed Policy Generator

source: branches/ProblemRefactoring/HeuristicLab.Optimization/3.3/BasicProblems/Encoding.cs @ 13336

Last change on this file since 13336 was 13336, checked in by mkommend, 8 years ago

#2521: Refactored encodings and problems.

File size: 4.5 KB
RevLine 
[11484]1#region License Information
2/* HeuristicLab
[12012]3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
[11484]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;
[11543]23using System.Collections.Generic;
24using System.Linq;
[11484]25using HeuristicLab.Common;
26using HeuristicLab.Core;
[11952]27using HeuristicLab.Parameters;
[11484]28using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
29
[11949]30namespace HeuristicLab.Optimization {
[11484]31  [Item("Encoding", "Base class for describing different encodings.")]
32  [StorableClass]
[13336]33  public abstract class Encoding<TSolution> : ParameterizedNamedItem, IEncoding<TSolution>
34    where TSolution : class,ISolution {
[11543]35    public override sealed bool CanChangeName {
[11484]36      get { return false; }
37    }
38
[11952]39    private ItemSet<IOperator> encodingOperators = new ItemSet<IOperator>(new TypeEqualityComparer<IOperator>());
[11753]40
41    [Storable(Name = "Operators")]
42    private IEnumerable<IOperator> StorableOperators {
43      get { return encodingOperators; }
[11952]44      set { encodingOperators = new ItemSet<IOperator>(value, new TypeEqualityComparer<IOperator>()); ; }
[11753]45    }
46
[11559]47    public IEnumerable<IOperator> Operators {
48      get { return encodingOperators; }
[11753]49      set {
[13336]50        if (!value.OfType<ISolutionCreator<TSolution>>().Any())
[11753]51          throw new ArgumentException("The provided operators contain no suitable solution creator");
[11952]52        encodingOperators.Clear();
53        foreach (var op in value) encodingOperators.Add(op);
[11753]54
[13336]55        ISolutionCreator<TSolution> newSolutionCreator = (ISolutionCreator<TSolution>)encodingOperators.FirstOrDefault(o => o.GetType() == solutionCreator.GetType()) ??
56                               encodingOperators.OfType<ISolutionCreator<TSolution>>().First();
[11753]57        SolutionCreator = newSolutionCreator;
58        OnOperatorsChanged();
59      }
[11550]60    }
61
[12981]62    [Storable]
[13336]63    private ISolutionCreator<TSolution> solutionCreator;
64    public ISolutionCreator<TSolution> SolutionCreator {
[11559]65      get {
66        return solutionCreator;
67      }
68      set {
69        if (value == null) throw new ArgumentNullException("SolutionCreator must not be null.");
70        if (solutionCreator == value) return;
[11587]71        encodingOperators.Remove(solutionCreator);
72        encodingOperators.Add(value);
[11559]73        solutionCreator = value;
74        OnSolutionCreatorChanged();
75      }
76    }
77
[11553]78    [StorableConstructor]
79    protected Encoding(bool deserializing) : base(deserializing) { }
[13336]80    protected Encoding(Encoding<TSolution> original, Cloner cloner)
[11559]81      : base(original, cloner) {
[11952]82      encodingOperators = cloner.Clone(original.encodingOperators);
[11559]83      solutionCreator = cloner.Clone(original.solutionCreator);
84    }
[11952]85    protected Encoding(string name)
86      : base(name) {
87      Parameters.Add(new FixedValueParameter<ReadOnlyItemSet<IOperator>>(name + ".Operators", "The operators that the encoding specifies.", encodingOperators.AsReadOnly()));
88    }
[11553]89
[11952]90    protected bool AddOperator(IOperator @operator) {
91      return encodingOperators.Add(@operator);
92    }
93
94    protected bool RemoveOperator(IOperator @operator) {
95      return encodingOperators.Remove(@operator);
96    }
97
[11737]98    public void ConfigureOperator(IOperator @operator) { ConfigureOperators(new[] { @operator }); }
[11587]99    public abstract void ConfigureOperators(IEnumerable<IOperator> operators);
[11559]100
[11587]101    public event EventHandler SolutionCreatorChanged;
[11559]102    protected virtual void OnSolutionCreatorChanged() {
103      ConfigureOperator(SolutionCreator);
[11587]104      var handler = SolutionCreatorChanged;
105      if (handler != null) handler(this, EventArgs.Empty);
[11559]106    }
[11753]107
108    public event EventHandler OperatorsChanged;
109    protected virtual void OnOperatorsChanged() {
110      ConfigureOperators(Operators);
111      var handler = OperatorsChanged;
112      if (handler != null) handler(this, EventArgs.Empty);
113    }
[11484]114  }
115}
Note: See TracBrowser for help on using the repository browser.