[6293] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[9456] | 3 | * Copyright (C) 2002-2013 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[6293] | 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 |
|
---|
[8887] | 22 | using System;
|
---|
[6293] | 23 | using System.Collections.Generic;
|
---|
| 24 | using System.Linq;
|
---|
[6406] | 25 | using HeuristicLab.Common;
|
---|
[6293] | 26 | using HeuristicLab.Core;
|
---|
| 27 | using HeuristicLab.Encodings.PermutationEncoding;
|
---|
[6406] | 28 | using HeuristicLab.Encodings.ScheduleEncoding;
|
---|
| 29 | using HeuristicLab.Encodings.ScheduleEncoding.JobSequenceMatrix;
|
---|
[6293] | 30 | using HeuristicLab.Optimization;
|
---|
| 31 | using HeuristicLab.Parameters;
|
---|
[6406] | 32 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
[6293] | 33 |
|
---|
[6406] | 34 | namespace HeuristicLab.Problems.Scheduling {
|
---|
| 35 | [Item("JobSequenceMatrixDecoder", "Applies the GifflerThompson algorithm to create an active schedule from a JobSequence Matrix.")]
|
---|
[6293] | 36 | [StorableClass]
|
---|
[8887] | 37 | public class JSMDecoder : ScheduleDecoder, IStochasticOperator, IJSSPOperator {
|
---|
| 38 |
|
---|
[6293] | 39 | public ILookupParameter<IRandom> RandomParameter {
|
---|
| 40 | get { return (LookupParameter<IRandom>)Parameters["Random"]; }
|
---|
| 41 | }
|
---|
| 42 | public ILookupParameter<ItemList<Job>> JobDataParameter {
|
---|
| 43 | get { return (LookupParameter<ItemList<Job>>)Parameters["JobData"]; }
|
---|
| 44 | }
|
---|
[8887] | 45 | public IValueParameter<JSMDecodingErrorPolicy> DecodingErrorPolicyParameter {
|
---|
| 46 | get { return (IValueParameter<JSMDecodingErrorPolicy>)Parameters["DecodingErrorPolicy"]; }
|
---|
| 47 | }
|
---|
| 48 | public IValueParameter<JSMForcingStrategy> ForcingStrategyParameter {
|
---|
| 49 | get { return (IValueParameter<JSMForcingStrategy>)Parameters["ForcingStrategy"]; }
|
---|
| 50 | }
|
---|
[6293] | 51 |
|
---|
[8887] | 52 | private JSMDecodingErrorPolicyTypes DecodingErrorPolicy {
|
---|
| 53 | get { return DecodingErrorPolicyParameter.Value.Value; }
|
---|
| 54 | }
|
---|
[6293] | 55 |
|
---|
[8887] | 56 | private JSMForcingStrategyTypes ForcingStrategy {
|
---|
| 57 | get { return ForcingStrategyParameter.Value.Value; }
|
---|
| 58 | }
|
---|
[6293] | 59 |
|
---|
[6406] | 60 | [StorableConstructor]
|
---|
| 61 | protected JSMDecoder(bool deserializing) : base(deserializing) { }
|
---|
[8887] | 62 | protected JSMDecoder(JSMDecoder original, Cloner cloner) : base(original, cloner) { }
|
---|
[6406] | 63 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
| 64 | return new JSMDecoder(this, cloner);
|
---|
| 65 | }
|
---|
| 66 |
|
---|
[6293] | 67 | public JSMDecoder()
|
---|
| 68 | : base() {
|
---|
| 69 | Parameters.Add(new LookupParameter<IRandom>("Random", "The pseudo random number generator which should be used for stochastic manipulation operators."));
|
---|
[6364] | 70 | Parameters.Add(new LookupParameter<ItemList<Job>>("JobData", "Job data taken from the Schedulingproblem - Instance."));
|
---|
[8887] | 71 | Parameters.Add(new ValueParameter<JSMDecodingErrorPolicy>("DecodingErrorPolicy", "Specify the policy that should be used to handle decoding errors.", new JSMDecodingErrorPolicy(JSMDecodingErrorPolicyTypes.RandomPolicy)));
|
---|
| 72 | Parameters.Add(new ValueParameter<JSMForcingStrategy>("ForcingStrategy", "Specifies a forcing strategy.", new JSMForcingStrategy(JSMForcingStrategyTypes.SwapForcing)));
|
---|
| 73 |
|
---|
[6406] | 74 | ScheduleEncodingParameter.ActualName = "JobSequenceMatrix";
|
---|
[6293] | 75 | }
|
---|
| 76 |
|
---|
| 77 | private Task SelectTaskFromConflictSet(int conflictedResourceNr, int progressOnConflictedResource, ItemList<Task> conflictSet, ItemList<Permutation> jsm) {
|
---|
| 78 | if (conflictSet.Count == 1)
|
---|
| 79 | return conflictSet[0];
|
---|
[6406] | 80 |
|
---|
[6293] | 81 | //get solutionCandidate from jobSequencingMatrix
|
---|
| 82 | int solutionCandidateJobNr = jsm[conflictedResourceNr][progressOnConflictedResource];
|
---|
| 83 |
|
---|
| 84 | //scan conflictSet for given solutionCandidate, and return if found
|
---|
| 85 | foreach (Task t in conflictSet) {
|
---|
[6412] | 86 | if (t.JobNr == solutionCandidateJobNr)
|
---|
[6293] | 87 | return t;
|
---|
| 88 | }
|
---|
| 89 |
|
---|
| 90 | //if solutionCandidate wasn't found in conflictSet apply DecodingErrorPolicy and ForcingPolicy
|
---|
| 91 | Task result = ApplyDecodingErrorPolicy(conflictSet, jsm[conflictedResourceNr], progressOnConflictedResource);
|
---|
| 92 | int newResolutionIndex = 0;
|
---|
| 93 |
|
---|
[6412] | 94 | while (newResolutionIndex < jsm[conflictedResourceNr].Length && jsm[conflictedResourceNr][newResolutionIndex] != result.JobNr)
|
---|
[6293] | 95 | newResolutionIndex++;
|
---|
[6412] | 96 | ApplyForcingStrategy(jsm, conflictedResourceNr, newResolutionIndex, progressOnConflictedResource, result.JobNr);
|
---|
[6293] | 97 |
|
---|
| 98 | return result;
|
---|
| 99 | }
|
---|
[8887] | 100 |
|
---|
[6293] | 101 | private Task ApplyDecodingErrorPolicy(ItemList<Task> conflictSet, Permutation resource, int progress) {
|
---|
[8887] | 102 | if (DecodingErrorPolicy == JSMDecodingErrorPolicyTypes.RandomPolicy) {
|
---|
[6293] | 103 | //Random
|
---|
| 104 | return conflictSet[RandomParameter.ActualValue.Next(conflictSet.Count - 1)];
|
---|
| 105 | } else {
|
---|
| 106 | //Guided
|
---|
| 107 | for (int i = progress; i < resource.Length; i++) {
|
---|
| 108 | int j = 0;
|
---|
[6412] | 109 | while (j < conflictSet.Count && conflictSet[j].JobNr != resource[i])
|
---|
[6293] | 110 | j++;
|
---|
| 111 |
|
---|
| 112 | if (j < conflictSet.Count)
|
---|
| 113 | return (conflictSet[j]);
|
---|
| 114 | }
|
---|
| 115 | return conflictSet[RandomParameter.ActualValue.Next(conflictSet.Count - 1)];
|
---|
[6406] | 116 | }
|
---|
[6293] | 117 | }
|
---|
[8887] | 118 |
|
---|
[6293] | 119 | private void ApplyForcingStrategy(ItemList<Permutation> jsm, int conflictedResource, int newResolutionIndex, int progressOnResource, int newResolution) {
|
---|
[8887] | 120 | if (ForcingStrategy == JSMForcingStrategyTypes.SwapForcing) {
|
---|
[6293] | 121 | //SwapForcing
|
---|
| 122 | jsm[conflictedResource][newResolutionIndex] = jsm[conflictedResource][progressOnResource];
|
---|
| 123 | jsm[conflictedResource][progressOnResource] = newResolution;
|
---|
| 124 | } else {
|
---|
| 125 | //ShiftForcing
|
---|
| 126 | List<int> asList = jsm[conflictedResource].ToList<int>();
|
---|
| 127 | if (newResolutionIndex > progressOnResource) {
|
---|
| 128 | asList.RemoveAt(newResolutionIndex);
|
---|
| 129 | asList.Insert(progressOnResource, newResolution);
|
---|
| 130 | } else {
|
---|
[6406] | 131 | asList.Insert(progressOnResource, newResolution);
|
---|
[6293] | 132 | asList.RemoveAt(newResolutionIndex);
|
---|
| 133 | }
|
---|
[6406] | 134 | jsm[conflictedResource] = new Permutation(PermutationTypes.Absolute, asList.ToArray<int>());
|
---|
| 135 | }
|
---|
[6293] | 136 | }
|
---|
| 137 |
|
---|
| 138 | public Schedule CreateScheduleFromEncoding(JSMEncoding solution, ItemList<Job> jobData) {
|
---|
| 139 | ItemList<Permutation> jobSequenceMatrix = solution.JobSequenceMatrix;
|
---|
| 140 |
|
---|
[8887] | 141 | var jobs = (ItemList<Job>)jobData.Clone();
|
---|
| 142 | var resultingSchedule = new Schedule(jobs[0].Tasks.Count);
|
---|
[6293] | 143 |
|
---|
| 144 | //Reset scheduled tasks in result
|
---|
| 145 | foreach (Job j in jobs) {
|
---|
| 146 | foreach (Task t in j.Tasks) {
|
---|
[6412] | 147 | t.IsScheduled = false;
|
---|
[6293] | 148 | }
|
---|
| 149 | }
|
---|
| 150 |
|
---|
| 151 | //GT-Algorithm
|
---|
| 152 | //STEP 0 - Compute a list of "earliest operations"
|
---|
| 153 | ItemList<Task> earliestTasksList = GTAlgorithmUtils.GetEarliestNotScheduledTasks(jobs);
|
---|
| 154 | while (earliestTasksList.Count > 0) {
|
---|
| 155 | //STEP 1 - Get earliest not scheduled operation with minimal earliest completing time
|
---|
| 156 | Task minimal = GTAlgorithmUtils.GetTaskWithMinimalEC(earliestTasksList, resultingSchedule);
|
---|
[6412] | 157 | int conflictedResourceNr = minimal.ResourceNr;
|
---|
[6293] | 158 | Resource conflictedResource = resultingSchedule.Resources[conflictedResourceNr];
|
---|
| 159 |
|
---|
| 160 | //STEP 2 - Compute a conflict set of all operations that can be scheduled on the conflicted resource
|
---|
| 161 | ItemList<Task> conflictSet = GTAlgorithmUtils.GetConflictSetForTask(minimal, earliestTasksList, jobs, resultingSchedule);
|
---|
| 162 |
|
---|
| 163 | //STEP 3 - Select a task from the conflict set
|
---|
| 164 | int progressOnResource = conflictedResource.Tasks.Count;
|
---|
| 165 | Task selectedTask = SelectTaskFromConflictSet(conflictedResourceNr, progressOnResource, conflictSet, jobSequenceMatrix);
|
---|
| 166 |
|
---|
| 167 | //STEP 4 - Add the selected task to the current schedule
|
---|
[6412] | 168 | selectedTask.IsScheduled = true;
|
---|
[6293] | 169 | double startTime = GTAlgorithmUtils.ComputeEarliestStartTime(selectedTask, resultingSchedule);
|
---|
[6412] | 170 | resultingSchedule.ScheduleTask(selectedTask.ResourceNr, startTime, selectedTask.Duration, selectedTask.JobNr);
|
---|
[6293] | 171 |
|
---|
| 172 | //STEP 5 - Back to STEP 1
|
---|
| 173 | earliestTasksList = GTAlgorithmUtils.GetEarliestNotScheduledTasks(jobs);
|
---|
| 174 | }
|
---|
| 175 |
|
---|
| 176 | return resultingSchedule;
|
---|
| 177 | }
|
---|
| 178 |
|
---|
[8887] | 179 | public override Schedule CreateScheduleFromEncoding(IScheduleEncoding encoding) {
|
---|
| 180 | var solution = encoding as JSMEncoding;
|
---|
| 181 | if (solution == null) throw new InvalidOperationException("Encoding is not of type JSMEncoding");
|
---|
[6293] | 182 | return CreateScheduleFromEncoding(solution, JobDataParameter.ActualValue);
|
---|
| 183 | }
|
---|
| 184 | }
|
---|
| 185 | }
|
---|