- Timestamp:
- 02/22/11 16:46:31 (14 years ago)
- Location:
- branches/DataAnalysis Refactoring/HeuristicLab.Problems.DataAnalysis/3.4
- Files:
-
- 4 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataAnalysis Refactoring/HeuristicLab.Problems.DataAnalysis/3.4/HeuristicLab.Problems.DataAnalysis-3.4.csproj
r5496 r5540 108 108 </ItemGroup> 109 109 <ItemGroup> 110 <Compile Include="RegressionProblemData.cs" /> 111 <Compile Include="DataAnalysisProblemData.cs" /> 112 <Compile Include="RegressionProblem.cs" /> 113 <Compile Include="DataAnalysisProblem.cs" /> 110 114 <Compile Include="Dataset.cs" /> 111 115 <Compile Include="Interfaces\Classification\IClassificationEvaluator.cs" /> … … 162 166 <Name>HeuristicLab.Data-3.3</Name> 163 167 </ProjectReference> 164 <ProjectReference Include="..\..\HeuristicLab.ExtLibs\HeuristicLab.ALGLIB\3.1.0\ALGLIB-3.1.0\ALGLIB-3.1.0.csproj">165 <Project>{FC841674-62A7-4055-BE91-E41944B6C606}</Project>166 <Name>ALGLIB-3.1.0</Name>167 </ProjectReference>168 <ProjectReference Include="..\..\HeuristicLab.ExtLibs\HeuristicLab.ALGLIB\3.1.0\HeuristicLab.ALGLIB-3.1.0\HeuristicLab.ALGLIB-3.1.0.csproj">169 <Project>{DE69A359-A5B8-4D3D-BA8D-D5780D7F96D6}</Project>170 <Name>HeuristicLab.ALGLIB-3.1.0 %28HeuristicLab.ExtLibs\HeuristicLab.ALGLIB\HeuristicLab.ALGLIB-3.1.0\HeuristicLab.ALGLIB-3.1.0%29</Name>171 </ProjectReference>172 <ProjectReference Include="..\..\HeuristicLab.ExtLibs\HeuristicLab.LibSVM\1.6.3\HeuristicLab.LibSVM-1.6.3\HeuristicLab.LibSVM-1.6.3.csproj">173 <Project>{89B50302-9CEE-4D13-9779-633EADCAE624}</Project>174 <Name>HeuristicLab.LibSVM-1.6.3 %28HeuristicLab.ExtLibs\HeuristicLab.LibSVM\HeuristicLab.LibSVM-1.6.3\HeuristicLab.LibSVM-1.6.3%29</Name>175 </ProjectReference>176 <ProjectReference Include="..\..\HeuristicLab.ExtLibs\HeuristicLab.LibSVM\1.6.3\LibSVM-1.6.3\LibSVM-1.6.3.csproj">177 <Project>{A16F23B5-FB62-499E-A831-26953AA56FE2}</Project>178 <Name>LibSVM-1.6.3</Name>179 </ProjectReference>180 168 <ProjectReference Include="..\..\HeuristicLab.Operators\3.3\HeuristicLab.Operators-3.3.csproj"> 181 169 <Project>{23DA7FF4-D5B8-41B6-AA96-F0561D24F3EE}</Project> -
branches/DataAnalysis Refactoring/HeuristicLab.Problems.DataAnalysis/3.4/Interfaces/IDataAnalysisProblem.cs
r5509 r5540 21 21 22 22 using HeuristicLab.Optimization; 23 using HeuristicLab.Core; 23 24 24 25 namespace HeuristicLab.Problems.DataAnalysis { 25 26 public interface IDataAnalysisProblem<T> : IProblem 26 27 where T : class, IDataAnalysisProblemData { 28 IValueParameter<T> ProblemDataParameter { get; } 27 29 T ProblemData { get; } 28 30 new IDataAnalysisEvaluator<T> Evaluator { get; }
Note: See TracChangeset
for help on using the changeset viewer.