Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2864_PermutationProblems/HeuristicLab.Problems.Instances/3.3/Types/FSSPData.cs @ 15541

Last change on this file since 15541 was 15541, checked in by fholzing, 6 years ago

#2864: CleanUp of old code, added LOP benchmark instances

File size: 554 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.Threading.Tasks;
6
7namespace HeuristicLab.Problems.Instances
8{
9    public class FSSPData
10    {
11        public string Name { get; set; }
12        public string Description { get; set; }
13        public int Jobs { get; set; }
14        public int Machines { get; set; }
15        public double[,] ProcessingTimes { get; set; }
16        public int[] BestKnownSchedule { get; set; }
17        public double? BestKnownQuality { get; set; }
18    }
19}
Note: See TracBrowser for help on using the repository browser.