[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 |
|
---|
[11553] | 22 | using System;
|
---|
| 23 | using System.Collections.Generic;
|
---|
| 24 | using System.Linq;
|
---|
[11484] | 25 | using HeuristicLab.Common;
|
---|
| 26 | using HeuristicLab.Core;
|
---|
| 27 | using HeuristicLab.Data;
|
---|
[11553] | 28 | using HeuristicLab.Encodings.BinaryVectorEncoding;
|
---|
| 29 | using HeuristicLab.Optimization;
|
---|
| 30 | using HeuristicLab.Parameters;
|
---|
[11484] | 31 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
[11553] | 32 | using HeuristicLab.PluginInfrastructure;
|
---|
[11484] | 33 |
|
---|
| 34 | namespace HeuristicLab.Problems.Programmable {
|
---|
| 35 | [Item("BinaryEncoding", "Describes a binary vector encoding.")]
|
---|
| 36 | [StorableClass]
|
---|
[11559] | 37 | public sealed class BinaryEncoding : Encoding<IBinaryVectorCreator> {
|
---|
[11553] | 38 | #region Encoding Parameters
|
---|
[11484] | 39 | [Storable]
|
---|
[11553] | 40 | private IFixedValueParameter<IntValue> lengthParameter;
|
---|
| 41 | public IFixedValueParameter<IntValue> LengthParameter {
|
---|
| 42 | get { return lengthParameter; }
|
---|
[11484] | 43 | set {
|
---|
[11553] | 44 | if (value == null) throw new ArgumentNullException("Length parameter must not be null.");
|
---|
| 45 | if (lengthParameter == value) return;
|
---|
| 46 | lengthParameter = value;
|
---|
| 47 | OnLengthParameterChanged();
|
---|
[11484] | 48 | }
|
---|
| 49 | }
|
---|
[11553] | 50 | public override IEnumerable<IValueParameter> Parameters {
|
---|
| 51 | get { return base.Parameters.Concat(new IValueParameter[] { LengthParameter }); }
|
---|
| 52 | }
|
---|
| 53 | #endregion
|
---|
[11484] | 54 |
|
---|
[11553] | 55 | public int Length {
|
---|
| 56 | get { return LengthParameter.Value.Value; }
|
---|
| 57 | set { LengthParameter.Value.Value = value; }
|
---|
| 58 | }
|
---|
| 59 |
|
---|
[11484] | 60 | [StorableConstructor]
|
---|
[11553] | 61 | private BinaryEncoding(bool deserializing) : base(deserializing) { }
|
---|
| 62 | [StorableHook(HookType.AfterDeserialization)]
|
---|
| 63 | private void AfterDeserialization() {
|
---|
| 64 | RegisterParameterEvents();
|
---|
| 65 | DiscoverOperators();
|
---|
| 66 | }
|
---|
| 67 | public override IDeepCloneable Clone(Cloner cloner) { return new BinaryEncoding(this, cloner); }
|
---|
| 68 | private BinaryEncoding(BinaryEncoding original, Cloner cloner)
|
---|
[11484] | 69 | : base(original, cloner) {
|
---|
[11553] | 70 | lengthParameter = cloner.Clone(original.lengthParameter);
|
---|
| 71 | RegisterParameterEvents();
|
---|
[11484] | 72 | }
|
---|
| 73 | public BinaryEncoding(string name, int length)
|
---|
| 74 | : base(name) {
|
---|
[11553] | 75 | lengthParameter = new FixedValueParameter<IntValue>(Name + "Length", new IntValue(length));
|
---|
[11484] | 76 | }
|
---|
| 77 |
|
---|
[11553] | 78 | private void OnLengthParameterChanged() {
|
---|
| 79 | RegisterLengthParameterEvents();
|
---|
| 80 | ConfigureOperators(Operators);
|
---|
[11484] | 81 | }
|
---|
[11553] | 82 | private void RegisterParameterEvents() {
|
---|
| 83 | RegisterLengthParameterEvents();
|
---|
| 84 | }
|
---|
| 85 | private void RegisterLengthParameterEvents() {
|
---|
| 86 | LengthParameter.ValueChanged += (o, s) => ConfigureOperators(Operators);
|
---|
| 87 | LengthParameter.Value.ValueChanged += (o, s) => ConfigureOperators(Operators);
|
---|
| 88 | }
|
---|
[11484] | 89 |
|
---|
[11553] | 90 | #region Operator Discovery
|
---|
| 91 | private static readonly IEnumerable<Type> encodingSpecificOperatorTypes;
|
---|
| 92 | static BinaryEncoding() {
|
---|
| 93 | encodingSpecificOperatorTypes = new List<Type>() {
|
---|
| 94 | typeof (IBinaryVectorOperator),
|
---|
| 95 | typeof (IBinaryVectorCreator),
|
---|
| 96 | typeof (IBinaryVectorCrossover),
|
---|
| 97 | typeof (IBinaryVectorManipulator),
|
---|
| 98 | typeof (IBinaryVectorMoveOperator),
|
---|
| 99 | typeof (IBinaryVectorMultiNeighborhoodShakingOperator),
|
---|
| 100 | };
|
---|
| 101 | }
|
---|
| 102 | private void DiscoverOperators() {
|
---|
| 103 | var pluginDescription = ApplicationManager.Manager.GetDeclaringPlugin(typeof(IBinaryVectorOperator));
|
---|
| 104 | var discoveredTypes = ApplicationManager.Manager.GetTypes(encodingSpecificOperatorTypes, pluginDescription, true, false, false);
|
---|
| 105 | var operators = discoveredTypes.Select(t => (IOperator)Activator.CreateInstance(t));
|
---|
| 106 | var newOperators = operators.Except(encodingOperators, new TypeEqualityComparer<IOperator>()).ToList();
|
---|
| 107 |
|
---|
| 108 | ConfigureOperators(newOperators);
|
---|
| 109 | encodingOperators.AddRange(newOperators);
|
---|
| 110 | }
|
---|
| 111 | #endregion
|
---|
| 112 |
|
---|
[11559] | 113 | public override void ConfigureOperators(IEnumerable<IOperator> operators) {
|
---|
[11553] | 114 | ConfigureCreators(operators.OfType<IBinaryVectorCreator>());
|
---|
| 115 | ConfigureCrossovers(operators.OfType<IBinaryVectorCrossover>());
|
---|
| 116 | ConfigureManipulators(operators.OfType<IBinaryVectorManipulator>());
|
---|
| 117 | ConfigureMoveOperators(operators.OfType<IBinaryVectorMoveOperator>());
|
---|
| 118 | ConfigureShakingOperators(operators.OfType<IBinaryVectorMultiNeighborhoodShakingOperator>());
|
---|
| 119 | }
|
---|
| 120 |
|
---|
| 121 | #region Specific Operator Wiring
|
---|
| 122 | private void ConfigureCreators(IEnumerable<IBinaryVectorCreator> creators) {
|
---|
| 123 | foreach (var creator in creators) {
|
---|
| 124 | creator.BinaryVectorParameter.ActualName = Name;
|
---|
| 125 | creator.LengthParameter.ActualName = LengthParameter.Name;
|
---|
| 126 | }
|
---|
| 127 | }
|
---|
| 128 | private void ConfigureCrossovers(IEnumerable<IBinaryVectorCrossover> crossovers) {
|
---|
| 129 | foreach (var crossover in crossovers) {
|
---|
| 130 | crossover.ParentsParameter.ActualName = Name;
|
---|
| 131 | crossover.ChildParameter.ActualName = Name;
|
---|
| 132 | }
|
---|
| 133 | }
|
---|
| 134 | private void ConfigureManipulators(IEnumerable<IBinaryVectorManipulator> manipulators) {
|
---|
| 135 | foreach (var manipulator in manipulators) {
|
---|
| 136 | manipulator.BinaryVectorParameter.ActualName = Name;
|
---|
| 137 | }
|
---|
| 138 | }
|
---|
| 139 | private void ConfigureMoveOperators(IEnumerable<IBinaryVectorMoveOperator> moveOperators) {
|
---|
| 140 | foreach (var moveOperator in moveOperators) {
|
---|
| 141 | moveOperator.BinaryVectorParameter.ActualName = Name;
|
---|
| 142 | }
|
---|
| 143 | }
|
---|
| 144 | private void ConfigureShakingOperators(IEnumerable<IBinaryVectorMultiNeighborhoodShakingOperator> shakingOperators) {
|
---|
| 145 | foreach (var shakingOperator in shakingOperators) {
|
---|
| 146 | shakingOperator.BinaryVectorParameter.ActualName = Name;
|
---|
| 147 | }
|
---|
| 148 | }
|
---|
| 149 | #endregion
|
---|
[11484] | 150 | }
|
---|
| 151 | }
|
---|