Line | |
---|
1 |
|
---|
2 | namespace 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.