Free cookie consent management tool by TermsFeed Policy Generator

source: branches/Templates/RegressionProblemInstances/RegressionProblemInstance/IRegressionProblemInstanceDescriptor.cs @ 15745

Last change on this file since 15745 was 14365, checked in by gkronber, 8 years ago

added template for regression problem instance providers

File size: 530 bytes
Line 
1using HeuristicLab.Problems.DataAnalysis;
2
3namespace 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.