Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/24/12 15:22:13 (12 years ago)
Author:
sforsten
Message:

#1784:

  • deleted not needed Consumer in ProblemInstanceProvider and IProblemInstanceProvider
  • changed protection level of exporter and consumer in ProblemInstanceProviderViewGeneric
  • renamed property FileExtension to FileName in ResourceClassificationInstanceProvider and ResourceRegressionInstanceProvider
  • deleted ImportProblemDataFromFile method from IDataAnalysisProblem and all classes and interfaces, which implement this method
  • removed unnecessary yield return in GetDoubleValues in the Dataset. Now it's a normal return statement
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/ProblemInstancesRegressionAndClassification/HeuristicLab.Problems.Instances.Classification/3.4/RealWorld/RealWorldInstanceProvider.cs

    r7685 r7758  
    4343    }
    4444
    45     protected override string FileExtension { get { return "RealWorld"; } }
     45    protected override string FileName { get { return "RealWorld"; } }
    4646
    4747    public override IEnumerable<IDataDescriptor> GetDataDescriptors() {
     
    4949      descriptorList.Add(new Iris());
    5050      descriptorList.Add(new Mammography());
    51       var solutionsArchiveName = GetResourceName(FileExtension + @"\.zip");
     51      var solutionsArchiveName = GetResourceName(FileName + @"\.zip");
    5252      if (!String.IsNullOrEmpty(solutionsArchiveName)) {
    5353        using (var solutionsZipFile = new ZipInputStream(GetType().Assembly.GetManifestResourceStream(solutionsArchiveName))) {
Note: See TracChangeset for help on using the changeset viewer.