- Timestamp:
- 05/14/14 11:44:17 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Interfaces/IFilterLogic.cs
r10785 r10844 20 20 #endregion 21 21 22 using System.Collections.Generic; 22 23 using HeuristicLab.DataPreprocessing.Filter; 23 using System.Collections.Generic;24 24 namespace HeuristicLab.DataPreprocessing { 25 25 public interface IFilterLogic { 26 bool[] GetFilterResult(IList<IFilter> filters, bool isAndCombination); 26 27 bool[] Preview(IList<IFilter> filters, bool isAndCombination); 27 28 void Apply(IList<IFilter> filters, bool isAndCombination); 28 IPreprocessingData PreprocessingData {get;}29 IPreprocessingData PreprocessingData { get; } 29 30 void Reset(); 30 31 }
Note: See TracChangeset
for help on using the changeset viewer.