Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/21/12 10:19:26 (12 years ago)
Author:
sforsten
Message:

#1784:

  • added project HeuristicLab.Problem.Instances.DataAnalysis and deleted HeuristicLab.Problem.Instances.Classification and HeuristicLab.Problem.Instances.Regression
  • buttons are now big enough for the icons
Location:
trunk/sources/HeuristicLab.Tests
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Tests/HeuristicLab-3.3/SamplesTest.cs

    r7823 r7849  
    4444using HeuristicLab.Problems.DataAnalysis.Symbolic.Classification;
    4545using HeuristicLab.Problems.DataAnalysis.Symbolic.Regression;
     46using HeuristicLab.Problems.Instances.DataAnalysis;
    4647using HeuristicLab.Problems.Instances.TSPLIB;
    4748using HeuristicLab.Problems.Knapsack;
     
    5354using HeuristicLab.Selection;
    5455using Microsoft.VisualStudio.TestTools.UnitTesting;
    55 using classification = HeuristicLab.Problems.Instances.Classification;
    56 using regression = HeuristicLab.Problems.Instances.Regression;
    5756
    5857namespace HeuristicLab_33.Tests {
     
    250249      symbRegProblem.Name = "Tower Symbolic Regression Problem";
    251250      symbRegProblem.Description = "Tower Dataset (downloaded from: http://vanillamodeling.com/realproblems.html)";
    252       regression.RealWorldInstanceProvider provider = new regression.RealWorldInstanceProvider();
     251      RegressionRealWorldInstanceProvider provider = new RegressionRealWorldInstanceProvider();
    253252      var instance = provider.GetDataDescriptors().Where(x => x.Name.Equals("towerData")).Single();
    254253      var towerProblemData = (RegressionProblemData)provider.LoadData(instance);
     
    355354      symbClassProblem.Name = "Mammography Classification Problem";
    356355      symbClassProblem.Description = "Mammography dataset imported from the UCI machine learning repository (http://archive.ics.uci.edu/ml/datasets/Mammographic+Mass)";
    357       classification.RealWorldInstanceProvider provider = new classification.RealWorldInstanceProvider();
     356      ClassificationRealWorldInstanceProvider provider = new ClassificationRealWorldInstanceProvider();
    358357      var instance = provider.GetDataDescriptors().Where(x => x.Name.Equals("mammography")).Single();
    359358      var mammoData = (ClassificationProblemData)provider.LoadData(instance);
  • trunk/sources/HeuristicLab.Tests/HeuristicLab.Problems.DataAnalysis-3.4/TableFileParserTest.cs

    r7823 r7849  
    2323using System.Globalization;
    2424using System.IO;
    25 using HeuristicLab.Problems.Instances;
     25using HeuristicLab.Problems.Instances.DataAnalysis;
    2626using Microsoft.VisualStudio.TestTools.UnitTesting;
     27
    2728namespace HeuristicLab.Problems.DataAnalysis_3_4.Tests {
    2829
  • trunk/sources/HeuristicLab.Tests/HeuristicLab.Tests.csproj

    r7835 r7849  
    595595      <Name>HeuristicLab.Problems.ExternalEvaluation-3.3</Name>
    596596    </ProjectReference>
    597     <ProjectReference Include="..\HeuristicLab.Problems.Instances.Classification\3.3\HeuristicLab.Problems.Instances.Classification-3.3.csproj">
    598       <Project>{1BBFCD5B-8A1C-4225-A682-ADEC7800E683}</Project>
    599       <Name>HeuristicLab.Problems.Instances.Classification-3.3</Name>
    600     </ProjectReference>
    601597    <ProjectReference Include="..\HeuristicLab.Problems.Instances.CordeauGQAP\3.3\HeuristicLab.Problems.Instances.CordeauGQAP-3.3.csproj">
    602598      <Project>{1F2718DA-BF13-40EE-A7FD-EEDB4912E64E}</Project>
    603599      <Name>HeuristicLab.Problems.Instances.CordeauGQAP-3.3</Name>
    604600    </ProjectReference>
     601    <ProjectReference Include="..\HeuristicLab.Problems.Instances.DataAnalysis\3.3\HeuristicLab.Problems.Instances.DataAnalysis-3.3.csproj">
     602      <Project>{94C7714E-29D4-4D6D-B213-2C18D627AB75}</Project>
     603      <Name>HeuristicLab.Problems.Instances.DataAnalysis-3.3</Name>
     604    </ProjectReference>
    605605    <ProjectReference Include="..\HeuristicLab.Problems.Instances.ElloumiCTAP\3.3\HeuristicLab.Problems.Instances.ElloumiCTAP-3.3.csproj">
    606606      <Project>{CCF61DA0-B226-4C0F-8052-29ACC6BDE6EE}</Project>
     
    610610      <Project>{73F29D43-5714-4069-8FAB-0D18FEB5F175}</Project>
    611611      <Name>HeuristicLab.Problems.Instances.QAPLIB-3.3</Name>
    612     </ProjectReference>
    613     <ProjectReference Include="..\HeuristicLab.Problems.Instances.Regression\3.3\HeuristicLab.Problems.Instances.Regression-3.3.csproj">
    614       <Project>{26BF13E1-C8B2-4ACE-862D-EBFD360116B3}</Project>
    615       <Name>HeuristicLab.Problems.Instances.Regression-3.3</Name>
    616612    </ProjectReference>
    617613    <ProjectReference Include="..\HeuristicLab.Problems.Instances.TSPLIB.Views\3.3\HeuristicLab.Problems.Instances.TSPLIB.Views-3.3.csproj">
Note: See TracChangeset for help on using the changeset viewer.