Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2457_ExpertSystem/HeuristicLab.Problems.Instances.QAPLIB/3.3/OneSizeDataDescriptor.cs @ 17209

Last change on this file since 17209 was 14691, checked in by abeham, 8 years ago

#2457: working on identification of problem instances

File size: 697 bytes
Line 
1
2namespace HeuristicLab.Problems.Instances.QAPLIB {
3  internal class OneSizeDataDescriptor : IDataDescriptor {
4    public string Name { get; internal set; }
5    public string Description { get; internal set; }
6
7    internal ProblemInstanceProvider<QAPData> ActualProvider { get; set; }
8    internal IDataDescriptor ActualDescriptor { get; set; }
9   
10    internal OneSizeDataDescriptor(string name, string description,
11      ProblemInstanceProvider<QAPData> actualProvider, IDataDescriptor actualDescriptor) {
12      this.Name = name;
13      this.Description = description;
14      this.ActualProvider = actualProvider;
15      this.ActualDescriptor = actualDescriptor;
16    }
17  }
18}
Note: See TracBrowser for help on using the repository browser.