- Timestamp:
- 01/04/17 16:33:37 (8 years ago)
- Location:
- branches/symbreg-factors-2650
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/symbreg-factors-2650
- Property svn:mergeinfo changed
/trunk/sources merged: 14504,14506-14509,14516-14517,14519,14522-14523,14527-14529,14531-14533
- Property svn:mergeinfo changed
-
branches/symbreg-factors-2650/HeuristicLab.Problems.Scheduling/3.3/JobShopSchedulingProblem.cs
r14185 r14542 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.