Changeset 14965 for stable/HeuristicLab.Problems.Scheduling
- Timestamp:
- 05/11/17 13:57:25 (8 years ago)
- Location:
- stable
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
- Property svn:mergeinfo changed
/trunk/sources merged: 14506,14509,14692
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Problems.Scheduling/3.3/JobShopSchedulingProblem.cs
r14186 r14965 43 43 #region Default Instance 44 44 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", 45 47 Jobs = 10, 46 48 Resources = 10, … … 225 227 BestKnownQuality = new DoubleValue(MakespanEvaluator.GetMakespan(BestKnownSolution)); 226 228 } 227 229 Name = data.Name; 230 Description = data.Description; 228 231 JobData = jobData; 229 232 Jobs = data.Jobs;
Note: See TracChangeset
for help on using the changeset viewer.