1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2012 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.Collections.Generic;
|
---|
23 | using System.Linq;
|
---|
24 | using HeuristicLab.Collections;
|
---|
25 | using HeuristicLab.Common;
|
---|
26 | using HeuristicLab.Core;
|
---|
27 | using HeuristicLab.Optimization;
|
---|
28 | using HeuristicLab.Optimization.Operators;
|
---|
29 | using HeuristicLab.Parameters;
|
---|
30 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
31 | using HeuristicLab.PluginInfrastructure;
|
---|
32 |
|
---|
33 | namespace HeuristicLab.Encodings.RealVectorEncoding {
|
---|
34 | /// <summary>
|
---|
35 | /// A shaking operator for VNS.
|
---|
36 | /// </summary>
|
---|
37 | [Item("RealVectorShakingOperator", "A shaking operator for VNS which uses available manipulation operators to perform the shaking.")]
|
---|
38 | [StorableClass]
|
---|
39 | public class RealVectorShakingOperator : ShakingOperator<IRealVectorManipulator>, IRealVectorMultiNeighborhoodShakingOperator, IStochasticOperator {
|
---|
40 |
|
---|
41 | public ILookupParameter<RealVector> RealVectorParameter {
|
---|
42 | get { return (ILookupParameter<RealVector>)Parameters["RealVector"]; }
|
---|
43 | }
|
---|
44 |
|
---|
45 | public ILookupParameter<IRandom> RandomParameter {
|
---|
46 | get { return (LookupParameter<IRandom>)Parameters["Random"]; }
|
---|
47 | }
|
---|
48 |
|
---|
49 | [StorableConstructor]
|
---|
50 | protected RealVectorShakingOperator(bool deserializing) : base(deserializing) { }
|
---|
51 | protected RealVectorShakingOperator(RealVectorShakingOperator original, Cloner cloner) : base(original, cloner) { }
|
---|
52 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
53 | return new RealVectorShakingOperator(this, cloner);
|
---|
54 | }
|
---|
55 | public RealVectorShakingOperator()
|
---|
56 | : base() {
|
---|
57 | Parameters.Add(new LookupParameter<RealVector>("RealVector", "The real vector to shake."));
|
---|
58 | Parameters.Add(new LookupParameter<IRandom>("Random", "The random number generator that will be used for stochastic shaking operators."));
|
---|
59 | foreach (IRealVectorManipulator shaker in ApplicationManager.Manager.GetInstances<IRealVectorManipulator>().OrderBy(x => x.Name))
|
---|
60 | if (!(shaker is MultiRealVectorManipulator)
|
---|
61 | && !(shaker is ISelfAdaptiveManipulator)) Operators.Add(shaker);
|
---|
62 | }
|
---|
63 |
|
---|
64 | #region Wiring of some parameters
|
---|
65 | protected override void Operators_ItemsAdded(object sender, CollectionItemsChangedEventArgs<IndexedItem<IRealVectorManipulator>> e) {
|
---|
66 | base.Operators_ItemsAdded(sender, e);
|
---|
67 | ParameterizeOperators(e.Items);
|
---|
68 | }
|
---|
69 |
|
---|
70 | protected override void Operators_ItemsReplaced(object sender, CollectionItemsChangedEventArgs<IndexedItem<IRealVectorManipulator>> e) {
|
---|
71 | base.Operators_ItemsReplaced(sender, e);
|
---|
72 | ParameterizeOperators(e.Items);
|
---|
73 | }
|
---|
74 |
|
---|
75 | private void ParameterizeOperators(IEnumerable<IndexedItem<IRealVectorManipulator>> items) {
|
---|
76 | if (items.Any()) {
|
---|
77 | foreach (IStochasticOperator op in items.Select(x => x.Value).OfType<IStochasticOperator>())
|
---|
78 | op.RandomParameter.ActualName = RandomParameter.Name;
|
---|
79 | foreach (IRealVectorManipulator op in items.Select(x => x.Value).OfType<IRealVectorManipulator>())
|
---|
80 | op.RealVectorParameter.ActualName = RealVectorParameter.Name;
|
---|
81 | }
|
---|
82 | }
|
---|
83 | #endregion
|
---|
84 | }
|
---|
85 | }
|
---|