Changeset 4118 for trunk/sources/HeuristicLab.Problems.DataAnalysis
- Timestamp:
- 07/27/10 19:54:20 (14 years ago)
- Location:
- trunk/sources/HeuristicLab.Problems.DataAnalysis/3.3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.DataAnalysis/3.3/DataAnalysisProblem.cs
r4068 r4118 50 50 #endregion 51 51 52 [StorableConstructor] 53 protected DataAnalysisProblem(bool deserializing) : base(deserializing) { } 52 54 public DataAnalysisProblem() 53 55 : base() { … … 56 58 RegisterParameterValueEvents(); 57 59 } 58 59 [StorableConstructor]60 private DataAnalysisProblem(bool deserializing) : base() { }61 60 62 61 [StorableHook(HookType.AfterDeserialization)] -
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.