- Timestamp:
- 03/19/14 13:05:33 (11 years ago)
- Location:
- branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/Filter/ComparisonFilter.cs
r10619 r10620 105 105 106 106 107 public bool[] Check( object constrainedMember)107 public bool[] Check() 108 108 { 109 109 bool[] result = new bool[ConstrainedValue.Rows]; … … 134 134 } 135 135 136 public bool[] Check(o bject constrainedMember, out string errorMessage)136 public bool[] Check(out string errorMessage) 137 137 { 138 138 errorMessage = string.Empty; 139 return this.Check( constrainedMember);139 return this.Check(); 140 140 } 141 141 -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/FilterLogic.cs
r10619 r10620 52 52 53 53 for(int row = 0; row < results.Length; ++row) 54 { 54 55 if(!results[row]){ 55 56 preprocessingData.DeleteRow(row);
Note: See TracChangeset
for help on using the changeset viewer.