Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/11/17 13:57:25 (7 years ago)
Author:
abeham
Message:

#2720: merged 14506,14509,14692 to stable

Location:
stable
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • stable

  • stable/HeuristicLab.Problems.Scheduling/3.3/JobShopSchedulingProblem.cs

    r14186 r14965  
    4343    #region Default Instance
    4444    private static readonly JSSPData DefaultInstance = new JSSPData() {
     45      Name = "Job Shop Scheduling Problem (JSSP)",
     46      Description = "The default instance of the JSSP problem in HeuristicLab",
    4547      Jobs = 10,
    4648      Resources = 10,
     
    225227          BestKnownQuality = new DoubleValue(MakespanEvaluator.GetMakespan(BestKnownSolution));
    226228      }
    227 
     229      Name = data.Name;
     230      Description = data.Description;
    228231      JobData = jobData;
    229232      Jobs = data.Jobs;
Note: See TracChangeset for help on using the changeset viewer.