Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
10/16/12 09:44:07 (12 years ago)
Author:
sforsten
Message:

#1776:

Location:
branches/ClassificationEnsembleVoting/HeuristicLab.Problems.DataAnalysis
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/ClassificationEnsembleVoting/HeuristicLab.Problems.DataAnalysis

  • branches/ClassificationEnsembleVoting/HeuristicLab.Problems.DataAnalysis/3.4/HeuristicLab.Problems.DataAnalysis-3.4.csproj

    r8508 r8811  
    9393  </PropertyGroup>
    9494  <ItemGroup>
     95    <Reference Include="ALGLIB-3.6.0, Version=3.6.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
     96      <HintPath>>..\..\..\..\trunk\sources\bin\ALGLIB-3.6.0.dll</HintPath>
     97      <Private>False</Private>
     98    </Reference>
     99    <Reference Include="HeuristicLab.ALGLIB-3.6.0, Version=3.6.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
     100      <HintPath>>..\..\..\..\trunk\sources\bin\HeuristicLab.ALGLIB-3.6.0.dll</HintPath>
     101      <Private>False</Private>
     102    </Reference>
    95103    <Reference Include="HeuristicLab.Collections-3.3">
    96104      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Collections-3.3.dll</HintPath>
     
    147155  </ItemGroup>
    148156  <ItemGroup>
     157    <Compile Include="DatasetExtensions.cs" />
    149158    <Compile Include="DoubleLimit.cs" />
    150159    <Compile Include="Implementation\Classification\ClassificationEnsembleModel.cs">
     
    175184    </Compile>
    176185    <Compile Include="Implementation\Regression\RegressionEnsembleSolution.cs" />
     186    <Compile Include="Implementation\TimeSeriesPrognosis\Models\ConstantTimeSeriesPrognosisModel.cs" />
     187    <Compile Include="Implementation\TimeSeriesPrognosis\Models\TimeSeriesPrognosisAutoRegressiveModel.cs" />
     188    <Compile Include="Implementation\TimeSeriesPrognosis\TimeSeriesPrognosisProblem.cs" />
     189    <Compile Include="Implementation\TimeSeriesPrognosis\TimeSeriesPrognosisProblemData.cs" />
     190    <Compile Include="Implementation\TimeSeriesPrognosis\TimeSeriesPrognosisResults.cs" />
     191    <Compile Include="Implementation\TimeSeriesPrognosis\TimeSeriesPrognosisSolution.cs" />
     192    <Compile Include="Implementation\TimeSeriesPrognosis\TimeSeriesPrognosisSolutionBase.cs" />
    177193    <Compile Include="Interfaces\Classification\IClassificationEnsembleModel.cs">
    178194      <SubType>Code</SubType>
     
    188204    <Compile Include="Interfaces\Regression\IRegressionEnsembleSolution.cs" />
    189205    <Compile Include="Implementation\Regression\RegressionSolutionBase.cs" />
     206    <Compile Include="Interfaces\TimeSeriesPrognosis\IOnlineTimeSeriesCalculator.cs" />
     207    <Compile Include="Interfaces\TimeSeriesPrognosis\ITimeSeriesPrognosisModel.cs" />
     208    <Compile Include="Interfaces\TimeSeriesPrognosis\ITimeSeriesPrognosisProblem.cs" />
     209    <Compile Include="Interfaces\TimeSeriesPrognosis\ITimeSeriesPrognosisProblemData.cs" />
     210    <Compile Include="Interfaces\TimeSeriesPrognosis\ITimeSeriesPrognosisSolution.cs" />
     211    <Compile Include="OnlineCalculators\AutoCorrelationCalculator.cs" />
     212    <Compile Include="OnlineCalculators\OnlineBoundedMeanSquaredErrorCalculator.cs" />
    190213    <Compile Include="OnlineCalculators\HoeffdingsDependenceCalculator.cs" />
     214    <Compile Include="OnlineCalculators\OnlineDirectionalSymmetryCalculator.cs" />
    191215    <Compile Include="OnlineCalculators\OnlineMaxAbsoluteErrorCalculator.cs" />
    192216    <Compile Include="OnlineCalculators\OnlineMeanErrorCalculator.cs" />
     
    227251    <Compile Include="OnlineCalculators\OnlinePearsonsRSquaredCalculator.cs" />
    228252    <Compile Include="Implementation\Regression\RegressionSolution.cs" />
     253    <Compile Include="OnlineCalculators\OnlineTheilsUStatisticCalculator.cs" />
     254    <Compile Include="OnlineCalculators\OnlineWeightedDirectionalSymmetryCalculator.cs" />
     255    <Compile Include="OnlineCalculators\SpearmansRankCorrelationCoefficientCalculator.cs" />
    229256    <Compile Include="Plugin.cs" />
    230257    <Compile Include="Implementation\Classification\ThresholdCalculators\AccuracyMaximizationThresholdCalculator.cs" />
     
    256283  </ItemGroup>
    257284  <ItemGroup />
     285  <ItemGroup />
    258286  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
    259287  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
     
    265293  -->
    266294  <PropertyGroup>
    267     <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
     295    <PreBuildEvent Condition=" '$(OS)' == 'Windows_NT' ">set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
    268296set ProjectDir=$(ProjectDir)
    269297set SolutionDir=$(SolutionDir)
     
    272300call PreBuildEvent.cmd
    273301</PreBuildEvent>
     302    <PreBuildEvent Condition=" '$(OS)' != 'Windows_NT' ">
     303export ProjectDir=$(ProjectDir)
     304export SolutionDir=$(SolutionDir)
     305
     306$SolutionDir/PreBuildEvent.sh
     307</PreBuildEvent>
    274308  </PropertyGroup>
    275309</Project>
Note: See TracChangeset for help on using the changeset viewer.