Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
10/29/10 19:59:46 (13 years ago)
Author:
mkommend
Message:

Fixed warninings and errors (ticket #922).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/CloningRefactoring/HeuristicLab.Problems.DataAnalysis/3.3/SupportVectorMachine/SupportVectorMachineCrossValidationEvaluator.cs

    r4678 r4684  
    2121
    2222using System;
     23using System.Collections.Generic;
    2324using System.Linq;
     25using HeuristicLab.Common;
    2426using HeuristicLab.Core;
    2527using HeuristicLab.Data;
     
    2931using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    3032using SVM;
    31 using System.Collections.Generic;
    32 using HeuristicLab.Common;
    3333
    3434namespace HeuristicLab.Problems.DataAnalysis.SupportVectorMachine {
     
    150150    }
    151151
    152     public override IDeepCloneable Clone(Cloner clone) {
     152    public override IDeepCloneable Clone(Cloner cloner) {
    153153      return new SupportVectorMachineCrossValidationEvaluator(this, cloner);
    154154    }
Note: See TracChangeset for help on using the changeset viewer.