Changeset 17461 for branches/2521_ProblemRefactoring/HeuristicLab.Encodings.ScheduleEncoding/3.3/PriorityRulesVector/Decoder
- Timestamp:
- 02/28/20 16:23:01 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2521_ProblemRefactoring/HeuristicLab.Encodings.ScheduleEncoding/3.3/PriorityRulesVector/Decoder/PRVDecoder.cs
r16725 r17461 29 29 [Item("JobSequencingMatrixDecoder", "Applies the GifflerThompson algorithm to create an active schedule from a JobSequencing Matrix.")] 30 30 [StorableType("2D059957-AC7C-4B33-BADE-96706AEBAF29")] 31 public class PRVDecoder : ScheduleDecoder<PRV Encoding>{31 public class PRVDecoder : ScheduleDecoder<PRV>, IPRVOperator { 32 32 #region Priority Rules 33 33 //smallest number of remaining tasks … … 187 187 } 188 188 189 public override Schedule DecodeSchedule(PRV Encodingencoding, ItemList<Job> jobData) {189 public override Schedule DecodeSchedule(PRV encoding, ItemList<Job> jobData) { 190 190 return Decode(encoding, jobData); 191 191 } 192 192 193 public static Schedule Decode(PRV Encodingsolution, ItemList<Job> jobData) {193 public static Schedule Decode(PRV solution, ItemList<Job> jobData) { 194 194 var random = new FastRandom(solution.RandomSeed); 195 195 var jobs = (ItemList<Job>)jobData.Clone();
Note: See TracChangeset
for help on using the changeset viewer.