Last change
on this file since 16386 was
14365,
checked in by gkronber, 8 years ago
|
added template for regression problem instance providers
|
File size:
530 bytes
|
Rev | Line | |
---|
[14365] | 1 | using HeuristicLab.Problems.DataAnalysis;
|
---|
| 2 |
|
---|
| 3 | namespace RegressionProblemInstances {
|
---|
| 4 | // This interface describes my problem instances.
|
---|
| 5 | // The instance provider uses the descriptors to generate the problem instances.
|
---|
| 6 | public interface IRegressionProblemInstanceDescriptor : HeuristicLab.Problems.Instances.IDataDescriptor {
|
---|
| 7 | // should contain all information that is necessary to produce the problem instance
|
---|
| 8 | // and could even generate the necessary data
|
---|
| 9 |
|
---|
| 10 | IRegressionProblemData GenerateData();
|
---|
| 11 |
|
---|
| 12 | }
|
---|
| 13 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.