- Timestamp:
- 01/13/17 12:55:06 (8 years ago)
- Location:
- branches/MemPRAlgorithm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/MemPRAlgorithm
-
branches/MemPRAlgorithm/HeuristicLab.Problems.Scheduling/3.3/JobShopSchedulingProblem.cs
r14185 r14562 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.