Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GPDL/HeuristicLab.Problems.GPDL.Views/3.4/GpdlExampleDataDescriptor.cs @ 9528

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 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using HeuristicLab.Problems.Instances;
6
7namespace 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.