Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/17/15 19:03:22 (9 years ago)
Author:
gkronber
Message:

#2450: fixed constructors for loss functions

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/GradientBoostedTrees/LossFunctions/AbsoluteErrorLoss.cs

    r12873 r12875  
    3131  [StorableClass]
    3232  [Item("Absolute error loss", "")]
    33   public class AbsoluteErrorLoss : Item, ILossFunction {
     33  public sealed class AbsoluteErrorLoss : Item, ILossFunction {
    3434    public AbsoluteErrorLoss() { }
    3535
     
    8282
    8383    #region item implementation
     84    [StorableConstructor]
     85    private AbsoluteErrorLoss(bool deserializing) : base(deserializing) { }
     86
    8487    private AbsoluteErrorLoss(AbsoluteErrorLoss original, Cloner cloner) : base(original, cloner) { }
    8588
Note: See TracChangeset for help on using the changeset viewer.