[11484] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[14186] | 3 | * Copyright (C) 2002-2016 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 |
|
---|
| 22 | using System;
|
---|
| 23 | using System.Collections.Generic;
|
---|
| 24 | using System.Linq;
|
---|
| 25 | using HeuristicLab.Common;
|
---|
| 26 | using HeuristicLab.Core;
|
---|
| 27 | using HeuristicLab.Data;
|
---|
[11543] | 28 | using HeuristicLab.Optimization;
|
---|
| 29 | using HeuristicLab.Parameters;
|
---|
[11484] | 30 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
[11546] | 31 | using HeuristicLab.PluginInfrastructure;
|
---|
[11484] | 32 |
|
---|
[11949] | 33 | namespace HeuristicLab.Encodings.RealVectorEncoding {
|
---|
[11885] | 34 | [Item("RealVectorEncoding", "Describes a real vector encoding.")]
|
---|
[11484] | 35 | [StorableClass]
|
---|
[11885] | 36 | public sealed class RealVectorEncoding : Encoding<IRealVectorCreator> {
|
---|
[11550] | 37 | #region Encoding Parameters
|
---|
[11598] | 38 | [Storable]
|
---|
[11543] | 39 | private IFixedValueParameter<IntValue> lengthParameter;
|
---|
| 40 | public IFixedValueParameter<IntValue> LengthParameter {
|
---|
| 41 | get { return lengthParameter; }
|
---|
[11484] | 42 | set {
|
---|
[11546] | 43 | if (value == null) throw new ArgumentNullException("Length parameter must not be null.");
|
---|
[11588] | 44 | if (value.Value == null) throw new ArgumentNullException("Length parameter value must not be null.");
|
---|
[11543] | 45 | if (lengthParameter == value) return;
|
---|
[11588] | 46 |
|
---|
| 47 | if (lengthParameter != null) Parameters.Remove(lengthParameter);
|
---|
[11543] | 48 | lengthParameter = value;
|
---|
[11588] | 49 | Parameters.Add(lengthParameter);
|
---|
[11543] | 50 | OnLengthParameterChanged();
|
---|
[11484] | 51 | }
|
---|
| 52 | }
|
---|
[11598] | 53 | [Storable]
|
---|
[11543] | 54 | private IValueParameter<DoubleMatrix> boundsParameter;
|
---|
| 55 | public IValueParameter<DoubleMatrix> BoundsParameter {
|
---|
| 56 | get { return boundsParameter; }
|
---|
[11484] | 57 | set {
|
---|
[11543] | 58 | if (value == null) throw new ArgumentNullException("Bounds parameter must not be null.");
|
---|
| 59 | if (boundsParameter == value) return;
|
---|
[11588] | 60 |
|
---|
| 61 | if (boundsParameter != null) Parameters.Remove(boundsParameter);
|
---|
[11543] | 62 | boundsParameter = value;
|
---|
[11588] | 63 | Parameters.Add(boundsParameter);
|
---|
[11543] | 64 | OnBoundsParameterChanged();
|
---|
[11484] | 65 | }
|
---|
| 66 | }
|
---|
[11550] | 67 | #endregion
|
---|
[11543] | 68 |
|
---|
| 69 | public int Length {
|
---|
| 70 | get { return LengthParameter.Value.Value; }
|
---|
| 71 | set { LengthParameter.Value.Value = value; }
|
---|
| 72 | }
|
---|
| 73 | public DoubleMatrix Bounds {
|
---|
| 74 | get { return BoundsParameter.Value; }
|
---|
| 75 | set { BoundsParameter.Value = value; }
|
---|
| 76 | }
|
---|
| 77 |
|
---|
[11484] | 78 | [StorableConstructor]
|
---|
[11885] | 79 | private RealVectorEncoding(bool deserializing) : base(deserializing) { }
|
---|
[11546] | 80 | [StorableHook(HookType.AfterDeserialization)]
|
---|
| 81 | private void AfterDeserialization() {
|
---|
| 82 | RegisterParameterEvents();
|
---|
[11550] | 83 | DiscoverOperators();
|
---|
[11546] | 84 | }
|
---|
| 85 |
|
---|
[11885] | 86 | public override IDeepCloneable Clone(Cloner cloner) { return new RealVectorEncoding(this, cloner); }
|
---|
| 87 | private RealVectorEncoding(RealVectorEncoding original, Cloner cloner)
|
---|
[11484] | 88 | : base(original, cloner) {
|
---|
[11543] | 89 | lengthParameter = cloner.Clone(original.lengthParameter);
|
---|
| 90 | boundsParameter = cloner.Clone(original.boundsParameter);
|
---|
[11546] | 91 | RegisterParameterEvents();
|
---|
[11484] | 92 | }
|
---|
[11546] | 93 |
|
---|
[11885] | 94 | public RealVectorEncoding() : this("RealVector", 10) { }
|
---|
[11892] | 95 | public RealVectorEncoding(string name) : this(name, 10) { }
|
---|
[11885] | 96 | public RealVectorEncoding(int length) : this("RealVector", length) { }
|
---|
| 97 | public RealVectorEncoding(string name, int length, double min = double.MinValue, double max = double.MaxValue)
|
---|
[11484] | 98 | : base(name) {
|
---|
| 99 | if (min >= max) throw new ArgumentException("min must be less than max", "min");
|
---|
[11543] | 100 |
|
---|
| 101 | var bounds = new DoubleMatrix(1, 2);
|
---|
[11484] | 102 | bounds[0, 0] = min;
|
---|
| 103 | bounds[0, 1] = max;
|
---|
[11543] | 104 |
|
---|
[11593] | 105 | lengthParameter = new FixedValueParameter<IntValue>(Name + ".Length", new IntValue(length));
|
---|
| 106 | boundsParameter = new ValueParameter<DoubleMatrix>(Name + ".Bounds", bounds);
|
---|
| 107 | Parameters.Add(lengthParameter);
|
---|
| 108 | Parameters.Add(boundsParameter);
|
---|
[11587] | 109 |
|
---|
| 110 | SolutionCreator = new UniformRandomRealVectorCreator();
|
---|
[11546] | 111 | RegisterParameterEvents();
|
---|
[11550] | 112 | DiscoverOperators();
|
---|
[11484] | 113 | }
|
---|
[11546] | 114 |
|
---|
[11885] | 115 | public RealVectorEncoding(string name, int length, IList<double> min, IList<double> max)
|
---|
[11484] | 116 | : base(name) {
|
---|
| 117 | if (min.Count == 0) throw new ArgumentException("Bounds must be given for the real parameters.");
|
---|
| 118 | if (min.Count != max.Count) throw new ArgumentException("min must be of the same length as max", "min");
|
---|
| 119 | if (min.Zip(max, (mi, ma) => mi >= ma).Any(x => x)) throw new ArgumentException("min must be less than max in each dimension", "min");
|
---|
[11543] | 120 |
|
---|
| 121 | var bounds = new DoubleMatrix(min.Count, 2);
|
---|
[11484] | 122 | for (int i = 0; i < min.Count; i++) {
|
---|
| 123 | bounds[i, 0] = min[i];
|
---|
| 124 | bounds[i, 1] = max[i];
|
---|
| 125 | }
|
---|
[13190] | 126 | lengthParameter = new FixedValueParameter<IntValue>(Name + ".Length", new IntValue(length));
|
---|
| 127 | boundsParameter = new ValueParameter<DoubleMatrix>(Name + ".Bounds", bounds);
|
---|
| 128 | Parameters.Add(lengthParameter);
|
---|
| 129 | Parameters.Add(boundsParameter);
|
---|
[11587] | 130 |
|
---|
| 131 | SolutionCreator = new UniformRandomRealVectorCreator();
|
---|
[11546] | 132 | RegisterParameterEvents();
|
---|
[11550] | 133 | DiscoverOperators();
|
---|
[11484] | 134 | }
|
---|
| 135 |
|
---|
[11543] | 136 | private void OnLengthParameterChanged() {
|
---|
[11546] | 137 | RegisterLengthParameterEvents();
|
---|
[11550] | 138 | ConfigureOperators(Operators);
|
---|
[11543] | 139 | }
|
---|
| 140 | private void OnBoundsParameterChanged() {
|
---|
[11546] | 141 | RegisterBoundsParameterEvents();
|
---|
[11550] | 142 | ConfigureOperators(Operators);
|
---|
[11543] | 143 | }
|
---|
[11559] | 144 |
|
---|
[11550] | 145 | private void RegisterParameterEvents() {
|
---|
[11546] | 146 | RegisterLengthParameterEvents();
|
---|
| 147 | RegisterBoundsParameterEvents();
|
---|
| 148 | }
|
---|
| 149 | private void RegisterLengthParameterEvents() {
|
---|
[11550] | 150 | LengthParameter.ValueChanged += (o, s) => ConfigureOperators(Operators);
|
---|
| 151 | LengthParameter.Value.ValueChanged += (o, s) => ConfigureOperators(Operators);
|
---|
[11546] | 152 | }
|
---|
| 153 | private void RegisterBoundsParameterEvents() {
|
---|
[11550] | 154 | BoundsParameter.ValueChanged += (o, s) => ConfigureOperators(Operators);
|
---|
| 155 | boundsParameter.Value.ToStringChanged += (o, s) => ConfigureOperators(Operators);
|
---|
[11546] | 156 | }
|
---|
[11543] | 157 |
|
---|
[11550] | 158 | #region Operator Discovery
|
---|
| 159 | private static readonly IEnumerable<Type> encodingSpecificOperatorTypes;
|
---|
[11885] | 160 | static RealVectorEncoding() {
|
---|
[11550] | 161 | encodingSpecificOperatorTypes = new List<Type>() {
|
---|
[11561] | 162 | typeof (IRealVectorOperator),
|
---|
| 163 | typeof (IRealVectorCreator),
|
---|
| 164 | typeof (IRealVectorCrossover),
|
---|
| 165 | typeof (IRealVectorManipulator),
|
---|
| 166 | typeof (IRealVectorStdDevStrategyParameterOperator),
|
---|
| 167 | typeof (IRealVectorSwarmUpdater),
|
---|
| 168 | typeof (IRealVectorParticleCreator),
|
---|
| 169 | typeof (IRealVectorParticleUpdater),
|
---|
| 170 | typeof (IRealVectorMultiNeighborhoodShakingOperator),
|
---|
| 171 | typeof (IRealVectorBoundsChecker),
|
---|
| 172 | typeof (IRealVectorMoveOperator),
|
---|
| 173 | typeof (IRealVectorMoveGenerator)
|
---|
| 174 | };
|
---|
[11546] | 175 | }
|
---|
[11550] | 176 | private void DiscoverOperators() {
|
---|
[11773] | 177 | var assembly = typeof(IRealVectorOperator).Assembly;
|
---|
| 178 | var discoveredTypes = ApplicationManager.Manager.GetTypes(encodingSpecificOperatorTypes, assembly, true, false, false);
|
---|
[11550] | 179 | var operators = discoveredTypes.Select(t => (IOperator)Activator.CreateInstance(t));
|
---|
[11587] | 180 | var newOperators = operators.Except(Operators, new TypeEqualityComparer<IOperator>()).ToList();
|
---|
[11543] | 181 |
|
---|
[11550] | 182 | ConfigureOperators(newOperators);
|
---|
[11587] | 183 | foreach (var @operator in newOperators)
|
---|
[11952] | 184 | AddOperator(@operator);
|
---|
[11559] | 185 |
|
---|
| 186 | foreach (var strategyVectorCreator in Operators.OfType<IRealVectorStdDevStrategyParameterCreator>())
|
---|
| 187 | strategyVectorCreator.BoundsParameter.ValueChanged += strategyVectorCreator_BoundsParameter_ValueChanged;
|
---|
[11550] | 188 | }
|
---|
| 189 | #endregion
|
---|
| 190 |
|
---|
[11559] | 191 |
|
---|
| 192 | private void strategyVectorCreator_BoundsParameter_ValueChanged(object sender, EventArgs e) {
|
---|
| 193 | var boundsParameter = (IValueLookupParameter<DoubleMatrix>)sender;
|
---|
| 194 | if (boundsParameter.Value == null) return;
|
---|
| 195 | foreach (var strategyVectorManipulator in Operators.OfType<IRealVectorStdDevStrategyParameterManipulator>())
|
---|
| 196 | strategyVectorManipulator.BoundsParameter.Value = (DoubleMatrix)boundsParameter.Value.Clone();
|
---|
| 197 | }
|
---|
| 198 |
|
---|
| 199 | public override void ConfigureOperators(IEnumerable<IOperator> operators) {
|
---|
[11546] | 200 | ConfigureCreators(operators.OfType<IRealVectorCreator>());
|
---|
| 201 | ConfigureCrossovers(operators.OfType<IRealVectorCrossover>());
|
---|
| 202 | ConfigureManipulators(operators.OfType<IRealVectorManipulator>());
|
---|
| 203 | ConfigureStdDevStrategyParameterOperators(operators.OfType<IRealVectorStdDevStrategyParameterOperator>());
|
---|
| 204 | ConfigureSwarmUpdaters(operators.OfType<IRealVectorSwarmUpdater>());
|
---|
| 205 | ConfigureParticleCreators(operators.OfType<IRealVectorParticleCreator>());
|
---|
| 206 | ConfigureParticleUpdaters(operators.OfType<IRealVectorParticleUpdater>());
|
---|
| 207 | ConfigureShakingOperators(operators.OfType<IRealVectorMultiNeighborhoodShakingOperator>());
|
---|
[11550] | 208 | ConfigureBoundsCheckers(operators.OfType<IRealVectorBoundsChecker>());
|
---|
[11559] | 209 | ConfigureMoveGenerators(operators.OfType<IRealVectorMoveGenerator>());
|
---|
[11550] | 210 | ConfigureMoveOperators(operators.OfType<IRealVectorMoveOperator>());
|
---|
[11559] | 211 | ConfigureAdditiveMoveOperator(operators.OfType<IAdditiveRealVectorMoveOperator>());
|
---|
[11546] | 212 | }
|
---|
| 213 |
|
---|
[11550] | 214 | #region Specific Operator Wiring
|
---|
[11546] | 215 | private void ConfigureCreators(IEnumerable<IRealVectorCreator> creators) {
|
---|
| 216 | foreach (var creator in creators) {
|
---|
| 217 | creator.RealVectorParameter.ActualName = Name;
|
---|
| 218 | creator.LengthParameter.ActualName = LengthParameter.Name;
|
---|
| 219 | creator.BoundsParameter.ActualName = BoundsParameter.Name;
|
---|
| 220 | }
|
---|
| 221 | }
|
---|
| 222 | private void ConfigureCrossovers(IEnumerable<IRealVectorCrossover> crossovers) {
|
---|
| 223 | foreach (var crossover in crossovers) {
|
---|
| 224 | crossover.ChildParameter.ActualName = Name;
|
---|
| 225 | crossover.ParentsParameter.ActualName = Name;
|
---|
| 226 | crossover.BoundsParameter.ActualName = BoundsParameter.Name;
|
---|
| 227 | }
|
---|
| 228 | }
|
---|
| 229 | private void ConfigureManipulators(IEnumerable<IRealVectorManipulator> manipulators) {
|
---|
| 230 | foreach (var manipulator in manipulators) {
|
---|
| 231 | manipulator.RealVectorParameter.ActualName = Name;
|
---|
| 232 | manipulator.BoundsParameter.ActualName = BoundsParameter.Name;
|
---|
| 233 | manipulator.BoundsParameter.Hidden = true;
|
---|
| 234 | var sm = manipulator as ISelfAdaptiveManipulator;
|
---|
| 235 | if (sm != null) {
|
---|
| 236 | var p = sm.StrategyParameterParameter as ILookupParameter;
|
---|
| 237 | if (p != null) {
|
---|
[11593] | 238 | p.ActualName = Name + ".Strategy";
|
---|
[11546] | 239 | }
|
---|
| 240 | }
|
---|
| 241 | }
|
---|
| 242 | }
|
---|
| 243 | private void ConfigureStdDevStrategyParameterOperators(IEnumerable<IRealVectorStdDevStrategyParameterOperator> strategyOperators) {
|
---|
[11559] | 244 | var bounds = new DoubleMatrix(Bounds.Rows, Bounds.Columns);
|
---|
| 245 | for (var i = 0; i < Bounds.Rows; i++) {
|
---|
[11546] | 246 | bounds[i, 0] = 0;
|
---|
[11559] | 247 | bounds[i, 1] = 0.1 * (Bounds[i, 1] - Bounds[i, 0]);
|
---|
[11546] | 248 | }
|
---|
| 249 | foreach (var s in strategyOperators) {
|
---|
| 250 | var c = s as IRealVectorStdDevStrategyParameterCreator;
|
---|
| 251 | if (c != null) {
|
---|
| 252 | c.BoundsParameter.Value = (DoubleMatrix)bounds.Clone();
|
---|
| 253 | c.LengthParameter.ActualName = LengthParameter.Name;
|
---|
[11593] | 254 | c.StrategyParameterParameter.ActualName = Name + ".Strategy";
|
---|
[11546] | 255 | }
|
---|
| 256 | var m = s as IRealVectorStdDevStrategyParameterManipulator;
|
---|
| 257 | if (m != null) {
|
---|
| 258 | m.BoundsParameter.Value = (DoubleMatrix)bounds.Clone();
|
---|
[11593] | 259 | m.StrategyParameterParameter.ActualName = Name + ".Strategy";
|
---|
[11546] | 260 | }
|
---|
| 261 | var mm = s as StdDevStrategyVectorManipulator;
|
---|
| 262 | if (mm != null) {
|
---|
| 263 | mm.GeneralLearningRateParameter.Value = new DoubleValue(1.0 / Math.Sqrt(2 * Length));
|
---|
| 264 | mm.LearningRateParameter.Value = new DoubleValue(1.0 / Math.Sqrt(2 * Math.Sqrt(Length)));
|
---|
| 265 | }
|
---|
| 266 | var x = s as IRealVectorStdDevStrategyParameterCrossover;
|
---|
| 267 | if (x != null) {
|
---|
[11593] | 268 | x.ParentsParameter.ActualName = Name + ".Strategy";
|
---|
| 269 | x.StrategyParameterParameter.ActualName = Name + ".Strategy";
|
---|
[11546] | 270 | }
|
---|
| 271 | }
|
---|
| 272 | }
|
---|
| 273 | private void ConfigureSwarmUpdaters(IEnumerable<IRealVectorSwarmUpdater> swarmUpdaters) {
|
---|
| 274 | foreach (var su in swarmUpdaters) {
|
---|
| 275 | su.RealVectorParameter.ActualName = Name;
|
---|
| 276 | }
|
---|
| 277 | }
|
---|
| 278 | private void ConfigureParticleCreators(IEnumerable<IRealVectorParticleCreator> particleCreators) {
|
---|
| 279 | foreach (var particleCreator in particleCreators) {
|
---|
| 280 | particleCreator.RealVectorParameter.ActualName = Name;
|
---|
| 281 | particleCreator.BoundsParameter.ActualName = BoundsParameter.Name;
|
---|
| 282 | particleCreator.ProblemSizeParameter.ActualName = LengthParameter.Name;
|
---|
| 283 | }
|
---|
| 284 | }
|
---|
| 285 | private void ConfigureParticleUpdaters(IEnumerable<IRealVectorParticleUpdater> particleUpdaters) {
|
---|
| 286 | foreach (var particleUpdater in particleUpdaters) {
|
---|
| 287 | particleUpdater.RealVectorParameter.ActualName = Name;
|
---|
| 288 | particleUpdater.BoundsParameter.ActualName = BoundsParameter.Name;
|
---|
| 289 | }
|
---|
| 290 | }
|
---|
| 291 | private void ConfigureShakingOperators(IEnumerable<IRealVectorMultiNeighborhoodShakingOperator> shakingOperators) {
|
---|
| 292 | foreach (var shakingOperator in shakingOperators) {
|
---|
| 293 | shakingOperator.RealVectorParameter.ActualName = Name;
|
---|
[11767] | 294 | shakingOperator.BoundsParameter.ActualName = BoundsParameter.Name;
|
---|
[11546] | 295 | }
|
---|
| 296 | }
|
---|
[11550] | 297 | private void ConfigureBoundsCheckers(IEnumerable<IRealVectorBoundsChecker> boundsCheckers) {
|
---|
| 298 | foreach (var boundsChecker in boundsCheckers) {
|
---|
| 299 | boundsChecker.RealVectorParameter.ActualName = Name;
|
---|
| 300 | boundsChecker.BoundsParameter.ActualName = BoundsParameter.Name;
|
---|
| 301 | }
|
---|
| 302 | }
|
---|
| 303 | private void ConfigureMoveOperators(IEnumerable<IRealVectorMoveOperator> moveOperators) {
|
---|
| 304 | foreach (var moveOperator in moveOperators)
|
---|
| 305 | moveOperator.RealVectorParameter.ActualName = Name;
|
---|
| 306 | }
|
---|
| 307 |
|
---|
| 308 | private void ConfigureMoveGenerators(IEnumerable<IRealVectorMoveGenerator> moveGenerators) {
|
---|
| 309 | foreach (var moveGenerator in moveGenerators)
|
---|
| 310 | moveGenerator.BoundsParameter.ActualName = BoundsParameter.Name;
|
---|
| 311 | }
|
---|
[11559] | 312 |
|
---|
| 313 | private void ConfigureAdditiveMoveOperator(IEnumerable<IAdditiveRealVectorMoveOperator> additiveMoveOperators) {
|
---|
| 314 | foreach (var additiveMoveOperator in additiveMoveOperators) {
|
---|
[11593] | 315 | additiveMoveOperator.AdditiveMoveParameter.ActualName = Name + ".AdditiveMove";
|
---|
[11559] | 316 | }
|
---|
| 317 | }
|
---|
[11550] | 318 | #endregion
|
---|
[11484] | 319 | }
|
---|
[11949] | 320 |
|
---|
| 321 | public static class IndividualExtensionMethods {
|
---|
| 322 | public static RealVector RealVector(this Individual individual) {
|
---|
| 323 | var encoding = individual.GetEncoding<RealVectorEncoding>();
|
---|
| 324 | return individual.RealVector(encoding.Name);
|
---|
| 325 | }
|
---|
| 326 | public static RealVector RealVector(this Individual individual, string name) {
|
---|
| 327 | return (RealVector)individual[name];
|
---|
| 328 | }
|
---|
| 329 | }
|
---|
[11546] | 330 | } |
---|