Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/20/11 15:07:45 (13 years ago)
Author:
gkronber
Message:

#1450 adapted views for regression solution to work for ensembles of regression solutions as well.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/DataAnalysisProblemData.cs

    r6236 r6238  
    7171    }
    7272
    73     public IEnumerable<int> TrainingIndizes {
     73    public virtual IEnumerable<int> TrainingIndizes {
    7474      get {
    7575        return Enumerable.Range(TrainingPartition.Start, TrainingPartition.End - TrainingPartition.Start)
     
    7777      }
    7878    }
    79     public IEnumerable<int> TestIndizes {
     79    public virtual IEnumerable<int> TestIndizes {
    8080      get {
    8181        return Enumerable.Range(TestPartition.Start, TestPartition.End - TestPartition.Start)
Note: See TracChangeset for help on using the changeset viewer.