Last change
on this file since 9528 was
9519,
checked in by gkronber, 11 years ago
|
#2026 worked on GPDL integration into HL.
Implemented problem provider for examples. Implemented editor for GPDL definitions.
|
File size:
586 bytes
|
Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Linq;
|
---|
4 | using System.Text;
|
---|
5 | using HeuristicLab.Problems.Instances;
|
---|
6 |
|
---|
7 | namespace HeuristicLab.Problems.GPDL.Views {
|
---|
8 | public class GpdlExampleDataDescriptor : IDataDescriptor {
|
---|
9 | public string Name { get; private set; }
|
---|
10 | public string Description { get; private set; }
|
---|
11 | public string Source { get; private set; }
|
---|
12 | public GpdlExampleDataDescriptor(string name, string description, string source) {
|
---|
13 | this.Name = name;
|
---|
14 | this.Description = description;
|
---|
15 | this.Source = source;
|
---|
16 | }
|
---|
17 | }
|
---|
18 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.