Free cookie consent management tool by TermsFeed Policy Generator

source: branches/1614_GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Operators/Manipulators/MultiGQAPManipulator.cs

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

#1614: updated to new persistence and .NET 4.6.1

File size: 4.2 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2018 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 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;
33using HEAL.Attic;
34
35namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment {
36  [Item("MultiGQAPManipulator", "Randomly selects and applies one of its manipulators every time it is called.")]
37  [StorableType("CA2893AC-EECE-4F3A-A12E-81DC838ADC3C")]
38  public class MultiGQAPManipulator : StochasticMultiBranch<IGQAPManipulator>, IGQAPManipulator,
39    IProblemInstanceAwareGQAPOperator {
40    public override bool CanChangeName {
41      get { return false; }
42    }
43    protected override bool CreateChildOperation {
44      get { return true; }
45    }
46
47    public ILookupParameter<IntegerVector> AssignmentParameter {
48      get { return (ILookupParameter<IntegerVector>)Parameters["Assignment"]; }
49    }
50    public ILookupParameter<GQAPInstance> ProblemInstanceParameter {
51      get { return (ILookupParameter<GQAPInstance>)Parameters["ProblemInstance"]; }
52    }
53
54    [StorableConstructor]
55    protected MultiGQAPManipulator(StorableConstructorFlag _) : base(_) { }
56    protected MultiGQAPManipulator(MultiGQAPManipulator original, Cloner cloner) : base(original, cloner) { }
57    public MultiGQAPManipulator()
58      : base() {
59      Parameters.Add(new LookupParameter<IntegerVector>("Assignment", GQAPSolutionCreator.AssignmentDescription));
60      Parameters.Add(new LookupParameter<GQAPInstance>("ProblemInstance", GQAP.ProblemInstanceDescription));
61
62      foreach (Type type in ApplicationManager.Manager.GetTypes(typeof(IGQAPManipulator))) {
63        if (!typeof(MultiOperator<IGQAPManipulator>).IsAssignableFrom(type))
64          Operators.Add((IGQAPManipulator)Activator.CreateInstance(type), true);
65      }
66    }
67
68    public override IDeepCloneable Clone(Cloner cloner) {
69      return new MultiGQAPManipulator(this, cloner);
70    }
71
72    protected override void Operators_ItemsAdded(object sender, CollectionItemsChangedEventArgs<IndexedItem<IGQAPManipulator>> e) {
73      base.Operators_ItemsAdded(sender, e);
74      Parameterize();
75    }
76    protected override void Operators_ItemsRemoved(object sender, CollectionItemsChangedEventArgs<IndexedItem<IGQAPManipulator>> e) {
77      base.Operators_ItemsRemoved(sender, e);
78      Parameterize();
79    }
80
81    private void Parameterize() {
82      foreach (var op in Operators.OfType<IGQAPManipulator>()) {
83        op.AssignmentParameter.ActualName = AssignmentParameter.Name;
84        op.AssignmentParameter.Hidden = true;
85      }
86      foreach (var op in Operators.OfType<IStochasticOperator>()) {
87        op.RandomParameter.ActualName = RandomParameter.Name;
88        op.RandomParameter.Hidden = true;
89      }
90      foreach (var op in Operators.OfType<IProblemInstanceAwareGQAPOperator>()) {
91        op.ProblemInstanceParameter.ActualName = ProblemInstanceParameter.Name;
92        op.ProblemInstanceParameter.Hidden = true;
93      }
94    }
95
96    public override IOperation InstrumentedApply() {
97      if (Operators.Count == 0) throw new InvalidOperationException(Name + ": Please add at least one manipulator to choose from.");
98      return base.InstrumentedApply();
99    }
100  }
101}
Note: See TracBrowser for help on using the repository browser.