Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/28/10 17:58:53 (14 years ago)
Author:
mkommend
Message:

Added provisional version of the cross validation (ticket #1199).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Classification/HeuristicLab.Problems.DataAnalysis.Classification/3.3/SingleObjectiveClassificationProblem.cs

    r4366 r4536  
    3030  [Item("Classification Problem", "Represents a classfication problem.")]
    3131  [StorableClass]
    32   public abstract class SingleObjectiveClassificationProblem<T, U> : SingleObjectiveProblem<T, U>
     32  public abstract class SingleObjectiveClassificationProblem<T, U> : SingleObjectiveProblem<T, U>, IDataAnalysisProblem
    3333    where T : class, ISingleObjectiveEvaluator
    3434    where U : class, ISolutionCreator {
     
    4141      get { return ClassificationProblemDataParameter.Value; }
    4242      set { ClassificationProblemDataParameter.Value = value; }
     43    }
     44
     45    DataAnalysisProblemData IDataAnalysisProblem.DataAnalysisProblemData {
     46      get { return ClassificationProblemData; }
    4347    }
    4448
Note: See TracChangeset for help on using the changeset viewer.