Last change
on this file since 13316 was
11260,
checked in by pfleck, 10 years ago
|
#2208
- Added OPData
- Added SchildeOPParser and SchildOPInstanceProvider
|
File size:
483 bytes
|
Line | |
---|
1 | namespace HeuristicLab.Problems.Instances.Orienteering {
|
---|
2 | internal class OPDataDescriptor : IDataDescriptor {
|
---|
3 | public string Name { get; internal set; }
|
---|
4 | public string Description { get; internal set; }
|
---|
5 |
|
---|
6 | internal string InstanceIdentifier { get; set; }
|
---|
7 |
|
---|
8 | internal OPDataDescriptor(string name, string description, string instanceIdentifier) {
|
---|
9 | Name = name;
|
---|
10 | Description = description;
|
---|
11 | InstanceIdentifier = instanceIdentifier;
|
---|
12 | }
|
---|
13 | }
|
---|
14 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.