- Timestamp:
- 03/31/11 16:22:55 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Encodings.RealVectorEncoding/3.3/ParticleOperators/RealVectorSwarmUpdater.cs
r5905 r5911 33 33 34 34 namespace HeuristicLab.Encodings.RealVectorEncoding { 35 [Item(" SwarmUpdater", "Updates personal best point and quality as well as global best point and quality.")]35 [Item("RealVectorSwarmUpdater", "Updates personal best point and quality as well as global best point and quality.")] 36 36 [StorableClass] 37 37 public sealed class RealVectorSwarmUpdater : SingleSuccessorOperator, IRealVectorSwarmUpdater { … … 223 223 224 224 void VelocityBoundsStartValueParameter_Value_ValueChanged(object sender, EventArgs e) { 225 UpdateVelocityBoundsParamater(); 226 } 227 228 void UpdateVelocityBoundsParamater() { 225 229 if (VelocityBoundsParameter.Value == null) { 226 230 VelocityBoundsParameter.Value = new DoubleMatrix(1, 2); … … 241 245 VelocityBoundsStartValueParameter.Value.ValueChanged += new EventHandler(VelocityBoundsStartValueParameter_Value_ValueChanged); 242 246 } 247 UpdateVelocityBoundsParamater(); 243 248 } 244 249
Note: See TracChangeset
for help on using the changeset viewer.