1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2008 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.Text;
|
---|
25 | using HeuristicLab.Core;
|
---|
26 |
|
---|
27 | namespace HeuristicLab.Selection {
|
---|
28 | /// <summary>
|
---|
29 | /// Copies or moves a defined number of sub scopes from a source scope to a target scope, starting at
|
---|
30 | /// the left side of the tree.
|
---|
31 | /// </summary>
|
---|
32 | public class LeftSelector : StochasticSelectorBase {
|
---|
33 | /// <inheritdoc select="summary"/>
|
---|
34 | public override string Description {
|
---|
35 | get { return @"TODO\r\nOperator description still missing ..."; }
|
---|
36 | }
|
---|
37 |
|
---|
38 | /// <summary>
|
---|
39 | /// Copies or moves a number of sub scopes (<paramref name="selected"/>) from <paramref name="source"/>
|
---|
40 | /// starting at the left end to the <paramref name="target"/>.
|
---|
41 | /// </summary>
|
---|
42 | /// <param name="random">A random number generator.</param>
|
---|
43 | /// <param name="source">The source scope from which to copy/move the sub scopes.</param>
|
---|
44 | /// <param name="selected">The number of sub scopes to move. Can be also bigger than the total
|
---|
45 | /// number of sub scopes in <paramref name="source"/>, then the copying process starts again from the
|
---|
46 | /// beginning.</param>
|
---|
47 | /// <param name="target">The target where to copy/move the sub scopes.</param>
|
---|
48 | /// <param name="copySelected">Boolean flag whether the sub scopes shall be copied or moved.</param>
|
---|
49 | protected override void Select(IRandom random, IScope source, int selected, IScope target, bool copySelected) {
|
---|
50 | int index = 0;
|
---|
51 | for (int i = 0; i < selected; i++) {
|
---|
52 | if (copySelected) {
|
---|
53 | target.AddSubScope((IScope)source.SubScopes[index].Clone());
|
---|
54 | index++;
|
---|
55 | if (index >= source.SubScopes.Count) index = 0;
|
---|
56 | } else {
|
---|
57 | IScope s = source.SubScopes[0];
|
---|
58 | source.RemoveSubScope(s);
|
---|
59 | target.AddSubScope(s);
|
---|
60 | }
|
---|
61 | }
|
---|
62 | }
|
---|
63 | }
|
---|
64 | }
|
---|