1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 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 |
|
---|
22 | using System;
|
---|
23 | using System.Collections.Generic;
|
---|
24 | using System.Linq;
|
---|
25 | using HEAL.Attic;
|
---|
26 | using HeuristicLab.Common;
|
---|
27 | using HeuristicLab.Core;
|
---|
28 | using HeuristicLab.Parameters;
|
---|
29 |
|
---|
30 | namespace HeuristicLab.Optimization {
|
---|
31 | [Item("Encoding", "Base class for describing different encodings.")]
|
---|
32 | [StorableType("395B1372-FA54-4649-9EBE-5402A0AA9494")]
|
---|
33 | public abstract class Encoding<TEncodedSolution> : ParameterizedNamedItem, IEncoding<TEncodedSolution>
|
---|
34 | where TEncodedSolution : class, IEncodedSolution {
|
---|
35 | public sealed override bool CanChangeName {
|
---|
36 | get { return false; }
|
---|
37 | }
|
---|
38 |
|
---|
39 | private ItemSet<IOperator> encodingOperators = new ItemSet<IOperator>(new TypeEqualityComparer<IOperator>());
|
---|
40 |
|
---|
41 | [Storable(Name = "Operators")]
|
---|
42 | private IEnumerable<IOperator> StorableOperators {
|
---|
43 | get { return encodingOperators; }
|
---|
44 | set { encodingOperators = new ItemSet<IOperator>(value, new TypeEqualityComparer<IOperator>()); ; }
|
---|
45 | }
|
---|
46 |
|
---|
47 | public IEnumerable<IOperator> Operators {
|
---|
48 | get { return encodingOperators; }
|
---|
49 | set {
|
---|
50 | if (!value.OfType<ISolutionCreator<TEncodedSolution>>().Any())
|
---|
51 | throw new ArgumentException("The provided operators contain no suitable solution creator");
|
---|
52 | encodingOperators.Clear();
|
---|
53 | foreach (var op in value) encodingOperators.Add(op);
|
---|
54 |
|
---|
55 | ISolutionCreator<TEncodedSolution> newSolutionCreator = (ISolutionCreator<TEncodedSolution>)encodingOperators.FirstOrDefault(o => o.GetType() == SolutionCreator.GetType()) ??
|
---|
56 | encodingOperators.OfType<ISolutionCreator<TEncodedSolution>>().First();
|
---|
57 | SolutionCreator = newSolutionCreator;
|
---|
58 | OnOperatorsChanged();
|
---|
59 | }
|
---|
60 | }
|
---|
61 |
|
---|
62 | public IValueParameter SolutionCreatorParameter {
|
---|
63 | get { return (IValueParameter)Parameters[Name + ".SolutionCreator"]; }
|
---|
64 | }
|
---|
65 |
|
---|
66 | ISolutionCreator IEncoding.SolutionCreator {
|
---|
67 | get { return SolutionCreator; }
|
---|
68 | }
|
---|
69 | public ISolutionCreator<TEncodedSolution> SolutionCreator {
|
---|
70 | get { return (ISolutionCreator<TEncodedSolution>)SolutionCreatorParameter.Value; }
|
---|
71 | set {
|
---|
72 | if (value == null) throw new ArgumentNullException("SolutionCreator must not be null.");
|
---|
73 | encodingOperators.Remove(SolutionCreator);
|
---|
74 | encodingOperators.Add(value);
|
---|
75 | SolutionCreatorParameter.Value = value;
|
---|
76 | OnSolutionCreatorChanged();
|
---|
77 | }
|
---|
78 | }
|
---|
79 |
|
---|
80 |
|
---|
81 | [StorableConstructor]
|
---|
82 | protected Encoding(StorableConstructorFlag _) : base(_) { }
|
---|
83 | [StorableHook(HookType.AfterDeserialization)]
|
---|
84 | private void AfterDeserialization() {
|
---|
85 | RegisterEventHandlers();
|
---|
86 | }
|
---|
87 |
|
---|
88 | protected Encoding(Encoding<TEncodedSolution> original, Cloner cloner)
|
---|
89 | : base(original, cloner) {
|
---|
90 | encodingOperators = cloner.Clone(original.encodingOperators);
|
---|
91 |
|
---|
92 | RegisterEventHandlers();
|
---|
93 | }
|
---|
94 |
|
---|
95 | protected Encoding(string name)
|
---|
96 | : base(name) {
|
---|
97 | Parameters.Add(new ValueParameter<ISolutionCreator<TEncodedSolution>>(name + ".SolutionCreator", "The operator to create a solution."));
|
---|
98 | Parameters.Add(new FixedValueParameter<ReadOnlyItemSet<IOperator>>(name + ".Operators", "The operators that the encoding specifies.", encodingOperators.AsReadOnly()) {
|
---|
99 | GetsCollected = false
|
---|
100 | });
|
---|
101 |
|
---|
102 | RegisterEventHandlers();
|
---|
103 | }
|
---|
104 |
|
---|
105 | private void RegisterEventHandlers() {
|
---|
106 | SolutionCreatorParameter.ValueChanged += (o, e) => OnSolutionCreatorChanged();
|
---|
107 | }
|
---|
108 |
|
---|
109 | protected bool AddOperator(IOperator @operator) {
|
---|
110 | return encodingOperators.Add(@operator);
|
---|
111 | }
|
---|
112 |
|
---|
113 | protected bool RemoveOperator(IOperator @operator) {
|
---|
114 | return encodingOperators.Remove(@operator);
|
---|
115 | }
|
---|
116 |
|
---|
117 | public void ConfigureOperator(IItem @operator) { ConfigureOperators(new[] { @operator }); }
|
---|
118 | public virtual void ConfigureOperators(IEnumerable<IItem> operators) {
|
---|
119 | ConfigureSingleObjectiveImprovementOperators(operators.OfType<ISingleObjectiveImprovementOperator>());
|
---|
120 | }
|
---|
121 |
|
---|
122 | protected virtual void ConfigureSingleObjectiveImprovementOperators(IEnumerable<ISingleObjectiveImprovementOperator> operators) {
|
---|
123 | foreach (var op in operators) {
|
---|
124 | op.SolutionParameter.ActualName = Name;
|
---|
125 | }
|
---|
126 | }
|
---|
127 |
|
---|
128 | public event EventHandler SolutionCreatorChanged;
|
---|
129 | protected virtual void OnSolutionCreatorChanged() {
|
---|
130 | ConfigureOperator(SolutionCreator);
|
---|
131 | var handler = SolutionCreatorChanged;
|
---|
132 | if (handler != null) handler(this, EventArgs.Empty);
|
---|
133 | }
|
---|
134 |
|
---|
135 | public event EventHandler OperatorsChanged;
|
---|
136 | protected virtual void OnOperatorsChanged() {
|
---|
137 | ConfigureOperators(Operators);
|
---|
138 | var handler = OperatorsChanged;
|
---|
139 | if (handler != null) handler(this, EventArgs.Empty);
|
---|
140 | }
|
---|
141 | }
|
---|
142 | }
|
---|