Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/14/16 13:56:25 (8 years ago)
Author:
bburlacu
Message:

#2593: Rename ReplaceColumn method to ReplaceVariable and make it non-generic. Use new list constructor instead of extension method in the ToModifiable method.

File:
1 edited

Legend:

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

    r13760 r13761  
    7575    }
    7676
    77     public void ReplaceColumn<T>(string variableName, List<T> values) {
     77    public void ReplaceVariable(string variableName, IList values) {
    7878      if (!variableValues.ContainsKey(variableName))
    7979        throw new ArgumentException(string.Format("Variable {0} is not present in the dataset."), variableName);
Note: See TracChangeset for help on using the changeset viewer.