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

    r12873 r12875  
    3333  [StorableClass]
    3434  [Item("Relative error loss", "")]
    35   public class RelativeErrorLoss : Item, ILossFunction {
     35  public sealed class RelativeErrorLoss : Item, ILossFunction {
    3636    public RelativeErrorLoss() { }
    3737
     
    112112
    113113    #region item implementation
     114    [StorableConstructor]
     115    private RelativeErrorLoss(bool deserializing) : base(deserializing) { }
     116
    114117    private RelativeErrorLoss(RelativeErrorLoss original, Cloner cloner) : base(original, cloner) { }
    115118
Note: See TracChangeset for help on using the changeset viewer.