Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/15/08 10:48:49 (15 years ago)
Author:
gkronber
Message:

Added basic design for ProblemView #419 (Refactor CEDMA plugins)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/CEDMA-Refactoring-Ticket419/HeuristicLab.CEDMA.Core/Problem.cs

    r988 r992  
    4141      get { return name; }
    4242    }
     43    private HeuristicLab.DataAnalysis.Dataset dataset;
     44    public HeuristicLab.DataAnalysis.Dataset DataSet {
     45      get { return dataset; }
     46    }
     47
     48    private int trainingSamplesStart;
     49    public int TrainingSamplesStart {
     50      get { return trainingSamplesStart; }
     51    }
     52
     53    private int trainingSamplesEnd;
     54    public int TrainingSamplesEnd {
     55      get { return trainingSamplesEnd; }
     56    }
     57
     58    private int validationSamplesStart;
     59
     60    public int ValidationSamplesStart {
     61      get { return validationSamplesStart; }
     62      set { validationSamplesStart = value; }
     63    }
     64    private int validationSamplesEnd;
     65
     66    public int ValidationSamplesEnd {
     67      get { return validationSamplesEnd; }
     68      set { validationSamplesEnd = value; }
     69    }
     70
     71    private int testSamplesStart;
     72
     73    public int TestSamplesStart {
     74      get { return testSamplesStart; }
     75      set { testSamplesStart = value; }
     76    }
     77    private int testSamplesEnd;
     78
     79    public int TestSamplesEnd {
     80      get { return testSamplesEnd; }
     81      set { testSamplesEnd = value; }
     82    }
     83
     84    private List<int> allowedInputVariables;
     85    private List<int> allowedTargetVariables;
     86
     87    private List<int> minTimeOffsets;
     88    private List<int> maxTimeOffsets;
     89
     90    private bool autoRegressive;
     91
     92    public bool AutoRegressive {
     93      get { return autoRegressive; }
     94      set { autoRegressive = value; }
     95    }
     96
     97    private bool timeSeries;
     98
     99    public bool TimeSeries {
     100      get { return timeSeries; }
     101      set { timeSeries = value; }
     102    }
     103
    43104    public Problem()
    44105      : base() {
Note: See TracChangeset for help on using the changeset viewer.