Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/20/18 15:52:16 (6 years ago)
Author:
gkronber
Message:

#2908 changed handling of resource names (moved into data descriptors)

Location:
trunk/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/RealWorld
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/RealWorld/ChemicalOne.cs

    r15855 r16169  
    2222namespace HeuristicLab.Problems.Instances.DataAnalysis {
    2323  public class ChemicalOne : ResourceRegressionDataDescriptor {
    24     public ChemicalOne(string resourceName) : base(resourceName) { }
     24    public ChemicalOne() : base("Chemical-I.csv") { }
    2525    public override string Name { get { return "Chemical-I"; } }
    2626    public override string Description { get { return ""; } }
  • trunk/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/RealWorld/Housing.cs

    r15855 r16169  
    2222namespace HeuristicLab.Problems.Instances.DataAnalysis {
    2323  public class Housing : ResourceRegressionDataDescriptor {
    24     public Housing(string resourceName) : base(resourceName) { }
     24    public Housing() : base("Housing.csv") { }
    2525    public override string Name { get { return "Housing"; } }
    2626    public override string Description { get { return ""; } }
  • trunk/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/RealWorld/Powermeter.cs

    r15855 r16169  
    2424namespace HeuristicLab.Problems.Instances.DataAnalysis {
    2525  public class Powermeter : ResourceRegressionDataDescriptor {
    26     public Powermeter(string resourceName) : base(resourceName) { }
     26    public Powermeter() : base("Powermeter.txt") { }
    2727    public override string Name { get { return "Powermeter"; } }
    2828    public override string Description {
  • trunk/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/RealWorld/RealWorldRegressionInstanceProvider.cs

    r15855 r16169  
    4747    public override IEnumerable<IDataDescriptor> GetDataDescriptors() {
    4848      List<ResourceRegressionDataDescriptor> descriptorList = new List<ResourceRegressionDataDescriptor>();
    49       descriptorList.Add(new ChemicalOne("Chemical-I.csv"));
    50       descriptorList.Add(new Housing("Housing.csv"));
    51       descriptorList.Add(new Tower("Tower.txt"));
    52       descriptorList.Add(new Powermeter("Powermeter.txt"));
    53       descriptorList.Add(new SARCOS("SARCOS - Inverse Dynamics.txt"));
     49      descriptorList.Add(new ChemicalOne());
     50      descriptorList.Add(new Housing());
     51      descriptorList.Add(new Tower());
     52      descriptorList.Add(new Powermeter());
     53      descriptorList.Add(new SARCOS());
    5454      return descriptorList;
    5555    }
  • trunk/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/RealWorld/SARCOS.cs

    r15855 r16169  
    2424namespace HeuristicLab.Problems.Instances.DataAnalysis {
    2525  public class SARCOS : ResourceRegressionDataDescriptor {
    26     public SARCOS(string resourceName) : base(resourceName) { }
     26    public SARCOS() : base("SARCOS - Inverse Dynamics.txt") { }
    2727    public override string Name { get { return "SARCOS - Inverse Dynamics"; } }
    2828    public override string Description {
  • trunk/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/RealWorld/Tower.cs

    r15855 r16169  
    2424namespace HeuristicLab.Problems.Instances.DataAnalysis {
    2525  public class Tower : ResourceRegressionDataDescriptor {
    26     public Tower(string resourceName) : base(resourceName) { }
     26    public Tower() : base("Tower.txt") { }
    2727    public override string Name { get { return "Tower"; } }
    2828    public override string Description {
Note: See TracChangeset for help on using the changeset viewer.