Free cookie consent management tool by TermsFeed Policy Generator

source: branches/ScatterSearch (trunk integration)/HeuristicLab.Optimization.Operators/3.3/PathRelinker.cs @ 8086

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

#1331:

  • synced branch with trunk
  • added custom interface (ISimilarityBasedOperator) to mark operators that conduct similarity calculation
  • similarity calculators are now parameterized by the algorithm
  • deleted SolutionPool2TierUpdateMethod
  • deleted KnapsackMultipleGuidesPathRelinker
  • moved IImprovementOperator, IPathRelinker and ISimilarityCalculator to HeuristicLab.Optimization
  • added parameter descriptions
  • fixed plugin references
  • fixed count of EvaluatedSolutions
  • fixed check for duplicate solutions
  • minor code improvements
File size: 3.3 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.Optimization.Operators {
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 ILookupParameter<ItemArray<IItem>> ParentsParameter {
41      get { return (IScopeTreeLookupParameter<IItem>)Parameters["Parents"]; }
42    }
43    public IValueParameter<PercentValue> RelinkingAccuracyParameter {
44      get { return (IValueParameter<PercentValue>)Parameters["RelinkingAccuracy"]; }
45    }
46    #endregion
47
48    #region Properties
49    private IScope CurrentScope {
50      get { return CurrentScopeParameter.ActualValue; }
51    }
52    private ItemArray<IItem> Parents {
53      get { return ParentsParameter.ActualValue; }
54    }
55    private PercentValue RelinkingAccuracy {
56      get { return RelinkingAccuracyParameter.Value; }
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", "The current scope that contains the parents."));
67      Parameters.Add(new ScopeTreeLookupParameter<IItem>("Parents", "The parents used for path relinking."));
68      Parameters.Add(new ValueParameter<PercentValue>("RelinkingAccuracy", "The percentage of relinked offspring that should be yielded.", new PercentValue(0.25)));
69      #endregion
70    }
71
72    public sealed override IOperation Apply() {
73      ItemArray<IItem> 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.