Changeset 10587 for branches/DataPreprocessing
- Timestamp:
- 03/12/14 17:07:47 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/Filter/ComparisonFilter.cs
r10582 r10587 26 26 using System.Collections; 27 27 using HeuristicLab.Common; 28 using HeuristicLab.Data;29 28 30 29 namespace HeuristicLab.DataPreprocessing.Filter … … 105 104 } 106 105 106 107 107 protected override bool Check(object constrainedMember) 108 108 { … … 127 127 } 128 128 129 if ( !base.Check(item))129 if (base.Check(item)) 130 130 return true; 131 131
Note: See TracChangeset
for help on using the changeset viewer.