- Timestamp:
- 03/28/12 15:47:26 (13 years ago)
- Location:
- branches/HeuristicLab.Hive.Azure
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Hive.Azure
- Property svn:ignore
-
old new 3 3 *.resharper 4 4 *.suo 5 *.user 5 6 *.vsp 6 7 Doxygen 8 FxCopResults.txt 7 9 Google.ProtocolBuffers-0.9.1.dll 8 10 HeuristicLab 3.3.5.1.ReSharper.user
-
- Property svn:mergeinfo changed
- Property svn:ignore
-
branches/HeuristicLab.Hive.Azure/HeuristicLab.Optimization.Operators/3.3/MultiObjective/CrowdingDistanceAssignment.cs
r7270 r7669 53 53 Parameters.Add(new ScopeTreeLookupParameter<DoubleArray>("Qualities", "The vector of quality values.")); 54 54 Parameters.Add(new ScopeTreeLookupParameter<DoubleValue>("CrowdingDistance", "Sets the crowding distance in each sub-scope.")); 55 AttachEventHandlers();55 RegisterEventHandlers(); 56 56 } 57 57 58 58 [StorableHook(HookType.AfterDeserialization)] 59 private void AttachEventHandlers() { 59 private void AfterDeserialization() { 60 RegisterEventHandlers(); 61 } 62 63 private void RegisterEventHandlers() { 60 64 QualitiesParameter.DepthChanged += new EventHandler(QualitiesParameter_DepthChanged); 61 65 }
Note: See TracChangeset
for help on using the changeset viewer.