Changeset 5601 for branches/DataAnalysis Refactoring/HeuristicLab.Problems.DataAnalysis/3.4/Interfaces
- Timestamp:
- 03/03/11 16:14:13 (14 years ago)
- Location:
- branches/DataAnalysis Refactoring/HeuristicLab.Problems.DataAnalysis/3.4/Interfaces
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataAnalysis Refactoring/HeuristicLab.Problems.DataAnalysis/3.4/Interfaces/Classification/IClassificationProblemData.cs
r5559 r5601 20 20 #endregion 21 21 22 using System;23 22 using System.Collections.Generic; 24 23 namespace HeuristicLab.Problems.DataAnalysis { 25 24 public interface IClassificationProblemData : IDataAnalysisProblemData { 26 string TargetVariable { get; set; } 25 string TargetVariable { get; } 26 27 27 IEnumerable<string> ClassNames { get; } 28 28 IEnumerable<double> ClassValues { get; } … … 37 37 void SetClassificationPenalty(string correctClassName, string estimatedClassName, double penalty); 38 38 void SetClassificationPenalty(double correctClassValue, double estimatedClassValue, double penalty); 39 40 event EventHandler ClassNamesChanged;41 event EventHandler ClassificationPenaltyChanged;42 39 } 43 40 } -
branches/DataAnalysis Refactoring/HeuristicLab.Problems.DataAnalysis/3.4/Interfaces/IDataAnalysisProblemData.cs
r5586 r5601 27 27 namespace HeuristicLab.Problems.DataAnalysis { 28 28 public interface IDataAnalysisProblemData : IParameterizedNamedItem { 29 Dataset Dataset { get; set;}29 Dataset Dataset { get; } 30 30 ICheckedItemCollection<StringValue> InputVariables { get; } 31 31 IEnumerable<string> AllowedInputVariables { get; } -
branches/DataAnalysis Refactoring/HeuristicLab.Problems.DataAnalysis/3.4/Interfaces/Regression/IRegressionProblemData.cs
r5586 r5601 20 20 #endregion 21 21 22 using HeuristicLab.Data;23 22 namespace HeuristicLab.Problems.DataAnalysis { 24 23 public interface IRegressionProblemData : IDataAnalysisProblemData { 25 StringValueTargetVariable { get; }24 string TargetVariable { get; } 26 25 } 27 26 }
Note: See TracChangeset
for help on using the changeset viewer.