Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/13/17 13:10:50 (7 years ago)
Author:
bburlacu
Message:

#2723: Add DatasetUtil static class with useful methods for dealing with Datasets. Add input validation to Dataset constructor.

File:
1 edited

Legend:

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

    r14826 r14857  
    7474        throw new ArgumentException(message);
    7575      }
    76 
     76      DatasetUtil.ValidateInputData(variableValues); // the validation call checks if every values IList is actually a list of the supported type
    7777      rows = variableValues.First().Count;
    7878      this.variableNames = new List<string>(variableNames);
Note: See TracChangeset for help on using the changeset viewer.