Changeset 11970 for trunk/sources/HeuristicLab.Encodings.RealVectorEncoding/3.3/ParticleOperators/RealVectorSwarmUpdater.cs
- Timestamp:
- 02/07/15 13:52:48 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Encodings.RealVectorEncoding/3.3/ParticleOperators/RealVectorSwarmUpdater.cs
r11171 r11970 35 35 [Item("RealVectorSwarmUpdater", "Updates personal best point and quality as well as global best point and quality.")] 36 36 [StorableClass] 37 public sealed class RealVectorSwarmUpdater : SingleSuccessorOperator, IRealVectorSwarmUpdater {37 public sealed class RealVectorSwarmUpdater : SingleSuccessorOperator, IRealVectorSwarmUpdater, ISingleObjectiveOperator { 38 38 39 39 [Storable] … … 235 235 236 236 void VelocityBoundsStartValueParameter_Value_ValueChanged(object sender, EventArgs e) { 237 UpdateVelocityBoundsParamater(); 237 UpdateVelocityBoundsParamater(); 238 238 } 239 239 … … 257 257 VelocityBoundsStartValueParameter.Value.ValueChanged += new EventHandler(VelocityBoundsStartValueParameter_Value_ValueChanged); 258 258 } 259 UpdateVelocityBoundsParamater(); 259 UpdateVelocityBoundsParamater(); 260 260 } 261 261
Note: See TracChangeset
for help on using the changeset viewer.