Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/11/11 15:03:46 (14 years ago)
Author:
gkronber
Message:

Merged changes from trunk to data analysis exploration branch and added fractional distance metric evaluator. #1142

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DataAnalysis/HeuristicLab.Problems.DataAnalysis/3.3/Operators/DynamicDepthLimitInitializer.cs

    r5265 r5275  
    2929using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    3030using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
     31using HeuristicLab.Common;
    3132
    3233namespace HeuristicLab.Problems.DataAnalysis.Operators {
     
    4142    }
    4243
     44    [StorableConstructor]
     45    protected DynamicDepthLimitInitializer(bool deserializing) : base(deserializing) { }
     46    protected DynamicDepthLimitInitializer(DynamicDepthLimitInitializer original, Cloner cloner)
     47      : base(original, cloner) {
     48    }
    4349    public DynamicDepthLimitInitializer()
    4450      : base() {
    4551      Parameters.Add(new ValueLookupParameter<IntValue>("DynamicDepthLimit", "The current depth limit."));
    4652      Parameters.Add(new ValueLookupParameter<IntValue>("InitialDepthLimit", "The initial depth limit."));
     53    }
     54    public override IDeepCloneable Clone(Cloner cloner) {
     55      return new DynamicDepthLimitInitializer(this, cloner);
    4756    }
    4857
Note: See TracChangeset for help on using the changeset viewer.