Free cookie consent management tool by TermsFeed Policy Generator

Changeset 5540


Ignore:
Timestamp:
02/22/11 16:46:31 (13 years ago)
Author:
gkronber
Message:

#1418 added implementations of DataAnalysisProblem and RegressionProblem

Location:
branches/DataAnalysis Refactoring
Files:
4 added
3 edited

Legend:

Unmodified
Added
Removed
  • branches/DataAnalysis Refactoring/HeuristicLab.Algorithms.DataAnalysis/3.4/HeuristicLabAlgorithmsDataAnalysisPlugin.cs.frame

    r5519 r5540  
    2828  [Plugin("HeuristicLab.Algorithms.DataAnalysis", "3.4.0.$WCREV$")]
    2929  [PluginFile("HeuristicLab.Algorithms.DataAnalysis-3.4.dll", PluginFileType.Assembly)]
     30  [PluginDependency("HeuristicLab.ALGLIB", "3.1.0")]
    3031  [PluginDependency("HeuristicLab.Collections", "3.3")]
    3132  [PluginDependency("HeuristicLab.Common", "3.3")]
  • branches/DataAnalysis Refactoring/HeuristicLab.Problems.DataAnalysis/3.4/HeuristicLab.Problems.DataAnalysis-3.4.csproj

    r5496 r5540  
    108108  </ItemGroup>
    109109  <ItemGroup>
     110    <Compile Include="RegressionProblemData.cs" />
     111    <Compile Include="DataAnalysisProblemData.cs" />
     112    <Compile Include="RegressionProblem.cs" />
     113    <Compile Include="DataAnalysisProblem.cs" />
    110114    <Compile Include="Dataset.cs" />
    111115    <Compile Include="Interfaces\Classification\IClassificationEvaluator.cs" />
     
    162166      <Name>HeuristicLab.Data-3.3</Name>
    163167    </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>
    180168    <ProjectReference Include="..\..\HeuristicLab.Operators\3.3\HeuristicLab.Operators-3.3.csproj">
    181169      <Project>{23DA7FF4-D5B8-41B6-AA96-F0561D24F3EE}</Project>
  • branches/DataAnalysis Refactoring/HeuristicLab.Problems.DataAnalysis/3.4/Interfaces/IDataAnalysisProblem.cs

    r5509 r5540  
    2121
    2222using HeuristicLab.Optimization;
     23using HeuristicLab.Core;
    2324
    2425namespace HeuristicLab.Problems.DataAnalysis {
    2526  public interface IDataAnalysisProblem<T> : IProblem
    2627  where T : class, IDataAnalysisProblemData {
     28    IValueParameter<T> ProblemDataParameter { get; }
    2729    T ProblemData { get; }
    2830    new IDataAnalysisEvaluator<T> Evaluator { get; }
Note: See TracChangeset for help on using the changeset viewer.