- Timestamp:
- 03/19/14 13:05:33 (11 years ago)
- Location:
- branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3
- Files:
-
- 3 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); -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Interfaces/IFilterLogic.cs
r10619 r10620 24 24 namespace HeuristicLab.DataPreprocessing { 25 25 public interface IFilterLogic { 26 List<bool> Preview(IList<IFilter> filters);27 void Apply(IList< IFilter> filters);26 bool[] Preview(IList<ComparisonFilter> filters); 27 void Apply(IList<ComparisonFilter> filters); 28 28 } 29 29 }
Note: See TracChangeset
for help on using the changeset viewer.