Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/Filter/IFilter.cs @ 10667

Last change on this file since 10667 was 10667, checked in by mleitner, 10 years ago

Dont calculate filter preview when no constraintdata

File size: 301 bytes
Line 
1using HeuristicLab.Core;
2using System;
3using System.Collections.Generic;
4using System.Linq;
5using System.Text;
6
7namespace HeuristicLab.DataPreprocessing.Filter
8{
9  public interface IFilter : IConstraint
10  {
11    new bool[] Check();
12    new bool[] Check(out string errorMessage);
13  }
14}
Note: See TracBrowser for help on using the repository browser.