[3404] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[7259] | 3 | * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[3404] | 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 |
|
---|
[4068] | 22 | using System;
|
---|
[4722] | 23 | using HeuristicLab.Common;
|
---|
[3404] | 24 | using HeuristicLab.Core;
|
---|
| 25 | using HeuristicLab.Data;
|
---|
[4068] | 26 | using HeuristicLab.Operators;
|
---|
[3404] | 27 | using HeuristicLab.Optimization;
|
---|
[4068] | 28 | using HeuristicLab.Parameters;
|
---|
[3404] | 29 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
| 30 |
|
---|
| 31 | namespace HeuristicLab.Selection {
|
---|
| 32 | [Item("GenderSpecificSelection", "Brings two parents together by sampling each with a different selection scheme (Wagner, S. and Affenzeller, M. 2005. SexualGA: Gender-Specific Selection for Genetic Algorithms. Proceedings of the 9th World Multi-Conference on Systemics, Cybernetics and Informatics (WMSCI), pp. 76-81).")]
|
---|
| 33 | [StorableClass]
|
---|
| 34 | public class GenderSpecificSelector : AlgorithmOperator, ISingleObjectiveSelector, IStochasticOperator {
|
---|
| 35 | #region Parameters
|
---|
| 36 | public IValueLookupParameter<BoolValue> MaximizationParameter {
|
---|
| 37 | get { return (IValueLookupParameter<BoolValue>)Parameters["Maximization"]; }
|
---|
| 38 | }
|
---|
| 39 | public ILookupParameter<ItemArray<DoubleValue>> QualityParameter {
|
---|
| 40 | get { return (ILookupParameter<ItemArray<DoubleValue>>)Parameters["Quality"]; }
|
---|
| 41 | }
|
---|
| 42 | public IValueLookupParameter<IntValue> NumberOfSelectedSubScopesParameter {
|
---|
| 43 | get { return (IValueLookupParameter<IntValue>)Parameters["NumberOfSelectedSubScopes"]; }
|
---|
| 44 | }
|
---|
[6051] | 45 | protected IValueLookupParameter<BoolValue> CopySelectedParameter {
|
---|
[3404] | 46 | get { return (IValueLookupParameter<BoolValue>)Parameters["CopySelected"]; }
|
---|
| 47 | }
|
---|
| 48 | public ILookupParameter<IRandom> RandomParameter {
|
---|
| 49 | get { return (ILookupParameter<IRandom>)Parameters["Random"]; }
|
---|
| 50 | }
|
---|
[3413] | 51 | public ValueParameter<ISelector> FemaleSelectorParameter {
|
---|
| 52 | get { return (ValueParameter<ISelector>)Parameters["FemaleSelector"]; }
|
---|
[3404] | 53 | }
|
---|
[3413] | 54 | public ValueParameter<ISelector> MaleSelectorParameter {
|
---|
| 55 | get { return (ValueParameter<ISelector>)Parameters["MaleSelector"]; }
|
---|
[3404] | 56 | }
|
---|
| 57 | #endregion
|
---|
| 58 |
|
---|
| 59 | #region Properties
|
---|
| 60 | public BoolValue Maximization {
|
---|
| 61 | get { return MaximizationParameter.Value; }
|
---|
| 62 | set { MaximizationParameter.Value = value; }
|
---|
| 63 | }
|
---|
| 64 | public IntValue NumberOfSelectedSubScopes {
|
---|
| 65 | get { return NumberOfSelectedSubScopesParameter.Value; }
|
---|
| 66 | set { NumberOfSelectedSubScopesParameter.Value = value; }
|
---|
| 67 | }
|
---|
| 68 | public BoolValue CopySelected {
|
---|
| 69 | get { return CopySelectedParameter.Value; }
|
---|
| 70 | set { CopySelectedParameter.Value = value; }
|
---|
| 71 | }
|
---|
| 72 | public ISelector FemaleSelector {
|
---|
| 73 | get { return FemaleSelectorParameter.Value; }
|
---|
| 74 | set { FemaleSelectorParameter.Value = value; }
|
---|
| 75 | }
|
---|
| 76 | public ISelector MaleSelector {
|
---|
| 77 | get { return MaleSelectorParameter.Value; }
|
---|
| 78 | set { MaleSelectorParameter.Value = value; }
|
---|
| 79 | }
|
---|
| 80 | #endregion
|
---|
| 81 |
|
---|
| 82 | [StorableConstructor]
|
---|
[4722] | 83 | protected GenderSpecificSelector(bool deserializing) : base(deserializing) { }
|
---|
| 84 | protected GenderSpecificSelector(GenderSpecificSelector original, Cloner cloner)
|
---|
| 85 | : base(original, cloner) {
|
---|
| 86 | Initialize();
|
---|
| 87 | }
|
---|
| 88 |
|
---|
[3404] | 89 | public GenderSpecificSelector()
|
---|
| 90 | : base() {
|
---|
| 91 | #region Create parameters
|
---|
| 92 | Parameters.Add(new ValueLookupParameter<BoolValue>("Maximization", "True if the problem is a maximization problem."));
|
---|
[3659] | 93 | Parameters.Add(new ScopeTreeLookupParameter<DoubleValue>("Quality", "The quality of the solutions."));
|
---|
[3404] | 94 | Parameters.Add(new ValueLookupParameter<IntValue>("NumberOfSelectedSubScopes", "The number of scopes that should be selected."));
|
---|
| 95 | Parameters.Add(new ValueLookupParameter<BoolValue>("CopySelected", "True if the scopes should be copied, false if they should be moved.", new BoolValue(true)));
|
---|
| 96 | Parameters.Add(new LookupParameter<IRandom>("Random", "The random number generator to use."));
|
---|
[3413] | 97 | Parameters.Add(new ValueParameter<ISelector>("FemaleSelector", "The selection operator to select the first parent."));
|
---|
| 98 | Parameters.Add(new ValueParameter<ISelector>("MaleSelector", "The selection operator to select the second parent."));
|
---|
[6051] | 99 | CopySelectedParameter.Hidden = true;
|
---|
[3404] | 100 | #endregion
|
---|
| 101 |
|
---|
| 102 | #region Create operators
|
---|
| 103 | Placeholder femaleSelector = new Placeholder();
|
---|
| 104 | SubScopesProcessor maleSelection = new SubScopesProcessor();
|
---|
| 105 | Placeholder maleSelector = new Placeholder();
|
---|
| 106 | EmptyOperator empty = new EmptyOperator();
|
---|
| 107 | RightChildReducer rightChildReducer = new RightChildReducer();
|
---|
| 108 | SubScopesMixer subScopesMixer = new SubScopesMixer();
|
---|
| 109 |
|
---|
| 110 | femaleSelector.OperatorParameter.ActualName = "FemaleSelector";
|
---|
[4068] | 111 |
|
---|
[3404] | 112 | maleSelector.OperatorParameter.ActualName = "MaleSelector";
|
---|
| 113 |
|
---|
| 114 | subScopesMixer.Partitions = new IntValue(2);
|
---|
| 115 | #endregion
|
---|
| 116 |
|
---|
| 117 | #region Create operator graph
|
---|
| 118 | OperatorGraph.InitialOperator = femaleSelector;
|
---|
| 119 | femaleSelector.Successor = maleSelection;
|
---|
| 120 | maleSelection.Operators.Add(maleSelector);
|
---|
| 121 | maleSelection.Operators.Add(empty);
|
---|
| 122 | maleSelection.Successor = rightChildReducer;
|
---|
| 123 | rightChildReducer.Successor = subScopesMixer;
|
---|
| 124 | #endregion
|
---|
| 125 |
|
---|
| 126 | Initialize();
|
---|
| 127 | }
|
---|
| 128 |
|
---|
[4722] | 129 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
| 130 | return new GenderSpecificSelector(this, cloner);
|
---|
| 131 | }
|
---|
| 132 |
|
---|
| 133 | [StorableHook(HookType.AfterDeserialization)]
|
---|
| 134 | private void AfterDeserialization() {
|
---|
| 135 | Initialize();
|
---|
| 136 | }
|
---|
| 137 |
|
---|
[3404] | 138 | /// <summary>
|
---|
| 139 | /// Sets how many sub-scopes male and female selectors should select.
|
---|
| 140 | /// </summary>
|
---|
| 141 | /// <exception cref="InvalidOperationException">Thrown when <see cref="NumberOfSelectedSubScopesParameter"/> returns an odd number.</exception>
|
---|
| 142 | /// <returns>Returns Apply of <see cref="AlgorithmOperator"/>.</returns>
|
---|
| 143 | public override IOperation Apply() {
|
---|
| 144 | int count = NumberOfSelectedSubScopesParameter.ActualValue.Value;
|
---|
| 145 | if (count % 2 > 0) throw new InvalidOperationException(Name + ": There must be an equal number of sub-scopes to be selected.");
|
---|
| 146 | FemaleSelector.NumberOfSelectedSubScopesParameter.Value = new IntValue(count / 2);
|
---|
| 147 | MaleSelector.NumberOfSelectedSubScopesParameter.Value = new IntValue(count / 2);
|
---|
| 148 | return base.Apply();
|
---|
| 149 | }
|
---|
| 150 |
|
---|
[3413] | 151 | #region Events
|
---|
| 152 | private void SelectorParameter_ValueChanged(object sender, EventArgs e) {
|
---|
| 153 | IValueParameter<ISelector> selectorParam = (sender as IValueParameter<ISelector>);
|
---|
| 154 | if (selectorParam != null)
|
---|
| 155 | ParameterizeSelector(selectorParam.Value);
|
---|
| 156 | }
|
---|
| 157 | #endregion
|
---|
| 158 |
|
---|
[3404] | 159 | #region Helpers
|
---|
| 160 | private void Initialize() {
|
---|
[3413] | 161 | FemaleSelectorParameter.ValueChanged += new EventHandler(SelectorParameter_ValueChanged);
|
---|
| 162 | MaleSelectorParameter.ValueChanged += new EventHandler(SelectorParameter_ValueChanged);
|
---|
| 163 | if (FemaleSelector == null) FemaleSelector = new ProportionalSelector();
|
---|
| 164 | if (MaleSelector == null) MaleSelector = new RandomSelector();
|
---|
[3404] | 165 | }
|
---|
[3413] | 166 | private void ParameterizeSelector(ISelector selector) {
|
---|
| 167 | selector.CopySelected = new BoolValue(true);
|
---|
| 168 | IStochasticOperator stoOp = (selector as IStochasticOperator);
|
---|
| 169 | if (stoOp != null) stoOp.RandomParameter.ActualName = RandomParameter.Name;
|
---|
| 170 | ISingleObjectiveSelector soSelector = (selector as ISingleObjectiveSelector);
|
---|
| 171 | if (soSelector != null) {
|
---|
| 172 | soSelector.MaximizationParameter.ActualName = MaximizationParameter.Name;
|
---|
| 173 | soSelector.QualityParameter.ActualName = QualityParameter.Name;
|
---|
[3404] | 174 | }
|
---|
| 175 | }
|
---|
| 176 | #endregion
|
---|
| 177 | }
|
---|
| 178 | }
|
---|