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

    r12873 r12875  
    3131  [StorableClass]
    3232  [Item("Squared error loss", "")]
    33   public class SquaredErrorLoss : Item, ILossFunction {
     33  public sealed class SquaredErrorLoss : Item, ILossFunction {
    3434    public SquaredErrorLoss() { }
    3535
     
    7878
    7979    #region item implementation
     80    [StorableConstructor]
     81    private SquaredErrorLoss(bool deserializing) : base(deserializing) { }
     82
    8083    private SquaredErrorLoss(SquaredErrorLoss original, Cloner cloner) : base(original, cloner) { }
    8184
Note: See TracChangeset for help on using the changeset viewer.