Free cookie consent management tool by TermsFeed Policy Generator

source: branches/MemPRAlgorithm/HeuristicLab.Algorithms.MemPR/3.3/Permutation/PermutationMemPRContext.cs @ 14776

Last change on this file since 14776 was 14552, checked in by abeham, 8 years ago

#2701:

  • Added alternating bits binary test Problem
  • Refactored MemPR to work with programmable problem in current trunk
  • fixed a bug in permutation MemPR when crossover doesn't assign an offspring
File size: 4.5 KB
RevLine 
[14420]1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2016 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
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
[14552]22using System;
23using System.Runtime.Remoting.Contexts;
[14450]24using HeuristicLab.Algorithms.MemPR.Interfaces;
[14420]25using HeuristicLab.Common;
26using HeuristicLab.Core;
[14450]27using HeuristicLab.Encodings.PermutationEncoding;
[14420]28using HeuristicLab.Optimization;
29using HeuristicLab.Parameters;
30using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
31
[14450]32namespace HeuristicLab.Algorithms.MemPR.Permutation {
33  [Item("MemPR Population Context (permutation)", "MemPR population context for permutation encoded problems.")]
[14420]34  [StorableClass]
[14552]35  public sealed class PermutationMemPRPopulationContext : MemPRPopulationContext<ISingleObjectiveHeuristicOptimizationProblem, Encodings.PermutationEncoding.Permutation, PermutationMemPRPopulationContext, PermutationMemPRSolutionContext> {
[14420]36
37    [StorableConstructor]
[14450]38    private PermutationMemPRPopulationContext(bool deserializing) : base(deserializing) { }
39    private PermutationMemPRPopulationContext(PermutationMemPRPopulationContext original, Cloner cloner)
[14420]40      : base(original, cloner) { }
[14450]41    public PermutationMemPRPopulationContext() : base("PermutationMemPRPopulationContext") { }
42    public PermutationMemPRPopulationContext(string name) : base(name) { }
[14420]43
44    public override IDeepCloneable Clone(Cloner cloner) {
[14450]45      return new PermutationMemPRPopulationContext(this, cloner);
[14420]46    }
47
[14450]48    public override PermutationMemPRSolutionContext CreateSingleSolutionContext(ISingleObjectiveSolutionScope<Encodings.PermutationEncoding.Permutation> solution) {
49      return new PermutationMemPRSolutionContext(this, solution);
[14420]50    }
[14552]51
52    public override ISingleObjectiveSolutionScope<Encodings.PermutationEncoding.Permutation> ToScope(Encodings.PermutationEncoding.Permutation code, double fitness = double.NaN) {
53      var creator = Problem.SolutionCreator as IPermutationCreator;
54      if (creator == null) throw new InvalidOperationException("Can only solve binary encoded problems with MemPR (binary)");
55      return new SingleObjectiveSolutionScope<Encodings.PermutationEncoding.Permutation>(code, creator.PermutationParameter.ActualName, fitness, Problem.Evaluator.QualityParameter.ActualName) {
56        Parent = Scope
57      };
58    }
[14420]59  }
60
[14450]61  [Item("MemPR Solution Context (permutation)", "MemPR solution context for permutation encoded problems.")]
[14420]62  [StorableClass]
[14552]63  public sealed class PermutationMemPRSolutionContext : MemPRSolutionContext<ISingleObjectiveHeuristicOptimizationProblem, Encodings.PermutationEncoding.Permutation, PermutationMemPRPopulationContext, PermutationMemPRSolutionContext>, IPermutationSubspaceContext {
[14420]64
65    [Storable]
[14450]66    private IValueParameter<PermutationSolutionSubspace> subspace;
67    public PermutationSolutionSubspace Subspace {
[14420]68      get { return subspace.Value; }
69    }
[14450]70    ISolutionSubspace<Encodings.PermutationEncoding.Permutation> ISolutionSubspaceContext<Encodings.PermutationEncoding.Permutation>.Subspace {
[14420]71      get { return Subspace; }
72    }
73
74    [StorableConstructor]
[14450]75    private PermutationMemPRSolutionContext(bool deserializing) : base(deserializing) { }
76    private PermutationMemPRSolutionContext(PermutationMemPRSolutionContext original, Cloner cloner)
[14420]77      : base(original, cloner) {
78
79    }
[14450]80    public PermutationMemPRSolutionContext(PermutationMemPRPopulationContext baseContext, ISingleObjectiveSolutionScope<Encodings.PermutationEncoding.Permutation> solution)
[14420]81      : base(baseContext, solution) {
82
[14450]83      Parameters.Add(subspace = new ValueParameter<PermutationSolutionSubspace>("Subspace", new PermutationSolutionSubspace(null)));
[14420]84    }
85
86    public override IDeepCloneable Clone(Cloner cloner) {
[14450]87      return new PermutationMemPRSolutionContext(this, cloner);
[14420]88    }
89  }
90}
Note: See TracBrowser for help on using the repository browser.