[592] | 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;
|
---|
[583] | 23 | using System.Collections.Generic;
|
---|
| 24 | using System.Linq;
|
---|
| 25 | using System.Text;
|
---|
| 26 | using HeuristicLab.Core;
|
---|
| 27 | using HeuristicLab.Data;
|
---|
| 28 | using HeuristicLab.Evolutionary;
|
---|
| 29 |
|
---|
| 30 | namespace HeuristicLab.SimOpt {
|
---|
| 31 | public class SimOptSquentialSubOperatorCrossover : OperatorBase {
|
---|
| 32 | public override string Description {
|
---|
| 33 | get { return @"Takes the parameter vector of two items and on each index applies the respectively indexed suboperator"; }
|
---|
| 34 | }
|
---|
| 35 |
|
---|
| 36 | public SimOptSquentialSubOperatorCrossover()
|
---|
| 37 | : base() {
|
---|
| 38 | AddVariableInfo(new VariableInfo("Items", "The parameter vector", typeof(ConstrainedItemList), VariableKind.In | VariableKind.New));
|
---|
| 39 | AddVariableInfo(new VariableInfo("Parents", "The number of parents per child", typeof(IntData), VariableKind.In));
|
---|
| 40 | }
|
---|
| 41 |
|
---|
| 42 | public override IOperation Apply(IScope scope) {
|
---|
| 43 | int parents = GetVariableValue<IntData>("Parents", scope, true).Data;
|
---|
| 44 |
|
---|
| 45 | int subScopesCount = scope.SubScopes.Count;
|
---|
| 46 | if (subScopesCount < parents || (subScopesCount % parents) != 0)
|
---|
| 47 | throw new InvalidOperationException("Size of mating pool is not a multiple (>1) of the number of parents per child");
|
---|
| 48 | int children = subScopesCount / parents;
|
---|
| 49 |
|
---|
| 50 | CompositeOperation co = new CompositeOperation();
|
---|
| 51 | for (int i = 0; i < SubOperators.Count; i++) {
|
---|
| 52 | if (SubOperators[i].GetVariable("Index") != null) {
|
---|
| 53 | SubOperators[i].GetVariable("Index").Value = new IntData(i);
|
---|
| 54 | }
|
---|
| 55 | if (SubOperators[i].GetVariableInfo("Items") != null) {
|
---|
| 56 | SubOperators[i].GetVariableInfo("Items").ActualName = GetVariableInfo("Items").ActualName;
|
---|
| 57 | }
|
---|
| 58 | }
|
---|
| 59 | for (int i = 0; i < children; i++) {
|
---|
| 60 | IScope child = (IScope)scope.SubScopes[0].Clone();
|
---|
| 61 | for (int j = 0; j < parents; j++) {
|
---|
| 62 | IScope parent = scope.SubScopes[0];
|
---|
| 63 | child.AddSubScope(parent);
|
---|
| 64 | scope.RemoveSubScope(parent);
|
---|
| 65 | }
|
---|
| 66 | scope.AddSubScope(child);
|
---|
| 67 | for (int n = 0 ; n < SubOperators.Count ; n++)
|
---|
| 68 | co.AddOperation(new AtomicOperation(SubOperators[n], child));
|
---|
[597] | 69 | co.AddOperation(new AtomicOperation(new SubScopesRemover(), child));
|
---|
[583] | 70 | }
|
---|
| 71 | return co;
|
---|
| 72 | }
|
---|
| 73 | }
|
---|
| 74 | }
|
---|