Changeset 5880
- Timestamp:
- 03/30/11 13:05:05 (14 years ago)
- Location:
- trunk/sources
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Views/3.4
- Property svn:ignore
-
old new 3 3 HeuristicLabEncodingsSymbolicExpressionTreeEncodingViewsPlugin.cs 4 4 *.vs10x 5 HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Views-3.4.csproj.user
-
- Property svn:ignore
-
trunk/sources/HeuristicLab.ParallelEngine/3.3
- Property svn:ignore
-
old new 3 3 HeuristicLabParallelEnginePlugin.cs 4 4 *.vs10x 5 HeuristicLab.ParallelEngine-3.3.csproj.user
-
- Property svn:ignore
-
trunk/sources/HeuristicLab.Problems.ArtificialAnt.Views/3.4
- Property svn:ignore
-
old new 3 3 HeuristicLabProblemsArtificialAntViewsPlugin.cs 4 4 *.vs10x 5 HeuristicLab.Problems.ArtificialAnt.Views-3.4.csproj.user
-
- Property svn:ignore
-
trunk/sources/HeuristicLab.Problems.ArtificialAnt/3.4
- Property svn:ignore
-
old new 3 3 HeuristicLabProblemsArtificialAntPlugin.cs 4 4 *.vs10x 5 HeuristicLab.Problems.ArtificialAnt-3.4.csproj.user
-
- Property svn:ignore
-
trunk/sources/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Tests
- Property svn:ignore
-
old new 2 2 obj 3 3 *.vs10x 4 HeuristicLab.Problems.DataAnalysis.Symbolic.Tests-3.4.csproj.user
-
- Property svn:ignore
-
trunk/sources/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/DataAnalysisSolution.cs
r5809 r5880 78 78 name = ItemName; 79 79 description = ItemDescription; 80 Add(new Result(ModelResultName, "The symbolic data analysis model.", model)); 81 Add(new Result(ProblemDataResultName, "The symbolic data analysis problem data.", problemData)); 80 IDataAnalysisModel modelClone = (IDataAnalysisModel)model.Clone(); 81 IDataAnalysisProblemData problemDataClone = (IDataAnalysisProblemData)problemData.Clone(); 82 Add(new Result(ModelResultName, "The symbolic data analysis model.", modelClone)); 83 Add(new Result(ProblemDataResultName, "The symbolic data analysis problem data.", problemDataClone)); 82 84 83 problemData .Changed += new EventHandler(ProblemData_Changed);85 problemDataClone.Changed += new EventHandler(ProblemData_Changed); 84 86 } 85 87
Note: See TracChangeset
for help on using the changeset viewer.