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 HeuristicLab.Common;
|
---|
23 | using HeuristicLab.Core;
|
---|
24 | using HeuristicLab.Data;
|
---|
25 | using HeuristicLab.Operators;
|
---|
26 | using HeuristicLab.Parameters;
|
---|
27 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
28 |
|
---|
29 | namespace HeuristicLab.Encodings.RealVectorEncoding {
|
---|
30 | [Item("RealVectorParticleCreator", "Creates a particle with position, zero velocity vector and personal best.")]
|
---|
31 | [StorableClass]
|
---|
32 | public class RealVectorParticleCreator : AlgorithmOperator, IRealVectorParticleCreator {
|
---|
33 |
|
---|
34 | #region Parameters
|
---|
35 | public ILookupParameter<IntValue> ProblemSizeParameter {
|
---|
36 | get { return (ILookupParameter<IntValue>)Parameters["ProblemSize"]; }
|
---|
37 | }
|
---|
38 | public IValueLookupParameter<DoubleMatrix> BoundsParameter {
|
---|
39 | get { return (IValueLookupParameter<DoubleMatrix>)Parameters["Bounds"]; }
|
---|
40 | }
|
---|
41 | public ILookupParameter<RealVector> RealVectorParameter {
|
---|
42 | get { return (ILookupParameter<RealVector>)Parameters["RealVector"]; }
|
---|
43 | }
|
---|
44 | public ILookupParameter<RealVector> PersonalBestParameter {
|
---|
45 | get { return (ILookupParameter<RealVector>)Parameters["PersonalBest"]; }
|
---|
46 | }
|
---|
47 | public ILookupParameter<RealVector> VelocityParameter {
|
---|
48 | get { return (ILookupParameter<RealVector>)Parameters["Velocity"]; }
|
---|
49 | }
|
---|
50 | #endregion
|
---|
51 |
|
---|
52 | #region Parameter Values
|
---|
53 | protected int ProblemSize {
|
---|
54 | get { return ProblemSizeParameter.ActualValue.Value; }
|
---|
55 | }
|
---|
56 | protected RealVector Velocity {
|
---|
57 | set { VelocityParameter.ActualValue = value; }
|
---|
58 | }
|
---|
59 | #endregion
|
---|
60 |
|
---|
61 | #region Construction & Cloning
|
---|
62 | [StorableConstructor]
|
---|
63 | protected RealVectorParticleCreator(bool deserializing) : base(deserializing) { }
|
---|
64 | protected RealVectorParticleCreator(RealVectorParticleCreator original, Cloner cloner) : base(original, cloner) { }
|
---|
65 | public RealVectorParticleCreator()
|
---|
66 | : base() {
|
---|
67 | Parameters.Add(new LookupParameter<IntValue>("ProblemSize", "The dimension of the problem."));
|
---|
68 | Parameters.Add(new ValueLookupParameter<DoubleMatrix>("Bounds", "The lower and upper bounds in each dimension."));
|
---|
69 | Parameters.Add(new LookupParameter<RealVector>("RealVector", "Particle's current solution"));
|
---|
70 | Parameters.Add(new LookupParameter<RealVector>("PersonalBest", "Particle's personal best solution."));
|
---|
71 | Parameters.Add(new LookupParameter<RealVector>("Velocity", "Particle's current velocity."));
|
---|
72 |
|
---|
73 | UniformRandomRealVectorCreator realVectorCreater = new UniformRandomRealVectorCreator();
|
---|
74 | Assigner personalBestPositionAssigner = new Assigner();
|
---|
75 |
|
---|
76 | OperatorGraph.InitialOperator = realVectorCreater;
|
---|
77 |
|
---|
78 | realVectorCreater.RealVectorParameter.ActualName = RealVectorParameter.Name;
|
---|
79 | realVectorCreater.LengthParameter.ActualName = ProblemSizeParameter.Name;
|
---|
80 | realVectorCreater.BoundsParameter.ActualName = BoundsParameter.Name;
|
---|
81 | realVectorCreater.Successor = personalBestPositionAssigner;
|
---|
82 |
|
---|
83 | personalBestPositionAssigner.LeftSideParameter.ActualName = PersonalBestParameter.Name;
|
---|
84 | personalBestPositionAssigner.RightSideParameter.ActualName = RealVectorParameter.Name;
|
---|
85 | personalBestPositionAssigner.Successor = null;
|
---|
86 | }
|
---|
87 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
88 | return new RealVectorParticleCreator(this, cloner);
|
---|
89 | }
|
---|
90 | #endregion
|
---|
91 |
|
---|
92 | public override IOperation Apply() {
|
---|
93 | Velocity = new RealVector(ProblemSize);
|
---|
94 | return base.Apply();
|
---|
95 | }
|
---|
96 |
|
---|
97 |
|
---|
98 | }
|
---|
99 | }
|
---|