Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/14/14 11:44:17 (10 years ago)
Author:
rstoll
Message:
  • FilterResult was inversed at some point (true meaning it is filtered, not displayed respectively and thus not found and false means found)
  • Fixed that search applies a preview (data shall not be filtered, it only uses the FilterLogic)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Interfaces/IFilterLogic.cs

    r10785 r10844  
    2020#endregion
    2121
     22using System.Collections.Generic;
    2223using HeuristicLab.DataPreprocessing.Filter;
    23 using System.Collections.Generic;
    2424namespace HeuristicLab.DataPreprocessing {
    2525  public interface IFilterLogic {
     26    bool[] GetFilterResult(IList<IFilter> filters, bool isAndCombination);
    2627    bool[] Preview(IList<IFilter> filters, bool isAndCombination);
    2728    void Apply(IList<IFilter> filters, bool isAndCombination);
    28     IPreprocessingData PreprocessingData{get;}
     29    IPreprocessingData PreprocessingData { get; }
    2930    void Reset();
    3031  }
Note: See TracChangeset for help on using the changeset viewer.