Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/03/11 16:14:13 (13 years ago)
Author:
mkommend
Message:

#1418: Finished work on ProblemData.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DataAnalysis Refactoring/HeuristicLab.Problems.DataAnalysis/3.4/Interfaces/Classification/IClassificationProblemData.cs

    r5559 r5601  
    2020#endregion
    2121
    22 using System;
    2322using System.Collections.Generic;
    2423namespace HeuristicLab.Problems.DataAnalysis {
    2524  public interface IClassificationProblemData : IDataAnalysisProblemData {
    26     string TargetVariable { get; set; }
     25    string TargetVariable { get; }
     26
    2727    IEnumerable<string> ClassNames { get; }
    2828    IEnumerable<double> ClassValues { get; }
     
    3737    void SetClassificationPenalty(string correctClassName, string estimatedClassName, double penalty);
    3838    void SetClassificationPenalty(double correctClassValue, double estimatedClassValue, double penalty);
    39 
    40     event EventHandler ClassNamesChanged;
    41     event EventHandler ClassificationPenaltyChanged;
    4239  }
    4340}
Note: See TracChangeset for help on using the changeset viewer.