1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2010 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 |
|
---|
22 | using System;
|
---|
23 | using System.Linq;
|
---|
24 | using HeuristicLab.Collections;
|
---|
25 | using HeuristicLab.Core;
|
---|
26 | using HeuristicLab.Operators;
|
---|
27 | using HeuristicLab.Optimization;
|
---|
28 | using HeuristicLab.Parameters;
|
---|
29 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
30 | using HeuristicLab.PluginInfrastructure;
|
---|
31 | using HeuristicLab.Data;
|
---|
32 | using HeuristicLab.Problems.VehicleRouting.Interfaces;
|
---|
33 | using HeuristicLab.Problems.VehicleRouting.Variants;
|
---|
34 | using System.Collections.Generic;
|
---|
35 | using HeuristicLab.Common;
|
---|
36 |
|
---|
37 | namespace HeuristicLab.Problems.VehicleRouting.Encodings.General {
|
---|
38 | [Item("MultiVRPSolutionCreator", "Randomly selects and applies one of its creator every time it is called.")]
|
---|
39 | [StorableClass]
|
---|
40 | public class MultiVRPSolutionCreator : StochasticMultiBranch<IVRPCreator>, IVRPCreator, IGeneralVRPOperator, IMultiVRPOperator, IStochasticOperator {
|
---|
41 | public override bool CanChangeName {
|
---|
42 | get { return false; }
|
---|
43 | }
|
---|
44 | protected override bool CreateChildOperation {
|
---|
45 | get { return true; }
|
---|
46 | }
|
---|
47 |
|
---|
48 | public ILookupParameter<IVRPProblemInstance> ProblemInstanceParameter {
|
---|
49 | get { return (LookupParameter<IVRPProblemInstance>)Parameters["ProblemInstance"]; }
|
---|
50 | }
|
---|
51 |
|
---|
52 | public ILookupParameter<IVRPEncoding> VRPToursParameter {
|
---|
53 | get { return (ILookupParameter<IVRPEncoding>)Parameters["VRPTours"]; }
|
---|
54 | }
|
---|
55 |
|
---|
56 | [StorableConstructor]
|
---|
57 | protected MultiVRPSolutionCreator(bool deserializing) : base(deserializing) { }
|
---|
58 | public MultiVRPSolutionCreator()
|
---|
59 | : base() {
|
---|
60 | Parameters.Add(new LookupParameter<IVRPEncoding>("VRPTours", "The new VRP tours."));
|
---|
61 |
|
---|
62 | Parameters.Add(new LookupParameter<IVRPProblemInstance>("ProblemInstance", "The VRP problem instance"));
|
---|
63 | }
|
---|
64 |
|
---|
65 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
66 | return new MultiVRPSolutionCreator(this, cloner);
|
---|
67 | }
|
---|
68 |
|
---|
69 | protected MultiVRPSolutionCreator(MultiVRPSolutionCreator original, Cloner cloner)
|
---|
70 | : base(original, cloner) {
|
---|
71 | }
|
---|
72 |
|
---|
73 | protected override void Operators_ItemsReplaced(object sender, CollectionItemsChangedEventArgs<IndexedItem<IVRPCreator>> e) {
|
---|
74 | base.Operators_ItemsReplaced(sender, e);
|
---|
75 | ParameterizeCreators();
|
---|
76 | }
|
---|
77 |
|
---|
78 | protected override void Operators_ItemsAdded(object sender, CollectionItemsChangedEventArgs<IndexedItem<IVRPCreator>> e) {
|
---|
79 | base.Operators_ItemsAdded(sender, e);
|
---|
80 | ParameterizeCreators();
|
---|
81 | }
|
---|
82 |
|
---|
83 | public void SetOperators(IEnumerable<IOperator> operators) {
|
---|
84 | foreach (IOperator op in operators) {
|
---|
85 | if (op is IVRPCreator && !(op is MultiVRPSolutionCreator)) {
|
---|
86 | Operators.Add(op.Clone() as IVRPCreator, true);
|
---|
87 | }
|
---|
88 | }
|
---|
89 | }
|
---|
90 |
|
---|
91 | private void ParameterizeCreators() {
|
---|
92 | foreach (IVRPCreator creator in Operators.OfType<IVRPCreator>()) {
|
---|
93 | creator.VRPToursParameter.ActualName = VRPToursParameter.Name;
|
---|
94 | creator.ProblemInstanceParameter.ActualName = ProblemInstanceParameter.Name;
|
---|
95 | }
|
---|
96 | foreach (IStochasticOperator creator in Operators.OfType<IStochasticOperator>()) {
|
---|
97 | creator.RandomParameter.ActualName = RandomParameter.Name;
|
---|
98 | }
|
---|
99 | }
|
---|
100 |
|
---|
101 | public override IOperation Apply() {
|
---|
102 | if (Operators.Count == 0) throw new InvalidOperationException(Name + ": Please add at least one VRP creator to choose from.");
|
---|
103 | return base.Apply();
|
---|
104 | }
|
---|
105 | }
|
---|
106 | }
|
---|