Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2521_ProblemRefactoring/HeuristicLab.Problems.Binary/3.3/DeceptiveStepTrapProblem.cs @ 16814

Last change on this file since 16814 was 16814, checked in by mkommend, 5 years ago

#2521: Adapted binary problems and moved to abstract base class to encoding.

File size: 3.2 KB
Line 
1#region License Information
2
3/* HeuristicLab
4 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
5 *
6 * This file is part of HeuristicLab.
7 *
8 * HeuristicLab is free software: you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation, either version 3 of the License, or
11 * (at your option) any later version.
12 *
13 * HeuristicLab is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
20 */
21
22#endregion
23
24using HEAL.Attic;
25using HeuristicLab.Common;
26using HeuristicLab.Core;
27using HeuristicLab.Data;
28using HeuristicLab.Encodings.BinaryVectorEncoding;
29using HeuristicLab.Parameters;
30
31namespace HeuristicLab.Problems.Binary {
32  [Item("Deceptive Step Trap Problem", "Genome encodes completely separable blocks, where each block deceptive with fitness plateaus.")]
33  [StorableType("89777145-7979-4B7B-B798-5F7C7E892A21")]
34  [Creatable(CreatableAttribute.Categories.CombinatorialProblems, Priority = 230)]
35  public class DeceptiveStepTrapProblem : DeceptiveTrapProblem {
36    [StorableConstructor]
37    protected DeceptiveStepTrapProblem(StorableConstructorFlag _) : base(_) { }
38    protected DeceptiveStepTrapProblem(DeceptiveStepTrapProblem original, Cloner cloner)
39      : base(original, cloner) {
40      RegisterParameterEvents();
41    }
42    public override IDeepCloneable Clone(Cloner cloner) {
43      return new DeceptiveStepTrapProblem(this, cloner);
44    }
45
46    private const string StepSizeParameterName = "Step Size";
47
48    public IFixedValueParameter<IntValue> StepSizeParameter {
49      get { return (IFixedValueParameter<IntValue>)Parameters[StepSizeParameterName]; }
50    }
51
52    public int StepSize {
53      get { return StepSizeParameter.Value.Value; }
54      set { StepSizeParameter.Value.Value = value; }
55    }
56
57    public DeceptiveStepTrapProblem() : base() {
58      Parameters.Add(new FixedValueParameter<IntValue>(StepSizeParameterName, "", new IntValue(2)));
59      RegisterParameterEvents();
60    }
61
62    [StorableHook(HookType.AfterDeserialization)]
63    private void AfterDeserialization() {
64      RegisterParameterEvents();
65    }
66
67    private void RegisterParameterEvents() {
68      TrapSizeParameter.Value.ValueChanged += (o, e) => { offset = -1; };
69      StepSizeParameter.Value.ValueChanged += (o, e) => { offset = -1; };
70    }
71
72
73    private int offset = -1;
74    private int Offset {
75      get {
76        if (offset == -1) offset = (TrapSize - StepSize) % StepSize;
77        return offset;
78      }
79    }
80
81    protected override int TrapMaximum {
82      get { return (Offset + TrapSize) / StepSize; }
83    }
84
85    protected override int Score(BinaryVector individual, int trapIndex, int trapSize) {
86      int partial = base.Score(individual, trapIndex, trapSize);
87      // introduce plateaus using integer division
88      return (Offset + partial) / StepSize;
89    }
90  }
91}
Note: See TracBrowser for help on using the repository browser.