[6121] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[17181] | 3 | * Copyright (C) Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[6121] | 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;
|
---|
[6412] | 23 | using System.Drawing;
|
---|
[8887] | 24 | using System.Linq;
|
---|
[6406] | 25 | using HeuristicLab.Common;
|
---|
[6121] | 26 | using HeuristicLab.Core;
|
---|
| 27 | using HeuristicLab.Data;
|
---|
[6406] | 28 | using HeuristicLab.Encodings.PermutationEncoding;
|
---|
| 29 | using HeuristicLab.Encodings.ScheduleEncoding;
|
---|
| 30 | using HeuristicLab.Encodings.ScheduleEncoding.JobSequenceMatrix;
|
---|
| 31 | using HeuristicLab.Encodings.ScheduleEncoding.PermutationWithRepetition;
|
---|
| 32 | using HeuristicLab.Encodings.ScheduleEncoding.PriorityRulesVector;
|
---|
[6121] | 33 | using HeuristicLab.Parameters;
|
---|
[17097] | 34 | using HEAL.Attic;
|
---|
[6121] | 35 | using HeuristicLab.PluginInfrastructure;
|
---|
[8882] | 36 | using HeuristicLab.Problems.Instances;
|
---|
[6121] | 37 |
|
---|
| 38 | namespace HeuristicLab.Problems.Scheduling {
|
---|
[13295] | 39 | [Item("Job Shop Scheduling Problem (JSSP)", "Represents a standard Job Shop Scheduling Problem")]
|
---|
[12708] | 40 | [Creatable(CreatableAttribute.Categories.CombinatorialProblems, Priority = 120)]
|
---|
[17097] | 41 | [StorableType("BB12CCEC-A109-4A26-A1C7-5A0703AB7687")]
|
---|
[8882] | 42 | public sealed class JobShopSchedulingProblem : SchedulingProblem, IProblemInstanceConsumer<JSSPData>, IProblemInstanceExporter<JSSPData>, IStorableContent {
|
---|
| 43 | #region Default Instance
|
---|
| 44 | private static readonly JSSPData DefaultInstance = new JSSPData() {
|
---|
[14965] | 45 | Name = "Job Shop Scheduling Problem (JSSP)",
|
---|
| 46 | Description = "The default instance of the JSSP problem in HeuristicLab",
|
---|
[8882] | 47 | Jobs = 10,
|
---|
| 48 | Resources = 10,
|
---|
| 49 | BestKnownQuality = 930,
|
---|
| 50 | ProcessingTimes = new double[,] {
|
---|
| 51 | { 29, 78, 9, 36, 49, 11, 62, 56, 44, 21 },
|
---|
| 52 | { 43, 90, 75, 11, 69, 28, 46, 46, 72, 30 },
|
---|
| 53 | { 91, 85, 39, 74, 90, 10, 12, 89, 45, 33 },
|
---|
| 54 | { 81, 95, 71, 99, 9, 52, 85, 98, 22, 43 },
|
---|
| 55 | { 14, 6, 22, 61, 26, 69, 21, 49, 72, 53 },
|
---|
| 56 | { 84, 2, 52, 95, 48, 72, 47, 65, 6, 25 },
|
---|
| 57 | { 46, 37, 61, 13, 32, 21, 32, 89, 30, 55 },
|
---|
| 58 | { 31, 86, 46, 74, 32, 88, 19, 48, 36, 79 },
|
---|
| 59 | { 76, 69, 76, 51, 85, 11, 40, 89, 26, 74 },
|
---|
| 60 | { 85, 13, 61, 7, 64, 76, 47, 52, 90, 45 }
|
---|
| 61 | },
|
---|
| 62 | Demands = new int[,] {
|
---|
| 63 | { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 },
|
---|
| 64 | { 0, 2, 4, 9, 3, 1, 6, 5, 7, 8 },
|
---|
| 65 | { 1, 0, 3, 2, 8, 5, 7, 6, 9, 4 },
|
---|
| 66 | { 1, 2, 0, 4, 6, 8, 7, 3, 9, 5 },
|
---|
| 67 | { 2, 0, 1, 5, 3, 4, 8, 7, 9, 6 },
|
---|
| 68 | { 2, 1, 5, 3, 8, 9, 0, 6, 4, 7 },
|
---|
| 69 | { 1, 0, 3, 2, 6, 5, 9, 8, 7, 4 },
|
---|
| 70 | { 2, 0, 1, 5, 4, 6, 8, 9, 7, 3 },
|
---|
| 71 | { 0, 1, 3, 5, 2, 9, 6, 7, 4, 8 },
|
---|
| 72 | { 1, 0, 2, 6, 8, 9, 5, 3, 4, 7 }
|
---|
| 73 | }
|
---|
| 74 | };
|
---|
| 75 | #endregion
|
---|
| 76 |
|
---|
[8887] | 77 | public string Filename { get; set; }
|
---|
| 78 | public override Image ItemImage {
|
---|
| 79 | get { return HeuristicLab.Common.Resources.VSImageLibrary.Type; }
|
---|
| 80 | }
|
---|
| 81 |
|
---|
[6121] | 82 | #region Parameter Properties
|
---|
[8887] | 83 | public IValueParameter<ItemList<Job>> JobDataParameter {
|
---|
| 84 | get { return (IValueParameter<ItemList<Job>>)Parameters["JobData"]; }
|
---|
[6121] | 85 | }
|
---|
[6177] | 86 | public OptionalValueParameter<Schedule> BestKnownSolutionParameter {
|
---|
| 87 | get { return (OptionalValueParameter<Schedule>)Parameters["BestKnownSolution"]; }
|
---|
[6121] | 88 | }
|
---|
[6266] | 89 |
|
---|
[8886] | 90 | public IFixedValueParameter<IntValue> JobsParameter {
|
---|
| 91 | get { return (IFixedValueParameter<IntValue>)Parameters["Jobs"]; }
|
---|
[6293] | 92 | }
|
---|
[8886] | 93 | public IFixedValueParameter<IntValue> ResourcesParameter {
|
---|
| 94 | get { return (IFixedValueParameter<IntValue>)Parameters["Resources"]; }
|
---|
[6293] | 95 | }
|
---|
[8887] | 96 | public IValueParameter<IScheduleEvaluator> ScheduleEvaluatorParameter {
|
---|
| 97 | get { return (IValueParameter<IScheduleEvaluator>)Parameters["ScheduleEvaluator"]; }
|
---|
[6364] | 98 | }
|
---|
[8887] | 99 | public OptionalValueParameter<IScheduleDecoder> ScheduleDecoderParameter {
|
---|
| 100 | get { return (OptionalValueParameter<IScheduleDecoder>)Parameters["ScheduleDecoder"]; }
|
---|
| 101 | }
|
---|
[6121] | 102 | #endregion
|
---|
| 103 |
|
---|
| 104 | #region Properties
|
---|
[6293] | 105 | public ItemList<Job> JobData {
|
---|
| 106 | get { return JobDataParameter.Value; }
|
---|
| 107 | set { JobDataParameter.Value = value; }
|
---|
[6121] | 108 | }
|
---|
[6177] | 109 | public Schedule BestKnownSolution {
|
---|
[6121] | 110 | get { return BestKnownSolutionParameter.Value; }
|
---|
| 111 | set { BestKnownSolutionParameter.Value = value; }
|
---|
| 112 | }
|
---|
[8886] | 113 | public int Jobs {
|
---|
| 114 | get { return JobsParameter.Value.Value; }
|
---|
| 115 | set { JobsParameter.Value.Value = value; }
|
---|
[6293] | 116 | }
|
---|
[8886] | 117 | public int Resources {
|
---|
| 118 | get { return ResourcesParameter.Value.Value; }
|
---|
| 119 | set { ResourcesParameter.Value.Value = value; }
|
---|
[6293] | 120 | }
|
---|
[8887] | 121 | public IScheduleEvaluator ScheduleEvaluator {
|
---|
| 122 | get { return ScheduleEvaluatorParameter.Value; }
|
---|
| 123 | set { ScheduleEvaluatorParameter.Value = value; }
|
---|
[6364] | 124 | }
|
---|
[8887] | 125 | public IScheduleDecoder ScheduleDecoder {
|
---|
| 126 | get { return ScheduleDecoderParameter.Value; }
|
---|
| 127 | set { ScheduleDecoderParameter.Value = value; }
|
---|
[6412] | 128 | }
|
---|
[6121] | 129 | #endregion
|
---|
| 130 |
|
---|
[8887] | 131 | [StorableConstructor]
|
---|
[17097] | 132 | private JobShopSchedulingProblem(StorableConstructorFlag _) : base(_) { }
|
---|
[8887] | 133 | private JobShopSchedulingProblem(JobShopSchedulingProblem original, Cloner cloner)
|
---|
| 134 | : base(original, cloner) {
|
---|
| 135 | RegisterEventHandlers();
|
---|
| 136 | }
|
---|
[6121] | 137 | public JobShopSchedulingProblem()
|
---|
[8887] | 138 | : base(new SchedulingEvaluator(), new JSMRandomCreator()) {
|
---|
[6293] | 139 | Parameters.Add(new ValueParameter<ItemList<Job>>("JobData", "Jobdata defining the precedence relationships and the duration of the tasks in this JSSP-Instance.", new ItemList<Job>()));
|
---|
| 140 | Parameters.Add(new OptionalValueParameter<Schedule>("BestKnownSolution", "The best known solution of this JSSP instance."));
|
---|
[6364] | 141 |
|
---|
[8886] | 142 | Parameters.Add(new FixedValueParameter<IntValue>("Jobs", "The number of jobs used in this JSSP instance.", new IntValue()));
|
---|
| 143 | Parameters.Add(new FixedValueParameter<IntValue>("Resources", "The number of resources used in this JSSP instance.", new IntValue()));
|
---|
[8887] | 144 | Parameters.Add(new ValueParameter<IScheduleEvaluator>("ScheduleEvaluator", "The evaluator used to determine the quality of a solution.", new MakespanEvaluator()));
|
---|
| 145 | Parameters.Add(new OptionalValueParameter<IScheduleDecoder>("ScheduleDecoder", "The operator that decodes the representation and creates a schedule.", new JSMDecoder()));
|
---|
[6364] | 146 |
|
---|
[8887] | 147 | EvaluatorParameter.GetsCollected = false;
|
---|
| 148 | EvaluatorParameter.Hidden = true;
|
---|
| 149 | ScheduleDecoderParameter.Hidden = true;
|
---|
| 150 |
|
---|
[6364] | 151 | InitializeOperators();
|
---|
[8882] | 152 | Load(DefaultInstance);
|
---|
[8887] | 153 | RegisterEventHandlers();
|
---|
[6121] | 154 | }
|
---|
| 155 |
|
---|
[6406] | 156 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
| 157 | return new JobShopSchedulingProblem(this, cloner);
|
---|
| 158 | }
|
---|
| 159 |
|
---|
[8887] | 160 | [StorableHook(HookType.AfterDeserialization)]
|
---|
| 161 | private void AfterDeserialization() {
|
---|
| 162 | RegisterEventHandlers();
|
---|
| 163 | }
|
---|
| 164 |
|
---|
| 165 | private void RegisterEventHandlers() {
|
---|
| 166 | ScheduleEvaluatorParameter.ValueChanged += ScheduleEvaluatorParameter_ValueChanged;
|
---|
| 167 | ScheduleEvaluator.QualityParameter.ActualNameChanged += ScheduleEvaluator_QualityParameter_ActualNameChanged;
|
---|
| 168 | SolutionCreator.ScheduleEncodingParameter.ActualNameChanged += SolutionCreator_SchedulingEncodingParameter_ActualNameChanged;
|
---|
| 169 | ScheduleDecoderParameter.ValueChanged += ScheduleDecoderParameter_ValueChanged;
|
---|
| 170 | if (ScheduleDecoder != null) ScheduleDecoder.ScheduleParameter.ActualNameChanged += ScheduleDecoder_ScheduleParameter_ActualNameChanged;
|
---|
| 171 | }
|
---|
| 172 |
|
---|
[6121] | 173 | #region Events
|
---|
[6177] | 174 | protected override void OnSolutionCreatorChanged() {
|
---|
[15219] | 175 | base.OnSolutionCreatorChanged();
|
---|
[12121] | 176 | SolutionCreator.ScheduleEncodingParameter.ActualNameChanged += SolutionCreator_SchedulingEncodingParameter_ActualNameChanged;
|
---|
[6177] | 177 | InitializeOperators();
|
---|
| 178 | }
|
---|
[8887] | 179 | protected override void OnEvaluatorChanged() {
|
---|
| 180 | base.OnEvaluatorChanged();
|
---|
| 181 | ParameterizeOperators();
|
---|
| 182 | }
|
---|
| 183 | private void ScheduleEvaluatorParameter_ValueChanged(object sender, EventArgs eventArgs) {
|
---|
| 184 | ScheduleEvaluator.QualityParameter.ActualNameChanged += ScheduleEvaluator_QualityParameter_ActualNameChanged;
|
---|
| 185 | ParameterizeOperators();
|
---|
| 186 | }
|
---|
| 187 | private void ScheduleEvaluator_QualityParameter_ActualNameChanged(object sender, EventArgs eventArgs) {
|
---|
| 188 | ParameterizeOperators();
|
---|
| 189 | }
|
---|
[12121] | 190 |
|
---|
[8887] | 191 | private void SolutionCreator_SchedulingEncodingParameter_ActualNameChanged(object sender, EventArgs eventArgs) {
|
---|
| 192 | ParameterizeOperators();
|
---|
| 193 | }
|
---|
| 194 | private void ScheduleDecoderParameter_ValueChanged(object sender, EventArgs eventArgs) {
|
---|
| 195 | if (ScheduleDecoder != null) ScheduleDecoder.ScheduleParameter.ActualNameChanged += ScheduleDecoder_ScheduleParameter_ActualNameChanged;
|
---|
| 196 | ParameterizeOperators();
|
---|
| 197 | }
|
---|
| 198 | private void ScheduleDecoder_ScheduleParameter_ActualNameChanged(object sender, EventArgs eventArgs) {
|
---|
| 199 | ParameterizeOperators();
|
---|
| 200 | }
|
---|
[8882] | 201 | #endregion
|
---|
[6406] | 202 |
|
---|
[8882] | 203 | #region Problem Instance Handling
|
---|
| 204 | public void Load(JSSPData data) {
|
---|
| 205 | var jobData = new ItemList<Job>(data.Jobs);
|
---|
| 206 | for (int j = 0; j < data.Jobs; j++) {
|
---|
| 207 | var job = new Job(j, data.DueDates != null ? data.DueDates[j] : double.MaxValue);
|
---|
| 208 | for (int t = 0; t < data.Resources; t++) {
|
---|
| 209 | job.Tasks.Add(new Task(t, data.Demands[j, t], j, data.ProcessingTimes[j, t]));
|
---|
| 210 | }
|
---|
| 211 | jobData.Add(job);
|
---|
| 212 | }
|
---|
| 213 |
|
---|
[8887] | 214 | BestKnownQuality = data.BestKnownQuality.HasValue ? new DoubleValue(data.BestKnownQuality.Value) : null;
|
---|
[8882] | 215 | if (data.BestKnownSchedule != null) {
|
---|
| 216 | var enc = new JSMEncoding();
|
---|
| 217 | enc.JobSequenceMatrix = new ItemList<Permutation>(data.Resources);
|
---|
| 218 | for (int i = 0; i < data.Resources; i++) {
|
---|
| 219 | enc.JobSequenceMatrix[i] = new Permutation(PermutationTypes.Absolute, new int[data.Jobs]);
|
---|
| 220 | for (int j = 0; j < data.Jobs; j++) {
|
---|
| 221 | enc.JobSequenceMatrix[i][j] = data.BestKnownSchedule[i, j];
|
---|
| 222 | }
|
---|
| 223 | }
|
---|
| 224 | BestKnownSolution = new JSMDecoder().CreateScheduleFromEncoding(enc, jobData);
|
---|
[8887] | 225 | if (ScheduleEvaluator is MeanTardinessEvaluator)
|
---|
[8882] | 226 | BestKnownQuality = new DoubleValue(MeanTardinessEvaluator.GetMeanTardiness(BestKnownSolution, jobData));
|
---|
[8887] | 227 | else if (ScheduleEvaluator is MakespanEvaluator)
|
---|
[8882] | 228 | BestKnownQuality = new DoubleValue(MakespanEvaluator.GetMakespan(BestKnownSolution));
|
---|
| 229 | }
|
---|
[14965] | 230 | Name = data.Name;
|
---|
| 231 | Description = data.Description;
|
---|
[8882] | 232 | JobData = jobData;
|
---|
[8886] | 233 | Jobs = data.Jobs;
|
---|
| 234 | Resources = data.Resources;
|
---|
[6406] | 235 | }
|
---|
[6121] | 236 |
|
---|
[8882] | 237 | public JSSPData Export() {
|
---|
| 238 | var result = new JSSPData {
|
---|
| 239 | Name = Name,
|
---|
| 240 | Description = Description,
|
---|
[8886] | 241 | Jobs = Jobs,
|
---|
| 242 | Resources = Resources,
|
---|
| 243 | ProcessingTimes = new double[Jobs, Resources],
|
---|
| 244 | Demands = new int[Jobs, Resources],
|
---|
| 245 | DueDates = new double[Jobs]
|
---|
[8882] | 246 | };
|
---|
[6364] | 247 |
|
---|
[8882] | 248 | foreach (var job in JobData) {
|
---|
| 249 | var counter = 0;
|
---|
[8886] | 250 | result.DueDates[job.Index] = job.DueDate;
|
---|
[8882] | 251 | foreach (var task in job.Tasks) {
|
---|
| 252 | result.ProcessingTimes[task.JobNr, counter] = task.Duration;
|
---|
| 253 | result.Demands[task.JobNr, counter] = task.ResourceNr;
|
---|
| 254 | counter++;
|
---|
| 255 | }
|
---|
[6364] | 256 | }
|
---|
[8882] | 257 | return result;
|
---|
[6364] | 258 | }
|
---|
[8882] | 259 | #endregion
|
---|
[6364] | 260 |
|
---|
[8882] | 261 | #region Helpers
|
---|
[6121] | 262 | private void InitializeOperators() {
|
---|
[6177] | 263 | Operators.Clear();
|
---|
| 264 | ApplyEncoding();
|
---|
[6121] | 265 | Operators.Add(new BestSchedulingSolutionAnalyzer());
|
---|
[8887] | 266 | ParameterizeOperators();
|
---|
[6121] | 267 | }
|
---|
| 268 |
|
---|
[6177] | 269 | private void ApplyEncoding() {
|
---|
[8882] | 270 | if (SolutionCreator.GetType() == typeof(JSMRandomCreator)) {
|
---|
[6364] | 271 | Operators.AddRange(ApplicationManager.Manager.GetInstances<IJSMOperator>());
|
---|
[8887] | 272 | ScheduleDecoder = new JSMDecoder();
|
---|
[8882] | 273 | } else if (SolutionCreator.GetType() == typeof(PRVRandomCreator)) {
|
---|
| 274 | Operators.AddRange(ApplicationManager.Manager.GetInstances<IPRVOperator>());
|
---|
[8887] | 275 | ScheduleDecoder = new PRVDecoder();
|
---|
[8882] | 276 | } else if (SolutionCreator.GetType() == typeof(PWRRandomCreator)) {
|
---|
| 277 | Operators.AddRange(ApplicationManager.Manager.GetInstances<IPWROperator>());
|
---|
[8887] | 278 | ScheduleDecoder = new PWRDecoder();
|
---|
[8882] | 279 | } else if (SolutionCreator.GetType() == typeof(DirectScheduleRandomCreator)) {
|
---|
| 280 | Operators.AddRange(ApplicationManager.Manager.GetInstances<IDirectScheduleOperator>());
|
---|
[8887] | 281 | ScheduleDecoder = null;
|
---|
[6177] | 282 | }
|
---|
| 283 | }
|
---|
[8887] | 284 |
|
---|
| 285 | private void ParameterizeOperators() {
|
---|
| 286 | Evaluator.ScheduleDecoderParameter.ActualName = ScheduleDecoderParameter.Name;
|
---|
| 287 | Evaluator.ScheduleDecoderParameter.Hidden = true;
|
---|
| 288 | Evaluator.ScheduleEvaluatorParameter.ActualName = ScheduleEvaluatorParameter.Name;
|
---|
| 289 | Evaluator.ScheduleEvaluatorParameter.Hidden = true;
|
---|
| 290 | Evaluator.QualityParameter.ActualName = ScheduleEvaluator.QualityParameter.ActualName;
|
---|
| 291 | Evaluator.QualityParameter.Hidden = true;
|
---|
| 292 |
|
---|
| 293 | if (ScheduleDecoder != null)
|
---|
| 294 | ScheduleDecoder.ScheduleEncodingParameter.ActualName = SolutionCreator.ScheduleEncodingParameter.ActualName;
|
---|
| 295 |
|
---|
| 296 | if (ScheduleDecoder != null) {
|
---|
| 297 | ScheduleEvaluator.ScheduleParameter.ActualName = ScheduleDecoder.ScheduleParameter.ActualName;
|
---|
| 298 | ScheduleEvaluator.ScheduleParameter.Hidden = true;
|
---|
| 299 | } else if (SolutionCreator is DirectScheduleRandomCreator) {
|
---|
| 300 | var directEvaluator = (DirectScheduleRandomCreator)SolutionCreator;
|
---|
| 301 | ScheduleEvaluator.ScheduleParameter.ActualName = directEvaluator.ScheduleEncodingParameter.ActualName;
|
---|
| 302 | ScheduleEvaluator.ScheduleParameter.Hidden = true;
|
---|
| 303 | } else {
|
---|
| 304 | ScheduleEvaluator.ScheduleParameter.ActualName = ScheduleEvaluator.ScheduleParameter.Name;
|
---|
| 305 | ScheduleEvaluator.ScheduleParameter.Hidden = false;
|
---|
| 306 | }
|
---|
| 307 |
|
---|
| 308 | foreach (var op in Operators.OfType<IScheduleManipulator>()) {
|
---|
| 309 | op.ScheduleEncodingParameter.ActualName = SolutionCreator.ScheduleEncodingParameter.ActualName;
|
---|
| 310 | op.ScheduleEncodingParameter.Hidden = true;
|
---|
| 311 | }
|
---|
| 312 |
|
---|
| 313 | foreach (var op in Operators.OfType<IScheduleCrossover>()) {
|
---|
| 314 | op.ChildParameter.ActualName = SolutionCreator.ScheduleEncodingParameter.ActualName;
|
---|
| 315 | op.ChildParameter.Hidden = true;
|
---|
| 316 | op.ParentsParameter.ActualName = SolutionCreator.ScheduleEncodingParameter.ActualName;
|
---|
| 317 | op.ParentsParameter.Hidden = true;
|
---|
| 318 | }
|
---|
| 319 |
|
---|
| 320 | foreach (var op in Operators.OfType<BestSchedulingSolutionAnalyzer>()) {
|
---|
| 321 | op.QualityParameter.ActualName = ScheduleEvaluator.QualityParameter.ActualName;
|
---|
| 322 | if (ScheduleDecoder != null) {
|
---|
| 323 | op.ScheduleParameter.ActualName = ScheduleDecoder.ScheduleParameter.ActualName;
|
---|
| 324 | op.ScheduleParameter.Hidden = true;
|
---|
| 325 | } else if (SolutionCreator is DirectScheduleRandomCreator) {
|
---|
| 326 | op.ScheduleParameter.ActualName = ((DirectScheduleRandomCreator)SolutionCreator).ScheduleEncodingParameter.ActualName;
|
---|
| 327 | op.ScheduleParameter.Hidden = true;
|
---|
| 328 | } else {
|
---|
| 329 | op.ScheduleParameter.ActualName = op.ScheduleParameter.Name;
|
---|
| 330 | op.ScheduleParameter.Hidden = false;
|
---|
| 331 | }
|
---|
| 332 | }
|
---|
| 333 | }
|
---|
[6121] | 334 | #endregion
|
---|
| 335 |
|
---|
| 336 | }
|
---|
| 337 | }
|
---|