Changeset 10667
- Timestamp:
- 03/26/14 15:13:26 (11 years ago)
- Location:
- branches/DataPreprocessing
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/HeuristicLab.DataPreprocessing.Views-3.3.csproj
r10658 r10667 91 91 <DependentUpon>FindAndReplaceDialog.cs</DependentUpon> 92 92 </Compile> 93 <Compile Include="HistogramView.cs" /> 93 <Compile Include="HistogramView.cs"> 94 <SubType>UserControl</SubType> 95 </Compile> 94 96 <Compile Include="HistogramView.Designer.cs"> 95 97 <DependentUpon>HistogramView.cs</DependentUpon> 96 98 </Compile> 97 <Compile Include="LineChartView.cs" /> 99 <Compile Include="LineChartView.cs"> 100 <SubType>UserControl</SubType> 101 </Compile> 98 102 <Compile Include="LineChartView.Designer.cs"> 99 103 <DependentUpon>LineChartView.cs</DependentUpon> 100 104 </Compile> 101 105 <Compile Include="Plugin.cs" /> 102 <Compile Include="PreprocessingChartView.cs" /> 106 <Compile Include="PreprocessingChartView.cs"> 107 <SubType>UserControl</SubType> 108 </Compile> 103 109 <Compile Include="PreprocessingChartView.Designer.cs"> 104 110 <DependentUpon>PreprocessingChartView.cs</DependentUpon> -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/Filter/ComparisonFilter.cs
r10620 r10667 105 105 106 106 107 public bool[] Check()107 public new bool[] Check() 108 108 { 109 109 bool[] result = new bool[ConstrainedValue.Rows]; … … 134 134 } 135 135 136 public bool[] Check(out string errorMessage)136 public new bool[] Check(out string errorMessage) 137 137 { 138 138 errorMessage = string.Empty; -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/Filter/IFilter.cs
r10638 r10667 9 9 public interface IFilter : IConstraint 10 10 { 11 bool[] Check();12 bool[] Check(out string errorMessage);11 new bool[] Check(); 12 new bool[] Check(out string errorMessage); 13 13 } 14 14 } -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/FilterLogic.cs
r10666 r10667 40 40 foreach (IFilter filter in filters) 41 41 { 42 if (filter.ConstraintData == null) { 43 continue; 44 } 45 42 46 bool[] filterResult = filter.Check(); 43 47
Note: See TracChangeset
for help on using the changeset viewer.