Changeset 6228 for branches/PersistenceSpeedUp/HeuristicLab.Encodings.RealVectorEncoding/3.3/ParticleOperators
- Timestamp:
- 05/17/11 17:16:33 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PersistenceSpeedUp/HeuristicLab.Encodings.RealVectorEncoding/3.3/ParticleOperators/RealVectorSwarmUpdater.cs
r5911 r6228 217 217 218 218 [StorableHook(HookType.AfterDeserialization)] 219 private void AfterDeserialization() { 220 RegisterEvents(); 221 } 222 219 223 private void RegisterEvents() { 220 224 VelocityBoundsStartValueParameter.ValueChanged += new EventHandler(VelocityBoundsStartValueParameter_ValueChanged); … … 223 227 224 228 void VelocityBoundsStartValueParameter_Value_ValueChanged(object sender, EventArgs e) { 225 UpdateVelocityBoundsParamater(); 229 UpdateVelocityBoundsParamater(); 226 230 } 227 231 … … 245 249 VelocityBoundsStartValueParameter.Value.ValueChanged += new EventHandler(VelocityBoundsStartValueParameter_Value_ValueChanged); 246 250 } 247 UpdateVelocityBoundsParamater(); 251 UpdateVelocityBoundsParamater(); 248 252 } 249 253
Note: See TracChangeset
for help on using the changeset viewer.