[7779] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
| 3 | * Copyright (C) 2002-2012 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.Collections.Generic;
|
---|
[7997] | 23 | using System.Linq;
|
---|
[7779] | 24 | using HeuristicLab.Common;
|
---|
| 25 | using HeuristicLab.Core;
|
---|
| 26 | using HeuristicLab.Data;
|
---|
| 27 | using HeuristicLab.Optimization;
|
---|
| 28 | using HeuristicLab.Parameters;
|
---|
| 29 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
| 30 |
|
---|
| 31 | namespace HeuristicLab.Selection {
|
---|
| 32 | /// <summary>
|
---|
| 33 | /// A random selection operator.
|
---|
| 34 | /// </summary>
|
---|
| 35 | [Item("RandomSelector", "A random selection operator.")]
|
---|
| 36 | [StorableClass]
|
---|
| 37 | public sealed class RandomSelector : StochasticSelector, ISelector {
|
---|
| 38 | private IValueParameter<BoolValue> CopySelectedParameter {
|
---|
| 39 | get { return (IValueParameter<BoolValue>)Parameters["CopySelected"]; }
|
---|
| 40 | }
|
---|
| 41 | public IValueLookupParameter<IntValue> NumberOfSelectedSubScopesParameter {
|
---|
| 42 | get { return (ValueLookupParameter<IntValue>)Parameters["NumberOfSelectedSubScopes"]; }
|
---|
| 43 | }
|
---|
| 44 |
|
---|
| 45 | public BoolValue CopySelected {
|
---|
| 46 | get { return CopySelectedParameter.Value; }
|
---|
| 47 | set { CopySelectedParameter.Value = value; }
|
---|
| 48 | }
|
---|
| 49 |
|
---|
| 50 | [StorableConstructor]
|
---|
| 51 | private RandomSelector(bool deserializing) : base(deserializing) { }
|
---|
| 52 | private RandomSelector(RandomSelector original, Cloner cloner)
|
---|
| 53 | : base(original, cloner) {
|
---|
| 54 | }
|
---|
| 55 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
| 56 | return new RandomSelector(this, cloner);
|
---|
| 57 | }
|
---|
| 58 | public RandomSelector()
|
---|
| 59 | : base() {
|
---|
| 60 | Parameters.Add(new ValueParameter<BoolValue>("CopySelected", "True if the selected sub-scopes should be copied, otherwise false.", new BoolValue(true)));
|
---|
| 61 | Parameters.Add(new ValueLookupParameter<IntValue>("NumberOfSelectedSubScopes", "The number of sub-scopes which should be selected."));
|
---|
| 62 | CopySelectedParameter.Hidden = true;
|
---|
| 63 | }
|
---|
| 64 |
|
---|
| 65 | protected override IScope[] Select(List<IScope> scopes) {
|
---|
| 66 | int count = NumberOfSelectedSubScopesParameter.ActualValue.Value;
|
---|
| 67 | bool copy = CopySelectedParameter.Value.Value;
|
---|
| 68 | IRandom random = RandomParameter.ActualValue;
|
---|
| 69 | IScope[] selected = new IScope[count];
|
---|
| 70 |
|
---|
| 71 | for (int i = 0; i < count; i++) {
|
---|
[7997] | 72 | if (copy) {
|
---|
[7779] | 73 | int index = random.Next(scopes.Count);
|
---|
[7997] | 74 | selected[i] = (IScope)scopes[index].Clone();
|
---|
| 75 | // map the selected (cloned) tree to the original tree
|
---|
| 76 | var original = scopes[index].Variables.First().Value;
|
---|
| 77 | var clone = selected[i].Variables.First().Value;
|
---|
| 78 | GlobalCloneMap.Add(clone, original);
|
---|
| 79 | } else {
|
---|
| 80 | int index = random.Next(scopes.Count);
|
---|
[7779] | 81 | selected[i] = scopes[index];
|
---|
| 82 | scopes.RemoveAt(index);
|
---|
| 83 | }
|
---|
| 84 | }
|
---|
| 85 | return selected;
|
---|
| 86 | }
|
---|
| 87 | }
|
---|
| 88 | }
|
---|