Changeset 5643 for trunk/sources/HeuristicLab.Encodings.RealVectorEncoding/3.3/ParticleOperators/RealVectorParticleUpdater.cs
- Timestamp:
- 03/09/11 12:42:41 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Encodings.RealVectorEncoding/3.3/ParticleOperators/RealVectorParticleUpdater.cs
r5592 r5643 50 50 get { return (ILookupParameter<RealVector>)Parameters["NeighborBest"]; } 51 51 } 52 public LookupParameter<RealVector> Best PointParameter {53 get { return (LookupParameter<RealVector>)Parameters["Best Point"]; }52 public LookupParameter<RealVector> BestRealVectorParameter { 53 get { return (LookupParameter<RealVector>)Parameters["BestRealVector"]; } 54 54 } 55 55 public ILookupParameter<RealVector> RealVectorParameter { … … 85 85 } 86 86 protected RealVector BestPoint { 87 get { return Best PointParameter.ActualValue; }87 get { return BestRealVectorParameter.ActualValue; } 88 88 } 89 89 protected RealVector RealVector { … … 121 121 Parameters.Add(new LookupParameter<RealVector>("Velocity", "Particle's current velocity.")); 122 122 Parameters.Add(new LookupParameter<RealVector>("PersonalBest", "Particle's personal best solution.")); 123 Parameters.Add(new LookupParameter<RealVector>("Best Point", "Global best position."));123 Parameters.Add(new LookupParameter<RealVector>("BestRealVector", "Global best position.")); 124 124 Parameters.Add(new LookupParameter<RealVector>("NeighborBest", "Best neighboring solution.")); 125 125 Parameters.Add(new LookupParameter<DoubleMatrix>("Bounds", "The lower and upper bounds for each dimension of the position vector for the current problem."));
Note: See TracChangeset
for help on using the changeset viewer.