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/DynOpEqHistogramInitializer.cs

    r5265 r5275  
    3030using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
    3131using System.Collections.Generic;
     32using HeuristicLab.Common;
    3233
    3334namespace HeuristicLab.Problems.DataAnalysis.Operators {
     
    6364    }
    6465
     66    [StorableConstructor]
     67    protected DynOpEqHistogramInitializer(bool deserializing) : base(deserializing) { }
     68    protected DynOpEqHistogramInitializer(DynOpEqHistogramInitializer original, Cloner cloner)
     69      : base(original, cloner) {
     70    }
    6571    public DynOpEqHistogramInitializer()
    6672      : base() {
     
    7581      Parameters.Add(new LookupParameter<BoolValue>("Maximization"));
    7682    }
    77 
     83    public override IDeepCloneable Clone(Cloner cloner) {
     84      return new DynOpEqHistogramInitializer(this, cloner);
     85    }
    7886    public override IOperation Apply() {
    7987      if (BinCapacityParameter.ActualValue == null) {
Note: See TracChangeset for help on using the changeset viewer.