Free cookie consent management tool by TermsFeed Policy Generator

source: branches/ScatterSearch/HeuristicLab.Algorithms.ScatterSearch/3.3/PathRelinker.cs @ 7778

Last change on this file since 7778 was 7775, checked in by jkarder, 12 years ago

#1331:

  • added operators for TestFunctions problems
  • added more path relinking operators for the TravelingSalesman and the Knapsack problem
  • added 2-tier version of the SolutionPoolUpdateMethod
  • added parameters and adjusted types
  • added some exception handling
  • adjusted event handling
  • updated plugin dependencies
  • minor code improvements
File size: 3.1 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2012 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
22using HeuristicLab.Common;
23using HeuristicLab.Core;
24using HeuristicLab.Data;
25using HeuristicLab.Operators;
26using HeuristicLab.Parameters;
27using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
28
29namespace HeuristicLab.Algorithms.ScatterSearch {
30  /// <summary>
31  /// A base class for operators that perform path relinking.
32  /// </summary>
33  [Item("PathRelinker", "A base class for operators that perform path relinking.")]
34  [StorableClass]
35  public abstract class PathRelinker : SingleSuccessorOperator, IPathRelinker {
36    #region Parameter properties
37    public ScopeParameter CurrentScopeParameter {
38      get { return (ScopeParameter)Parameters["CurrentScope"]; }
39    }
40    public IValueParameter<PercentValue> RelinkingAccuracyParameter {
41      get { return (IValueParameter<PercentValue>)Parameters["RelinkingAccuracy"]; }
42    }
43    public ILookupParameter<ItemArray<IItem>> ParentsParameter {
44      get { return (IScopeTreeLookupParameter<IItem>)Parameters["Parents"]; }
45    }
46    #endregion
47
48    #region Properties
49    private IScope CurrentScope {
50      get { return CurrentScopeParameter.ActualValue; }
51    }
52    private PercentValue RelinkingAccuracy {
53      get { return RelinkingAccuracyParameter.Value; }
54    }
55    private ItemArray<IItem> Parents {
56      get { return ParentsParameter.ActualValue; }
57    }
58    #endregion
59
60    [StorableConstructor]
61    protected PathRelinker(bool deserializing) : base(deserializing) { }
62    protected PathRelinker(PathRelinker original, Cloner cloner) : base(original, cloner) { }
63    protected PathRelinker()
64      : base() {
65      #region Create parameters
66      Parameters.Add(new ScopeParameter("CurrentScope"));
67      Parameters.Add(new ValueParameter<PercentValue>("RelinkingAccuracy", new PercentValue(0.25)));
68      Parameters.Add(new ScopeTreeLookupParameter<IItem>("Parents"));
69      #endregion
70    }
71
72    public sealed override IOperation Apply() {
73      var relinkedSolutions = Relink(Parents, RelinkingAccuracy);
74      for (int i = 0; i < relinkedSolutions.Length; i++)
75        CurrentScope.Variables.Add(new Variable(string.Format("Child {0}", i), relinkedSolutions[i]));
76      return base.Apply();
77    }
78
79    protected abstract ItemArray<IItem> Relink(ItemArray<IItem> parents, PercentValue n);
80  }
81}
Note: See TracBrowser for help on using the repository browser.