Free cookie consent management tool by TermsFeed Policy Generator

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

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

#2174: Worked on operators and programmable problem base classes and scripts.

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