- Timestamp:
- 09/23/10 13:49:30 (14 years ago)
- Location:
- branches/DataAnalysis/HeuristicLab.Problems.DataAnalysis.Regression/3.3/Symbolic/Analyzers
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataAnalysis/HeuristicLab.Problems.DataAnalysis.Regression/3.3/Symbolic/Analyzers/BestSymbolicRegressionSolutionAnalyzer.cs
r4195 r4475 92 92 var model = new SymbolicRegressionModel((ISymbolicExpressionTreeInterpreter)SymbolicExpressionTreeInterpreter.Clone(), 93 93 SymbolicExpressionTree[i]); 94 var solution = new SymbolicRegressionSolution( ProblemData, model, lowerEstimationLimit, upperEstimationLimit);94 var solution = new SymbolicRegressionSolution((DataAnalysisProblemData)ProblemData.Clone(), model, lowerEstimationLimit, upperEstimationLimit); 95 95 solution.Name = BestSolutionParameterName; 96 96 solution.Description = "Best solution on validation partition found over the whole run."; -
branches/DataAnalysis/HeuristicLab.Problems.DataAnalysis.Regression/3.3/Symbolic/Analyzers/FixedValidationBestScaledSymbolicRegressionSolutionAnalyzer.cs
r4308 r4475 321 321 var scaledBestTrainingTree = GetScaledTree(bestTrainingTree); 322 322 323 SymbolicRegressionSolution bestTrainingSolution = new SymbolicRegressionSolution( ProblemData,323 SymbolicRegressionSolution bestTrainingSolution = new SymbolicRegressionSolution((DataAnalysisProblemData)ProblemData.Clone(), 324 324 new SymbolicRegressionModel(SymbolicExpressionTreeInterpreter, scaledBestTrainingTree), 325 325 lowerEstimationLimit, upperEstimationLimit); … … 336 336 var model = new SymbolicRegressionModel((ISymbolicExpressionTreeInterpreter)SymbolicExpressionTreeInterpreter.Clone(), 337 337 scaledTree); 338 var solution = new SymbolicRegressionSolution( ProblemData, model, lowerEstimationLimit, upperEstimationLimit);338 var solution = new SymbolicRegressionSolution((DataAnalysisProblemData)ProblemData.Clone(), model, lowerEstimationLimit, upperEstimationLimit); 339 339 solution.Name = BestSolutionParameterName; 340 340 solution.Description = "Best solution on validation partition found over the whole run.";
Note: See TracChangeset
for help on using the changeset viewer.