Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2521_ProblemRefactoring/HeuristicLab.Encodings.ScheduleEncoding/3.3/PermutationWithRepetition/Decoder/PWRDecoder.cs @ 16725

Last change on this file since 16725 was 16725, checked in by abeham, 5 years ago

#2521:

  • Adapt Encodings.ScheduleEncoding to new persistence
  • Adapt Problems.Programmable to new persistence
File size: 2.3 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21
22using HEAL.Attic;
23using HeuristicLab.Common;
24using HeuristicLab.Core;
25
26namespace HeuristicLab.Encodings.ScheduleEncoding {
27  [Item("PWRDecoder", "An item used to convert a PWR-individual into a generalized schedule.")]
28  [StorableType("60D171BE-9704-40E1-9C63-0E56D95403CD")]
29  public class PWRDecoder : ScheduleDecoder<PWREncoding> {
30    [StorableConstructor]
31    protected PWRDecoder(StorableConstructorFlag _) : base(_) { }
32    protected PWRDecoder(PWRDecoder original, Cloner cloner) : base(original, cloner) { }
33    public PWRDecoder() : base() { }
34
35    public override IDeepCloneable Clone(Cloner cloner) {
36      return new PWRDecoder(this, cloner);
37    }
38
39    public override Schedule DecodeSchedule(PWREncoding solution, ItemList<Job> jobData) {
40      return Decode(solution, jobData);
41    }
42
43    public static Schedule Decode(PWREncoding solution, ItemList<Job> jobData) {
44      var jobs = (ItemList<Job>)jobData.Clone();
45      var resultingSchedule = new Schedule(jobs[0].Tasks.Count);
46      foreach (int jobNr in solution.PermutationWithRepetition) {
47        int i = 0;
48        while (jobs[jobNr].Tasks[i].IsScheduled) i++;
49        Task currentTask = jobs[jobNr].Tasks[i];
50        double startTime = GTAlgorithmUtils.ComputeEarliestStartTime(currentTask, resultingSchedule);
51        currentTask.IsScheduled = true;
52        resultingSchedule.ScheduleTask(currentTask.ResourceNr, startTime, currentTask.Duration, currentTask.JobNr);
53      }
54      return resultingSchedule;
55    }
56  }
57}
Note: See TracBrowser for help on using the repository browser.