- Timestamp:
- 03/26/14 15:13:26 (11 years ago)
- Location:
- branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/Filter/ComparisonFilter.cs
r10620 r10667 105 105 106 106 107 public bool[] Check()107 public new bool[] Check() 108 108 { 109 109 bool[] result = new bool[ConstrainedValue.Rows]; … … 134 134 } 135 135 136 public bool[] Check(out string errorMessage)136 public new bool[] Check(out string errorMessage) 137 137 { 138 138 errorMessage = string.Empty; -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/Filter/IFilter.cs
r10638 r10667 9 9 public interface IFilter : IConstraint 10 10 { 11 bool[] Check();12 bool[] Check(out string errorMessage);11 new bool[] Check(); 12 new bool[] Check(out string errorMessage); 13 13 } 14 14 } -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/FilterLogic.cs
r10666 r10667 40 40 foreach (IFilter filter in filters) 41 41 { 42 if (filter.ConstraintData == null) { 43 continue; 44 } 45 42 46 bool[] filterResult = filter.Check(); 43 47
Note: See TracChangeset
for help on using the changeset viewer.