Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2521_ProblemRefactoring/HeuristicLab.Problems.Binary/3.3/HIFFProblem.cs @ 17533

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

#2521: Refactored single-objective problems to use EvaluationResult instead of double as return type from Evaluate.

File size: 3.2 KB
Line 
1#region License Information
2
3/* HeuristicLab
4 * Copyright (C) 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 System;
25using System.Threading;
26using HEAL.Attic;
27using HeuristicLab.Common;
28using HeuristicLab.Core;
29using HeuristicLab.Encodings.BinaryVectorEncoding;
30using HeuristicLab.Optimization;
31
32namespace HeuristicLab.Problems.Binary {
33  [Item("Hierararchical If and only If problem (HIFF)", "Genome evaluated in nested subsets to see if each subset contains either all 0s or all 1s.")]
34  [StorableType("8AC6D94E-E7B4-4216-B2CA-8E142E7A1391")]
35  [Creatable(CreatableAttribute.Categories.CombinatorialProblems, Priority = 220)]
36  public class HIFFProblem : BinaryVectorProblem {
37    [StorableConstructor]
38    protected HIFFProblem(StorableConstructorFlag _) : base(_) { }
39    protected HIFFProblem(HIFFProblem original, Cloner cloner)
40      : base(original, cloner) {
41    }
42    public override IDeepCloneable Clone(Cloner cloner) {
43      return new HIFFProblem(this, cloner);
44    }
45
46    public HIFFProblem() : base() {
47      Maximization = true;
48      Encoding.Length = 64;
49    }
50    // In the GECCO paper, Section 4.1
51    public override ISingleObjectiveEvaluationResult Evaluate(BinaryVector individual, IRandom random, CancellationToken cancellationToken) {
52      int[] level = new int[individual.Length];
53      int levelLength = individual.Length;
54
55      // Initialize the level to the current solution
56      for (int i = 0; i < levelLength; i++) {
57        level[i] = Convert.ToInt32(individual[i]);
58      }
59      int power = 1;
60      int nextLength = levelLength / 2;
61      int total = 0;
62      int maximum = 0;
63
64      // Keep going while the next level actual has bits in it
65      while (nextLength > 0) {
66        int[] nextLevel = new int[nextLength];
67        // Construct the next level using the current level
68        for (int i = 0; i + 1 < levelLength; i += 2) {
69          if (level[i] == level[i + 1] && level[i] != -1) {
70            // Score points for a correct setting at this level
71            total += power;
72            nextLevel[i / 2] = level[i];
73          } else {
74            nextLevel[i / 2] = -1;
75          }
76          // Keep track of the maximum possible score
77          maximum += power;
78        }
79        level = nextLevel;
80        levelLength = nextLength;
81        nextLength = levelLength / 2;
82        power *= 2;
83      }
84
85      // Convert to percentage of total
86      var quality = (double)total / maximum;
87      return new SingleObjectiveEvaluationResult(quality);
88    }
89  }
90}
Note: See TracBrowser for help on using the repository browser.