Changeset 16565 for trunk/HeuristicLab.DataPreprocessing/3.4/Filter
- Timestamp:
- 01/28/19 13:41:42 (6 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
/branches/2520_PersistenceReintegration (added) merged: 16451-16454,16462,16465-16468,16470-16472,16474,16476-16477,16479-16487,16529-16530,16539,16551-16555,16558-16559,16562-16564
- Property svn:mergeinfo changed
-
trunk/HeuristicLab.DataPreprocessing
- Property svn:mergeinfo changed
/branches/2520_PersistenceReintegration/HeuristicLab.DataPreprocessing (added) merged: 16452-16454,16462,16474,16529,16539,16558-16559
- Property svn:mergeinfo changed
-
trunk/HeuristicLab.DataPreprocessing/3.4
- Property svn:mergeinfo changed
/branches/2520_PersistenceReintegration/HeuristicLab.DataPreprocessing/3.4 (added) merged: 16452-16454,16462,16474,16529,16539,16558-16559
- Property svn:mergeinfo changed
-
trunk/HeuristicLab.DataPreprocessing/3.4/Filter/ComparisonFilter.cs
r15583 r16565 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 22 22 using System; 23 23 using System.Drawing; 24 using HEAL.Attic; 24 25 using HeuristicLab.Common; 25 26 using HeuristicLab.Common.Resources; … … 29 30 namespace HeuristicLab.DataPreprocessing.Filter { 30 31 [Item("ComparisonFilter", "A filter which compares the member of the preprocessing data with the constraint data.")] 32 [StorableType("6529899a-987c-48b3-ba14-154d25a7cc8e")] 31 33 public class ComparisonFilter : ComparisonConstraint, IFilter { 32 34 public override string ItemName { … … 53 55 54 56 public ComparisonFilter() : base() { } 55 protected ComparisonFilter(bool deserializing) : base(deserializing) { } 57 [StorableConstructor] 58 protected ComparisonFilter(StorableConstructorFlag _) : base(_) { } 56 59 57 60 public ComparisonFilter(IPreprocessingData constrainedValue, ConstraintOperation constraintOperation, object constraintData) -
trunk/HeuristicLab.DataPreprocessing/3.4/Filter/IFilter.cs
r15583 r16565 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 21 21 22 22 using HeuristicLab.Core; 23 using HEAL.Attic; 23 24 24 25 namespace HeuristicLab.DataPreprocessing.Filter { 26 [StorableType("bf5dabf7-e795-493c-b2d0-23051dfb3d2f")] 25 27 public interface IFilter : IConstraint { 26 28 new bool[] Check();
Note: See TracChangeset
for help on using the changeset viewer.