Changeset 4536 for branches/HeuristicLab.Classification/HeuristicLab.Problems.DataAnalysis.Classification
- Timestamp:
- 09/28/10 17:58:53 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Classification/HeuristicLab.Problems.DataAnalysis.Classification/3.3/SingleObjectiveClassificationProblem.cs
r4366 r4536 30 30 [Item("Classification Problem", "Represents a classfication problem.")] 31 31 [StorableClass] 32 public abstract class SingleObjectiveClassificationProblem<T, U> : SingleObjectiveProblem<T, U> 32 public abstract class SingleObjectiveClassificationProblem<T, U> : SingleObjectiveProblem<T, U>, IDataAnalysisProblem 33 33 where T : class, ISingleObjectiveEvaluator 34 34 where U : class, ISolutionCreator { … … 41 41 get { return ClassificationProblemDataParameter.Value; } 42 42 set { ClassificationProblemDataParameter.Value = value; } 43 } 44 45 DataAnalysisProblemData IDataAnalysisProblem.DataAnalysisProblemData { 46 get { return ClassificationProblemData; } 43 47 } 44 48
Note: See TracChangeset
for help on using the changeset viewer.