Changeset 3921 for trunk/sources
- Timestamp:
- 06/15/10 15:23:31 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.DataAnalysis/3.3/DataAnalysisSolution.cs
r3919 r3921 52 52 [StorableHook(HookType.AfterDeserialization)] 53 53 private void Initialize() { 54 if (problemData != null) RegisterProblemDataEvents(); 54 if (problemData != null) 55 RegisterProblemDataEvents(); 55 56 } 56 57 … … 145 146 public event EventHandler EstimatedValuesChanged; 146 147 protected virtual void OnEstimatedValuesChanged() { 147 RecalculateResultValues();148 148 var listeners = EstimatedValuesChanged; 149 149 if (listeners != null) … … 156 156 // don't clone the problem data! 157 157 clone.problemData = problemData; 158 clone. Model = (IDataAnalysisModel)cloner.Clone(model);158 clone.model = (IDataAnalysisModel)cloner.Clone(model); 159 159 clone.lowerEstimationLimit = lowerEstimationLimit; 160 160 clone.upperEstimationLimit = upperEstimationLimit; 161 161 clone.Initialize(); 162 162 163 return clone; 163 164 }
Note: See TracChangeset
for help on using the changeset viewer.