- Timestamp:
- 03/31/11 18:23:02 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/DataAnalysisSolution.cs
r5909 r5914 80 80 name = ItemName; 81 81 description = ItemDescription; 82 IDataAnalysisModel modelClone = (IDataAnalysisModel)model.Clone(); 83 IDataAnalysisProblemData problemDataClone = (IDataAnalysisProblemData)problemData.Clone(); 84 Add(new Result(ModelResultName, "The symbolic data analysis model.", modelClone)); 85 Add(new Result(ProblemDataResultName, "The symbolic data analysis problem data.", problemDataClone)); 82 Add(new Result(ModelResultName, "The symbolic data analysis model.", model)); 83 Add(new Result(ProblemDataResultName, "The symbolic data analysis problem data.", problemData)); 86 84 87 problemData Clone.Changed += new EventHandler(ProblemData_Changed);85 problemData.Changed += new EventHandler(ProblemData_Changed); 88 86 } 89 87
Note: See TracChangeset
for help on using the changeset viewer.