- Timestamp:
- 11/28/10 15:56:17 (14 years ago)
- Location:
- trunk/sources/HeuristicLab.Problems.DataAnalysis.Regression/3.3
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.DataAnalysis.Regression/3.3/HeuristicLab.Problems.DataAnalysis.Regression-3.3.csproj
r4800 r4980 180 180 <Name>HeuristicLab.Encodings.SymbolicExpressionTreeEncoding-3.3</Name> 181 181 </ProjectReference> 182 <ProjectReference Include="..\..\HeuristicLab.ExtLibs\HeuristicLab.ALGLIB\ 2.5.0\ALGLIB-2.5.0\ALGLIB-2.5.0.csproj">183 <Project>{ 29E4B033-1FEF-4FE1-AE17-0A9319D7C54E}</Project>184 <Name>ALGLIB- 2.5.0</Name>185 </ProjectReference> 186 <ProjectReference Include="..\..\HeuristicLab.ExtLibs\HeuristicLab.ALGLIB\ 2.5.0\HeuristicLab.ALGLIB-2.5.0\HeuristicLab.ALGLIB-2.5.0.csproj">187 <Project>{ 01BBCB5A-144A-4A7E-908E-079849E2F7CF}</Project>188 <Name>HeuristicLab.ALGLIB- 2.5.0</Name>182 <ProjectReference Include="..\..\HeuristicLab.ExtLibs\HeuristicLab.ALGLIB\3.1.0\ALGLIB-3.1.0\ALGLIB-3.1.0.csproj"> 183 <Project>{FC841674-62A7-4055-BE91-E41944B6C606}</Project> 184 <Name>ALGLIB-3.1.0</Name> 185 </ProjectReference> 186 <ProjectReference Include="..\..\HeuristicLab.ExtLibs\HeuristicLab.ALGLIB\3.1.0\HeuristicLab.ALGLIB-3.1.0\HeuristicLab.ALGLIB-3.1.0.csproj"> 187 <Project>{DE69A359-A5B8-4D3D-BA8D-D5780D7F96D6}</Project> 188 <Name>HeuristicLab.ALGLIB-3.1.0 %28HeuristicLab.ExtLibs\HeuristicLab.ALGLIB\HeuristicLab.ALGLIB-3.1.0\HeuristicLab.ALGLIB-3.1.0%29</Name> 189 189 </ProjectReference> 190 190 <ProjectReference Include="..\..\HeuristicLab.ExtLibs\HeuristicLab.LibSVM\1.6.3\HeuristicLab.LibSVM-1.6.3\HeuristicLab.LibSVM-1.6.3.csproj"> -
trunk/sources/HeuristicLab.Problems.DataAnalysis.Regression/3.3/HeuristicLabProblemsDataAnalysisRegressionPlugin.cs.frame
r4865 r4980 28 28 [Plugin("HeuristicLab.Problems.DataAnalysis.Regression", "3.3.2.$WCREV$")] 29 29 [PluginFile("HeuristicLab.Problems.DataAnalysis.Regression-3.3.dll", PluginFileType.Assembly)] 30 [PluginDependency("HeuristicLab.ALGLIB", " 2.5")]30 [PluginDependency("HeuristicLab.ALGLIB", "3.1")] 31 31 [PluginDependency("HeuristicLab.Analysis", "3.3")] 32 32 [PluginDependency("HeuristicLab.Collections", "3.3")] -
trunk/sources/HeuristicLab.Problems.DataAnalysis.Regression/3.3/LinearRegression/LinearRegressionSolutionCreator.cs
r4722 r4980 111 111 112 112 int retVal = 1; 113 alglib.linreg.lrbuild( ref inputMatrix, nRows, nFeatures, ref retVal, ref lm, refar);113 alglib.linreg.lrbuild(inputMatrix, nRows, nFeatures, ref retVal, lm, ar); 114 114 if (retVal != 1) throw new ArgumentException("Error in calculation of linear regression model"); 115 115 rmsError = ar.rmserror;
Note: See TracChangeset
for help on using the changeset viewer.