Changeset 5717 for branches/DataAnalysis Refactoring/HeuristicLab.Algorithms.DataAnalysis/3.4/Interfaces
- Timestamp:
- 03/16/11 16:34:31 (14 years ago)
- Location:
- branches/DataAnalysis Refactoring/HeuristicLab.Algorithms.DataAnalysis/3.4/Interfaces
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataAnalysis Refactoring/HeuristicLab.Algorithms.DataAnalysis/3.4/Interfaces/ISupportVectorMachineModel.cs
r5694 r5717 29 29 /// Interface to represent a support vector machine model 30 30 /// </summary> 31 public interface ISupportVectorMachineModel : IDataAnalysisModel {31 public interface ISupportVectorMachineModel : IDataAnalysisModel, IRegressionModel, IClassificationModel { 32 32 SVM.Model Model { get; } 33 33 SVM.RangeTransform RangeTransform { get; } -
branches/DataAnalysis Refactoring/HeuristicLab.Algorithms.DataAnalysis/3.4/Interfaces/ISupportVectorMachineSolution.cs
r5694 r5717 29 29 /// </summary> 30 30 public interface ISupportVectorMachineSolution : IDataAnalysisSolution { 31 ISupportVectorMachineModel Model { get; }31 new ISupportVectorMachineModel Model { get; } 32 32 } 33 33 }
Note: See TracChangeset
for help on using the changeset viewer.