- Timestamp:
- 07/27/10 19:54:20 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.DataAnalysis/3.3/SupportVectorMachine/ParameterAdjustmentProblem/SupportVectorMachineParameterAdjustmentProblem.cs
r4100 r4118 129 129 130 130 [StorableConstructor] 131 private SupportVectorMachineParameterAdjustmentProblem(bool deserializing) : base( ) { }131 private SupportVectorMachineParameterAdjustmentProblem(bool deserializing) : base(deserializing) { } 132 132 public SupportVectorMachineParameterAdjustmentProblem() 133 133 : base() { … … 216 216 #region Helpers 217 217 [StorableHook(HookType.AfterDeserialization)] 218 private void AfterDeserializationHook() { 219 // BackwardsCompatibility3.3 220 #region Backwards compatible code (remove with 3.4) 221 if (operators == null) InitializeOperators(); 222 #endregion 223 AttachEventHandlers(); 224 } 225 218 226 private void AttachEventHandlers() { 219 // Start BackwardsCompatibility3.3 (remove with 3.4)220 if (operators == null) InitializeOperators();221 // End BackwardsCompatibility3.3222 227 SolutionCreatorParameter.ValueChanged += new EventHandler(SolutionCreatorParameter_ValueChanged); 223 228 SolutionCreator.RealVectorParameter.ActualNameChanged += new EventHandler(SolutionCreator_RealVectorParameter_ActualNameChanged);
Note: See TracChangeset
for help on using the changeset viewer.