Free cookie consent management tool by TermsFeed Policy Generator

Changeset 10670


Ignore:
Timestamp:
03/26/14 15:41:30 (10 years ago)
Author:
sbreuer
Message:
  • cast all objects of matrix to heuisticlab strings
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/Filter/ComparisonFilter.cs

    r10667 r10670  
    117117                if (ConstrainedValue.IsType<double>(constraintColumn))
    118118                {
    119                     item = ConstrainedValue.GetCell<double>(ConstraintColumn, row);
     119                  item = new StringValue(ConstrainedValue.GetCell<double>(ConstraintColumn, row).ToString());
    120120                }
    121121                else if (ConstrainedValue.IsType<DateTime>(constraintColumn))
    122122                {
    123                     item = ConstrainedValue.GetCell<DateTime>(ConstraintColumn, row);
     123                  item = new StringValue(ConstrainedValue.GetCell<DateTime>(ConstraintColumn, row).ToString());
    124124                }
    125125                else
    126126                {
    127                     item = ConstrainedValue.GetCell<string>(ConstraintColumn, row);
     127                  item = new StringValue(ConstrainedValue.GetCell<string>(ConstraintColumn, row));
    128128                }
    129129
Note: See TracChangeset for help on using the changeset viewer.