- Timestamp:
- 07/21/11 16:28:00 (13 years ago)
- Location:
- trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/Interfaces
- Files:
-
- 3 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/Interfaces/INearestNeighbourClassificationSolution.cs
r6577 r6583 26 26 namespace HeuristicLab.Algorithms.DataAnalysis { 27 27 /// <summary> 28 /// Interface to represent a ne ural network regression solution28 /// Interface to represent a nearest neighbour classification solution 29 29 /// </summary> 30 public interface INe uralNetworkRegressionSolution : IRegressionSolution {31 new INe uralNetworkModel Model { get; }30 public interface INearestNeighbourClassificationSolution : IClassificationSolution { 31 new INearestNeighbourModel Model { get; } 32 32 } 33 33 } -
trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/Interfaces/INearestNeighbourModel.cs
r6577 r6583 27 27 namespace HeuristicLab.Algorithms.DataAnalysis { 28 28 /// <summary> 29 /// Interface to represent a random forestmodel for either regression or classification29 /// Interface to represent a nearest neighbour model for either regression or classification 30 30 /// </summary> 31 public interface I RandomForestModel : IRegressionModel, IClassificationModel {31 public interface INearestNeighbourModel : IRegressionModel, IClassificationModel { 32 32 } 33 33 } -
trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/Interfaces/INearestNeighbourRegressionSolution.cs
r6577 r6583 26 26 namespace HeuristicLab.Algorithms.DataAnalysis { 27 27 /// <summary> 28 /// Interface to represent a ne ural networkregression solution28 /// Interface to represent a nearest neighbour regression solution 29 29 /// </summary> 30 public interface INe uralNetworkRegressionSolution : IRegressionSolution {31 new INe uralNetworkModel Model { get; }30 public interface INearestNeighbourRegressionSolution : IRegressionSolution { 31 new INearestNeighbourModel Model { get; } 32 32 } 33 33 }
Note: See TracChangeset
for help on using the changeset viewer.