- Timestamp:
- 04/23/14 15:51:41 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Interfaces/IFilterLogic.cs
r10638 r10785 24 24 namespace HeuristicLab.DataPreprocessing { 25 25 public interface IFilterLogic { 26 bool[] Preview(IList<IFilter> filters );27 void Apply(IList<IFilter> filters );26 bool[] Preview(IList<IFilter> filters, bool isAndCombination); 27 void Apply(IList<IFilter> filters, bool isAndCombination); 28 28 IPreprocessingData PreprocessingData{get;} 29 void Reset(); 29 30 } 30 31 }
Note: See TracChangeset
for help on using the changeset viewer.