Free cookie consent management tool by TermsFeed Policy Generator

source: branches/ProgrammableProblem/HeuristicLab.Problems.Programmable/3.3/Encodings/IntegerEncoding.cs @ 11582

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

#2174: Configured solution creator in single encodings.

File size: 10.6 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.Data;
28using HeuristicLab.Encodings.IntegerVectorEncoding;
29using HeuristicLab.Optimization;
30using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
31using HeuristicLab.PluginInfrastructure;
32
33namespace HeuristicLab.Problems.Programmable {
34  [Item("IntegerEncoding", "Describes an integer vector encoding.")]
35  [StorableClass]
36  public class IntegerEncoding : Encoding<IIntegerVectorCreator> {
37    #region Encoding Parameters
38    [Storable]
39    private IFixedValueParameter<IntValue> lengthParameter;
40    public IFixedValueParameter<IntValue> LengthParameter {
41      get { return lengthParameter; }
42      set {
43        if (value == null) throw new ArgumentNullException("Length parameter must not be null.");
44        if (lengthParameter == value) return;
45        lengthParameter = value;
46        OnLengthParameterChanged();
47      }
48    }
49
50    [Storable]
51    private IValueParameter<IntMatrix> boundsParameter;
52    public IValueParameter<IntMatrix> BoundsParameter {
53      get { return boundsParameter; }
54      set {
55        if (value == null) throw new ArgumentNullException("Bounds parameter must not be null.");
56        if (boundsParameter == value) return;
57        boundsParameter = value;
58        OnBoundsParameterChanged();
59      }
60    }
61
62    public override IEnumerable<IValueParameter> Parameters {
63      get { return base.Parameters.Concat(new IValueParameter[] { LengthParameter, BoundsParameter }); }
64    }
65    #endregion
66
67    public int Length {
68      get { return LengthParameter.Value.Value; }
69      set { LengthParameter.Value.Value = value; }
70    }
71    public IntMatrix Bounds {
72      get { return BoundsParameter.Value; }
73      set { BoundsParameter.Value = value; }
74    }
75
76    [StorableConstructor]
77    protected IntegerEncoding(bool deserializing) : base(deserializing) { }
78    [StorableHook(HookType.AfterDeserialization)]
79    private void AfterDeserialization() {
80      RegisterParameterEvents();
81      DiscoverOperators();
82    }
83
84    protected IntegerEncoding(IntegerEncoding original, Cloner cloner)
85      : base(original, cloner) {
86      lengthParameter = cloner.Clone(original.lengthParameter);
87      boundsParameter = cloner.Clone(original.boundsParameter);
88      RegisterParameterEvents();
89    }
90    public override IDeepCloneable Clone(Cloner cloner) { return new IntegerEncoding(this, cloner); }
91
92    public IntegerEncoding(string name, int length, int min, int max, int? step = null)
93      : base(name) {
94      if (min >= max) throw new ArgumentException("min must be less than max", "min");
95      if (step.HasValue && step.Value <= 0) throw new ArgumentException("step must be greater than zero or null", "step");
96      Length = length;
97      Bounds = new IntMatrix(1, step.HasValue ? 3 : 2);
98      Bounds[0, 0] = min;
99      Bounds[0, 1] = max;
100      if (step.HasValue) Bounds[0, 2] = step.Value;
101      RegisterParameterEvents();
102      DiscoverOperators();
103      SolutionCreator = Operators.OfType<UniformRandomIntegerVectorCreator>().Single();
104    }
105    public IntegerEncoding(string name, int length, IList<int> min, IList<int> max, IList<int> step = null)
106      : base(name) {
107      if (min.Count == 0) throw new ArgumentException("Bounds must be given for the integer parameters.");
108      if (min.Count != max.Count) throw new ArgumentException("min must be of the same length as max", "min");
109      if (step != null && min.Count != step.Count) throw new ArgumentException("step must be of the same length as min or null", "step");
110      if (min.Zip(max, (mi, ma) => mi >= ma).Any(x => x)) throw new ArgumentException("min must be less than max in each dimension", "min");
111      Length = length;
112      Bounds = new IntMatrix(min.Count, step != null ? 3 : 2);
113      for (int i = 0; i < min.Count; i++) {
114        Bounds[i, 0] = min[i];
115        Bounds[i, 1] = max[i];
116        if (step != null) Bounds[i, 2] = step[i];
117      }
118      RegisterParameterEvents();
119      DiscoverOperators();
120      SolutionCreator = Operators.OfType<UniformRandomIntegerVectorCreator>().Single();
121    }
122
123    private void OnLengthParameterChanged() {
124      RegisterLengthParameterEvents();
125      ConfigureOperators(Operators);
126    }
127    private void OnBoundsParameterChanged() {
128      RegisterBoundsParameterEvents();
129      ConfigureOperators(Operators);
130    }
131
132    private void RegisterParameterEvents() {
133      RegisterLengthParameterEvents();
134      RegisterBoundsParameterEvents();
135    }
136    private void RegisterLengthParameterEvents() {
137      LengthParameter.ValueChanged += (o, s) => ConfigureOperators(Operators);
138      LengthParameter.Value.ValueChanged += (o, s) => ConfigureOperators(Operators);
139    }
140    private void RegisterBoundsParameterEvents() {
141      BoundsParameter.ValueChanged += (o, s) => ConfigureOperators(Operators);
142      boundsParameter.Value.ToStringChanged += (o, s) => ConfigureOperators(Operators);
143    }
144
145
146    #region Operator Discovery
147    private static readonly IEnumerable<Type> encodingSpecificOperatorTypes;
148    static IntegerEncoding() {
149      encodingSpecificOperatorTypes = new List<Type>() {
150        typeof (IIntegerVectorOperator),
151        typeof (IIntegerVectorCreator),
152        typeof (IIntegerVectorCrossover),
153        typeof (IIntegerVectorManipulator),
154        typeof (IIntegerVectorStdDevStrategyParameterOperator),
155        typeof (IIntegerVectorMultiNeighborhoodShakingOperator),
156      };
157    }
158    private void DiscoverOperators() {
159      var discoveredTypes = ApplicationManager.Manager.GetTypes(encodingSpecificOperatorTypes, true, false, false);
160      var operators = discoveredTypes.Select(t => (IOperator)Activator.CreateInstance(t));
161      var newOperators = operators.Except(encodingOperators, new TypeEqualityComparer<IOperator>()).ToList();
162
163      ConfigureOperators(newOperators);
164      encodingOperators.AddRange(newOperators);
165    }
166    #endregion
167
168    public override void ConfigureOperators(IEnumerable<IOperator> operators) {
169      ConfigureBoundedOperators(Operators.OfType<IBoundedIntegerVectorOperator>());
170      ConfigureCreators(Operators.OfType<IIntegerVectorCreator>());
171      ConfigureCrossovers(Operators.OfType<IIntegerVectorCrossover>());
172      ConfigureManipulators(Operators.OfType<IIntegerVectorManipulator>());
173      ConfigureShakingOperators(Operators.OfType<IIntegerVectorMultiNeighborhoodShakingOperator>());
174      ConfigureStrategyVectorOperator(Operators.OfType<IIntegerVectorStdDevStrategyParameterOperator>());
175    }
176
177    #region Specific Operator Wiring
178    private void ConfigureBoundedOperators(IEnumerable<IBoundedIntegerVectorOperator> boundedOperators) {
179      foreach (var boundedOperator in boundedOperators) {
180        boundedOperator.BoundsParameter.ActualName = BoundsParameter.Name;
181      }
182    }
183
184    private void ConfigureCreators(IEnumerable<IIntegerVectorCreator> creators) {
185      foreach (var creator in creators) {
186        creator.IntegerVectorParameter.ActualName = Name;
187        creator.BoundsParameter.ActualName = BoundsParameter.Name;
188        creator.LengthParameter.ActualName = LengthParameter.Name;
189      }
190    }
191
192    private void ConfigureCrossovers(IEnumerable<IIntegerVectorCrossover> crossovers) {
193      foreach (var crossover in crossovers) {
194        crossover.ChildParameter.ActualName = Name;
195        crossover.ParentsParameter.ActualName = Name;
196      }
197    }
198
199    private void ConfigureManipulators(IEnumerable<IIntegerVectorManipulator> manipulators) {
200      foreach (var manipulator in manipulators) {
201        manipulator.IntegerVectorParameter.ActualName = Name;
202        manipulator.IntegerVectorParameter.Hidden = true;
203        var sm = manipulator as ISelfAdaptiveManipulator;
204        if (sm != null) {
205          var p = sm.StrategyParameterParameter as ILookupParameter;
206          if (p != null) {
207            p.ActualName = Name + "Strategy";
208          }
209        }
210      }
211    }
212
213    private void ConfigureShakingOperators(IEnumerable<IIntegerVectorMultiNeighborhoodShakingOperator> shakingOperators) {
214      foreach (var shakingOperator in shakingOperators) {
215        shakingOperator.IntegerVectorParameter.ActualName = Name;
216      }
217    }
218
219    private void ConfigureStrategyVectorOperator(IEnumerable<IIntegerVectorStdDevStrategyParameterOperator> strategyVectorOperators) {
220      var bounds = new DoubleMatrix(Bounds.Rows, Bounds.Columns);
221      for (var i = 0; i < bounds.Rows; i++) {
222        bounds[i, 1] = (int)Math.Ceiling(0.33 * (Bounds[i, 1] - Bounds[i, 0]));
223        bounds[i, 0] = 0;
224        if (bounds.Columns > 2) bounds[i, 2] = Bounds[i, 2];
225      }
226      foreach (var s in strategyVectorOperators) {
227        var c = s as IIntegerVectorStdDevStrategyParameterCreator;
228        if (c != null) {
229          c.BoundsParameter.Value = (DoubleMatrix)bounds.Clone();
230          c.LengthParameter.ActualName = Name;
231          c.StrategyParameterParameter.ActualName = Name + "Strategy";
232        }
233        var m = s as IIntegerVectorStdDevStrategyParameterManipulator;
234        if (m != null) {
235          m.BoundsParameter.Value = (DoubleMatrix)bounds.Clone();
236          m.StrategyParameterParameter.ActualName = Name + "Strategy";
237        }
238        var mm = s as StdDevStrategyVectorManipulator;
239        if (mm != null) {
240          mm.GeneralLearningRateParameter.Value = new DoubleValue(1.0 / Math.Sqrt(2 * Length));
241          mm.LearningRateParameter.Value = new DoubleValue(1.0 / Math.Sqrt(2 * Math.Sqrt(Length)));
242        }
243        var x = s as IIntegerVectorStdDevStrategyParameterCrossover;
244        if (x != null) {
245          x.ParentsParameter.ActualName = Name + "Strategy";
246          x.StrategyParameterParameter.ActualName = Name + "Strategy";
247        }
248      }
249    }
250    #endregion
251  }
252}
Note: See TracBrowser for help on using the repository browser.