Free cookie consent management tool by TermsFeed Policy Generator

Changeset 5861 for trunk


Ignore:
Timestamp:
03/29/11 14:24:39 (13 years ago)
Author:
mkommend
Message:

#1418: Corrected cloning bug in SupportVectorMachineModel.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/SupportVectorMachine/SupportVectorMachineModel.cs

    r5809 r5861  
    2828using HeuristicLab.Core;
    2929using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     30using HeuristicLab.Problems.DataAnalysis;
    3031using SVM;
    31 using HeuristicLab.Problems.DataAnalysis;
    32 using System.Drawing;
    3332
    3433namespace HeuristicLab.Algorithms.DataAnalysis {
     
    9796      this.model = original.model;
    9897      this.rangeTransform = original.rangeTransform;
     98      this.targetVariable = original.targetVariable;
    9999      this.allowedInputVariables = (string[])original.allowedInputVariables.Clone();
    100100      if (original.classValues != null)
     
    195195      }
    196196    }
    197     #endregion   
     197    #endregion
    198198  }
    199199}
Note: See TracChangeset for help on using the changeset viewer.