Changeset 13436 for branches/ProblemRefactoring/HeuristicLab.Encodings.ScheduleEncoding/3.3/ScheduleEncoding/GTAlgorithmUtils.cs
- Timestamp:
- 12/04/15 11:57:54 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ProblemRefactoring/HeuristicLab.Encodings.ScheduleEncoding/3.3/ScheduleEncoding/GTAlgorithmUtils.cs
r12012 r13436 73 73 return Math.Max(previousJobTaskEndTime, lastMachineEndTime); 74 74 } 75 p ublicstatic double ComputeEarliestCompletionTime(Task t, Schedule schedule) {75 private static double ComputeEarliestCompletionTime(Task t, Schedule schedule) { 76 76 return ComputeEarliestStartTime(t, schedule) + t.Duration; 77 77 }
Note: See TracChangeset
for help on using the changeset viewer.