Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/17/08 14:29:53 (15 years ago)
Author:
gkronber
Message:

worked on CEDMA console and problem importer. #419 (Refactor CEDMA plugins)

File:
1 edited

Legend:

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

    r992 r1003  
    4949    public int TrainingSamplesStart {
    5050      get { return trainingSamplesStart; }
     51      set { trainingSamplesStart = value; }
    5152    }
    5253
     
    5455    public int TrainingSamplesEnd {
    5556      get { return trainingSamplesEnd; }
     57      set { trainingSamplesEnd = value; }
    5658    }
    5759
     
    8385
    8486    private List<int> allowedInputVariables;
     87    public List<int> AllowedInputVariables {
     88      get { return allowedInputVariables; }
     89    }
     90
    8591    private List<int> allowedTargetVariables;
    86 
    87     private List<int> minTimeOffsets;
    88     private List<int> maxTimeOffsets;
     92    public List<int> AllowedTargetVariables {
     93      get { return allowedTargetVariables; }
     94    }
    8995
    9096    private bool autoRegressive;
     
    104110    public Problem()
    105111      : base() {
     112      dataset = new DataAnalysis.Dataset();
     113      allowedInputVariables = new List<int>();
     114      allowedTargetVariables = new List<int>();
     115    }
     116
     117    public override IView CreateView() {
     118      return new ProblemView(this);
    106119    }
    107120  }
Note: See TracChangeset for help on using the changeset viewer.