- Timestamp:
- 03/09/11 13:46:14 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Encodings.RealVectorEncoding/3.3/ParticleOperators/RealVectorParticleUpdater.cs
r5643 r5645 63 63 } 64 64 public ILookupParameter<DoubleValue> InertiaParameter { 65 get { return (ILookupParameter<DoubleValue>)Parameters[" Inertia"]; }65 get { return (ILookupParameter<DoubleValue>)Parameters["CurrentInertia"]; } 66 66 } 67 67 public ILookupParameter<DoubleValue> PersonalBestAttractionParameter { … … 125 125 Parameters.Add(new LookupParameter<DoubleMatrix>("Bounds", "The lower and upper bounds for each dimension of the position vector for the current problem.")); 126 126 Parameters.Add(new LookupParameter<DoubleMatrix>("VelocityBounds", "Upper and lower bounds for the particle's velocity vector.")); 127 Parameters.Add(new LookupParameter<DoubleValue>(" Inertia", "The weight for the particle's velocity vector."));127 Parameters.Add(new LookupParameter<DoubleValue>("CurrentInertia", "The weight for the particle's velocity vector.")); 128 128 Parameters.Add(new LookupParameter<DoubleValue>("PersonalBestAttraction", "The weight for the particle's personal best position.")); 129 129 Parameters.Add(new LookupParameter<DoubleValue>("NeighborBestAttraction", "The weight for the global best position."));
Note: See TracChangeset
for help on using the changeset viewer.