Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/15/15 13:48:00 (10 years ago)
Author:
mkommend
Message:

#2278: Renamed positive class parameter to satisfy the parameter visibility unit test and fixed cloning of classification performance measures.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/Classification/ClassificationPerformanceMeasures.cs

    r11763 r11766  
    2121
    2222using System;
     23using HeuristicLab.Common;
    2324using HeuristicLab.Data;
    2425using HeuristicLab.Optimization;
     
    5152    protected ClassificationPerformanceMeasuresResultCollection(bool deserializing)
    5253      : base(deserializing) {
     54    }
     55
     56    protected ClassificationPerformanceMeasuresResultCollection(ClassificationPerformanceMeasuresResultCollection original, Cloner cloner)
     57      : base(original, cloner) { }
     58    public override IDeepCloneable Clone(Cloner cloner) {
     59      return new ClassificationPerformanceMeasuresResultCollection(this, cloner);
    5360    }
    5461
Note: See TracChangeset for help on using the changeset viewer.