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 |
|
---|
22 | using System;
|
---|
23 | using System.Collections.Generic;
|
---|
24 | using System.Linq;
|
---|
25 | using HeuristicLab.Common;
|
---|
26 | using HeuristicLab.Core;
|
---|
27 | using HeuristicLab.Data;
|
---|
28 | using HeuristicLab.Operators;
|
---|
29 | using HeuristicLab.Parameters;
|
---|
30 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
31 |
|
---|
32 | namespace HeuristicLab.Optimization.Operators {
|
---|
33 | [Item("CrowdingDistanceAssignment", "Calculates the crowding distances for each sub-scope as described in Deb et al. 2002. A Fast and Elitist Multiobjective Genetic Algorithm: NSGA-II. IEEE Transactions on Evolutionary Computation, 6(2), pp. 182-197.")]
|
---|
34 | [StorableClass]
|
---|
35 | public class CrowdingDistanceAssignment : SingleSuccessorOperator, IMultiObjectiveOperator {
|
---|
36 |
|
---|
37 | public ScopeTreeLookupParameter<DoubleArray> QualitiesParameter {
|
---|
38 | get { return (ScopeTreeLookupParameter<DoubleArray>)Parameters["Qualities"]; }
|
---|
39 | }
|
---|
40 |
|
---|
41 | public ScopeTreeLookupParameter<DoubleValue> CrowdingDistanceParameter {
|
---|
42 | get { return (ScopeTreeLookupParameter<DoubleValue>)Parameters["CrowdingDistance"]; }
|
---|
43 | }
|
---|
44 |
|
---|
45 | private void QualitiesParameter_DepthChanged(object sender, EventArgs e) {
|
---|
46 | CrowdingDistanceParameter.Depth = QualitiesParameter.Depth;
|
---|
47 | }
|
---|
48 |
|
---|
49 | [StorableConstructor]
|
---|
50 | protected CrowdingDistanceAssignment(bool deserializing) : base(deserializing) { }
|
---|
51 | protected CrowdingDistanceAssignment(CrowdingDistanceAssignment original, Cloner cloner) : base(original, cloner) { }
|
---|
52 | public CrowdingDistanceAssignment() {
|
---|
53 | Parameters.Add(new ScopeTreeLookupParameter<DoubleArray>("Qualities", "The vector of quality values."));
|
---|
54 | Parameters.Add(new ScopeTreeLookupParameter<DoubleValue>("CrowdingDistance", "Sets the crowding distance in each sub-scope."));
|
---|
55 | RegisterEventHandlers();
|
---|
56 | }
|
---|
57 |
|
---|
58 | [StorableHook(HookType.AfterDeserialization)]
|
---|
59 | private void AfterDeserialization() {
|
---|
60 | RegisterEventHandlers();
|
---|
61 | }
|
---|
62 |
|
---|
63 | private void RegisterEventHandlers() {
|
---|
64 | QualitiesParameter.DepthChanged += new EventHandler(QualitiesParameter_DepthChanged);
|
---|
65 | }
|
---|
66 |
|
---|
67 | public static void Apply(DoubleArray[] qualities, DoubleValue[] distances) {
|
---|
68 | var dist = CrowdingCalculator.CalculateCrowdingDistances(qualities);
|
---|
69 | for (var i = 0; i < distances.Length; i++) distances[i].Value = dist[i];
|
---|
70 | }
|
---|
71 |
|
---|
72 | public override IOperation Apply() {
|
---|
73 | var dist = CrowdingCalculator.CalculateCrowdingDistances(QualitiesParameter.ActualValue.ToArray());
|
---|
74 | CrowdingDistanceParameter.ActualValue = new ItemArray<DoubleValue>(dist.Select(d => new DoubleValue(d)));
|
---|
75 | return base.Apply();
|
---|
76 | }
|
---|
77 |
|
---|
78 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
79 | return new CrowdingDistanceAssignment(this, cloner);
|
---|
80 | }
|
---|
81 | }
|
---|
82 | }
|
---|