Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/28/19 12:41:36 (5 years ago)
Author:
gkronber
Message:

#2971: made branch compile with current version of trunk

Location:
branches/2971_named_intervals
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/2971_named_intervals

    • Property svn:ignore set to
      packages
  • branches/2971_named_intervals/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/Classification/ThresholdCalculators/AccuracyMaximizationThresholdCalculator.cs

    r15583 r16628  
    2626using HeuristicLab.Core;
    2727using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     28using HEAL.Attic;
    2829
    2930namespace HeuristicLab.Problems.DataAnalysis {
     
    3132  /// Represents a threshold calculator that maximizes the weighted accuracy of the classifcation model.
    3233  /// </summary>
    33   [StorableClass]
     34  [StorableType("226D720F-A0C8-4A23-B0CC-ED083E2A133D")]
    3435  [Item("AccuracyMaximizationThresholdCalculator", "Represents a threshold calculator that maximizes the weighted accuracy of the classifcation model.")]
    3536  public class AccuracyMaximizationThresholdCalculator : ThresholdCalculator {
    3637
    3738    [StorableConstructor]
    38     protected AccuracyMaximizationThresholdCalculator(bool deserializing) : base(deserializing) { }
     39    protected AccuracyMaximizationThresholdCalculator(StorableConstructorFlag _) : base(_) { }
    3940    protected AccuracyMaximizationThresholdCalculator(AccuracyMaximizationThresholdCalculator original, Cloner cloner)
    4041      : base(original, cloner) {
Note: See TracChangeset for help on using the changeset viewer.