Free cookie consent management tool by TermsFeed Policy Generator

source: branches/GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Operators/Manipulators/MultiGQAPManipulator.cs @ 15504

Last change on this file since 15504 was 15504, checked in by abeham, 6 years ago

#1614: refactored code

  • change problem to derive from basic problem
  • using a combined instance class instead of individual parameters
File size: 4.2 KB
RevLine 
[7437]1#region License Information
2/* HeuristicLab
[15504]3 * Copyright (C) 2002-2017 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
[7437]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 System;
23using System.Linq;
24using HeuristicLab.Collections;
25using HeuristicLab.Common;
26using HeuristicLab.Core;
27using HeuristicLab.Encodings.IntegerVectorEncoding;
28using HeuristicLab.Operators;
29using HeuristicLab.Optimization;
30using HeuristicLab.Parameters;
31using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
32using HeuristicLab.PluginInfrastructure;
33
34namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment {
35  [Item("MultiGQAPManipulator", "Randomly selects and applies one of its manipulators every time it is called.")]
36  [StorableClass]
[15504]37  public class MultiGQAPManipulator : StochasticMultiBranch<IGQAPManipulator>, IGQAPManipulator,
38    IProblemInstanceAwareGQAPOperator {
[7437]39    public override bool CanChangeName {
40      get { return false; }
41    }
42    protected override bool CreateChildOperation {
43      get { return true; }
44    }
45
46    public ILookupParameter<IntegerVector> AssignmentParameter {
47      get { return (ILookupParameter<IntegerVector>)Parameters["Assignment"]; }
48    }
[15504]49    public ILookupParameter<GQAPInstance> ProblemInstanceParameter {
50      get { return (ILookupParameter<GQAPInstance>)Parameters["ProblemInstance"]; }
51    }
[7437]52
53    [StorableConstructor]
54    protected MultiGQAPManipulator(bool deserializing) : base(deserializing) { }
55    protected MultiGQAPManipulator(MultiGQAPManipulator original, Cloner cloner) : base(original, cloner) { }
56    public MultiGQAPManipulator()
57      : base() {
58      Parameters.Add(new LookupParameter<IntegerVector>("Assignment", GQAPSolutionCreator.AssignmentDescription));
[15504]59      Parameters.Add(new LookupParameter<GQAPInstance>("ProblemInstance", GQAP.ProblemInstanceDescription));
60
[7437]61      foreach (Type type in ApplicationManager.Manager.GetTypes(typeof(IGQAPManipulator))) {
62        if (!typeof(MultiOperator<IGQAPManipulator>).IsAssignableFrom(type))
63          Operators.Add((IGQAPManipulator)Activator.CreateInstance(type), true);
64      }
65    }
66
67    public override IDeepCloneable Clone(Cloner cloner) {
68      return new MultiGQAPManipulator(this, cloner);
69    }
70
71    protected override void Operators_ItemsAdded(object sender, CollectionItemsChangedEventArgs<IndexedItem<IGQAPManipulator>> e) {
72      base.Operators_ItemsAdded(sender, e);
73      Parameterize();
74    }
75    protected override void Operators_ItemsRemoved(object sender, CollectionItemsChangedEventArgs<IndexedItem<IGQAPManipulator>> e) {
76      base.Operators_ItemsRemoved(sender, e);
77      Parameterize();
78    }
79
80    private void Parameterize() {
[15504]81      foreach (var op in Operators.OfType<IGQAPManipulator>()) {
[7437]82        op.AssignmentParameter.ActualName = AssignmentParameter.Name;
[15504]83        op.AssignmentParameter.Hidden = true;
84      }
85      foreach (var op in Operators.OfType<IStochasticOperator>()) {
[7437]86        op.RandomParameter.ActualName = RandomParameter.Name;
[15504]87        op.RandomParameter.Hidden = true;
88      }
89      foreach (var op in Operators.OfType<IProblemInstanceAwareGQAPOperator>()) {
90        op.ProblemInstanceParameter.ActualName = ProblemInstanceParameter.Name;
91        op.ProblemInstanceParameter.Hidden = true;
92      }
[7437]93    }
94
[11505]95    public override IOperation InstrumentedApply() {
[7437]96      if (Operators.Count == 0) throw new InvalidOperationException(Name + ": Please add at least one manipulator to choose from.");
[15504]97      return base.InstrumentedApply();
[7437]98    }
99  }
100}
Note: See TracBrowser for help on using the repository browser.