Free cookie consent management tool by TermsFeed Policy Generator

source: branches/VOSGA/HeuristicLab.Algorithms.VOffspringSelectionGeneticAlgorithm/OffspringCollector.cs @ 11884

Last change on this file since 11884 was 11512, checked in by ascheibe, 9 years ago

#2267 minor fixes

File size: 2.6 KB
Line 
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
22using System;
23using HeuristicLab.Common;
24using HeuristicLab.Core;
25using HeuristicLab.Operators;
26using HeuristicLab.Parameters;
27using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
28
29namespace 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;
47
48      if (scope.SubScopes.Count != 2) {
49        throw new InvalidOperationException(Name + ": Wrong number of scopes.");
50      }
51
52      IScope offspring = scope.SubScopes[1];
53
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
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}
Note: See TracBrowser for help on using the repository browser.