- Timestamp:
- 06/01/17 11:29:49 (8 years ago)
- Location:
- branches/PersistenceReintegration/HeuristicLab.DataPreprocessing/3.4
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PersistenceReintegration/HeuristicLab.DataPreprocessing/3.4/Logic/Filter/ComparisonFilter.cs
r14185 r15018 26 26 using HeuristicLab.Core; 27 27 using HeuristicLab.Data; 28 using HeuristicLab.Persistence; 28 29 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("7B9235A4-DA10-4316-9D4E-1063C9EFB603")] 31 33 public class ComparisonFilter : ComparisonConstraint, IFilter { 32 34 … … 54 56 55 57 public ComparisonFilter() : base() { } 56 protected ComparisonFilter(bool deserializing) : base(deserializing) { } 58 [StorableConstructor] 59 protected ComparisonFilter(StorableConstructorFlag deserializing) : base(deserializing) { } 57 60 58 61 public ComparisonFilter(IPreprocessingData constrainedValue, ConstraintOperation constraintOperation, object constraintData) … … 72 75 } 73 76 77 [Storable] 74 78 private int constraintColumn; 75 79 public int ConstraintColumn { -
branches/PersistenceReintegration/HeuristicLab.DataPreprocessing/3.4/PreprocessingContext.cs
r14927 r15018 51 51 52 52 [StorableConstructor] 53 protected PreprocessingContext( booldeserializing)53 protected PreprocessingContext(StorableConstructorFlag deserializing) 54 54 : base(deserializing) { } 55 55 protected PreprocessingContext(PreprocessingContext original, Cloner cloner)
Note: See TracChangeset
for help on using the changeset viewer.