[11511] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
| 3 | * Copyright (C) 2002-2014 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 |
|
---|
[11512] | 22 | using System;
|
---|
[11511] | 23 | using HeuristicLab.Common;
|
---|
| 24 | using HeuristicLab.Core;
|
---|
| 25 | using HeuristicLab.Operators;
|
---|
| 26 | using HeuristicLab.Parameters;
|
---|
| 27 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
| 28 |
|
---|
| 29 | namespace HeuristicLab.Algorithms.VOffspringSelectionGeneticAlgorithm {
|
---|
| 30 | [Item("OffspringCollector", "An operator that can be used as a pre-processing operator for Offspring Selectors to collect solutions.")]
|
---|
| 31 | [StorableClass]
|
---|
| 32 | public class OffspringCollector : SingleSuccessorOperator {
|
---|
| 33 | public LookupParameter<ItemList<IScope>> GeneratedOffspringParameter {
|
---|
| 34 | get { return (LookupParameter<ItemList<IScope>>)Parameters["GeneratedOffspring"]; }
|
---|
| 35 | }
|
---|
| 36 |
|
---|
| 37 | [StorableConstructor]
|
---|
| 38 | private OffspringCollector(bool deserializing) : base(deserializing) { }
|
---|
| 39 | private OffspringCollector(OffspringCollector original, Cloner cloner) : base(original, cloner) { }
|
---|
| 40 | public OffspringCollector()
|
---|
| 41 | : base() {
|
---|
| 42 | Parameters.Add(new LookupParameter<ItemList<IScope>>("GeneratedOffspring", "Temporary store of the offspring population."));
|
---|
| 43 | }
|
---|
| 44 |
|
---|
| 45 | public override IOperation Apply() {
|
---|
| 46 | IScope scope = ExecutionContext.Scope;
|
---|
[11512] | 47 |
|
---|
| 48 | if (scope.SubScopes.Count != 2) {
|
---|
| 49 | throw new InvalidOperationException(Name + ": Wrong number of scopes.");
|
---|
| 50 | }
|
---|
| 51 |
|
---|
[11511] | 52 | IScope offspring = scope.SubScopes[1];
|
---|
| 53 |
|
---|
[11512] | 54 | if (GeneratedOffspringParameter.ActualValue == null) {
|
---|
| 55 | throw new InvalidOperationException(Name + ": GeneratedOffspring list is not initialized. Have you forgotten to add the ProbabilitiesGenerator to the analyzers?");
|
---|
| 56 | }
|
---|
| 57 |
|
---|
[11511] | 58 | GeneratedOffspringParameter.ActualValue.AddRange(offspring.SubScopes);
|
---|
| 59 | return base.Apply();
|
---|
| 60 | }
|
---|
| 61 |
|
---|
| 62 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
| 63 | return new OffspringCollector(this, cloner);
|
---|
| 64 | }
|
---|
| 65 | }
|
---|
| 66 | }
|
---|