Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Problems.BinaryVector/3.3/DeceptiveStepTrapProblem.cs @ 11960

Last change on this file since 11960 was 11960, checked in by mkommend, 9 years ago

#2282: Changed creatable attribute and project files in P3.

File size: 3.1 KB
Line 
1#region License Information
2
3/* HeuristicLab
4 * Copyright (C) 2002-2015 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 HeuristicLab.Common;
25using HeuristicLab.Core;
26using HeuristicLab.Data;
27using HeuristicLab.Parameters;
28using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
29
30namespace HeuristicLab.Problems.BinaryVector {
31  [Item("Deceptive Step Trap Problem", "Genome encodes completely separable blocks, where each block deceptive with fitness plateaus.")]
32  [StorableClass]
33  [Creatable("Problems")]
34  public class DeceptiveStepTrapProblem : DeceptiveTrapProblem {
35    [StorableConstructor]
36    protected DeceptiveStepTrapProblem(bool deserializing) : base(deserializing) { }
37    protected DeceptiveStepTrapProblem(DeceptiveStepTrapProblem original, Cloner cloner)
38      : base(original, cloner) {
39      RegisterParameterEvents();
40    }
41    public override IDeepCloneable Clone(Cloner cloner) {
42      return new DeceptiveStepTrapProblem(this, cloner);
43    }
44
45    private const string StepSizeParameterName = "Step Size";
46
47    public IFixedValueParameter<IntValue> StepSizeParameter {
48      get { return (IFixedValueParameter<IntValue>)Parameters[StepSizeParameterName]; }
49    }
50
51    public int StepSize {
52      get { return StepSizeParameter.Value.Value; }
53      set { StepSizeParameter.Value.Value = value; }
54    }
55
56    public DeceptiveStepTrapProblem()
57      : 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(bool[] 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.