[2830] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
| 3 | * Copyright (C) 2002-2010 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;
|
---|
[3376] | 23 | using HeuristicLab.Common;
|
---|
[2830] | 24 | using HeuristicLab.Core;
|
---|
| 25 | using HeuristicLab.Data;
|
---|
| 26 | using HeuristicLab.Operators;
|
---|
| 27 | using HeuristicLab.Parameters;
|
---|
| 28 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
| 29 |
|
---|
[3021] | 30 | namespace HeuristicLab.Optimization.Operators {
|
---|
[2830] | 31 | /// <summary>
|
---|
[3023] | 32 | /// An operator which creates new solutions.
|
---|
[2830] | 33 | /// </summary>
|
---|
[3023] | 34 | [Item("SolutionsCreator", "An operator which creates new solutions.")]
|
---|
[3017] | 35 | [StorableClass]
|
---|
[3023] | 36 | public sealed class SolutionsCreator : SingleSuccessorOperator {
|
---|
[3048] | 37 | public ValueLookupParameter<IntValue> NumberOfSolutionsParameter {
|
---|
| 38 | get { return (ValueLookupParameter<IntValue>)Parameters["NumberOfSolutions"]; }
|
---|
[2830] | 39 | }
|
---|
| 40 | public ValueLookupParameter<IOperator> SolutionCreatorParameter {
|
---|
| 41 | get { return (ValueLookupParameter<IOperator>)Parameters["SolutionCreator"]; }
|
---|
| 42 | }
|
---|
[2882] | 43 | public ValueLookupParameter<IOperator> EvaluatorParameter {
|
---|
| 44 | get { return (ValueLookupParameter<IOperator>)Parameters["Evaluator"]; }
|
---|
[2830] | 45 | }
|
---|
| 46 | private ScopeParameter CurrentScopeParameter {
|
---|
| 47 | get { return (ScopeParameter)Parameters["CurrentScope"]; }
|
---|
| 48 | }
|
---|
| 49 | public IScope CurrentScope {
|
---|
| 50 | get { return CurrentScopeParameter.ActualValue; }
|
---|
| 51 | }
|
---|
[3048] | 52 | public IntValue NumberOfSolutions {
|
---|
[3044] | 53 | get { return NumberOfSolutionsParameter.Value; }
|
---|
| 54 | set { NumberOfSolutionsParameter.Value = value; }
|
---|
| 55 | }
|
---|
[2830] | 56 |
|
---|
[3023] | 57 | public SolutionsCreator()
|
---|
[2830] | 58 | : base() {
|
---|
[3048] | 59 | Parameters.Add(new ValueLookupParameter<IntValue>("NumberOfSolutions", "The number of solutions that should be created."));
|
---|
[2830] | 60 | Parameters.Add(new ValueLookupParameter<IOperator>("SolutionCreator", "The operator which is used to create new solutions."));
|
---|
[2882] | 61 | Parameters.Add(new ValueLookupParameter<IOperator>("Evaluator", "The operator which is used to evaluate new solutions."));
|
---|
[3023] | 62 | Parameters.Add(new ScopeParameter("CurrentScope", "The current scope to which the new solutions are added as sub-scopes."));
|
---|
[2830] | 63 | }
|
---|
| 64 |
|
---|
[2834] | 65 | public override IOperation Apply() {
|
---|
[3023] | 66 | int count = NumberOfSolutionsParameter.ActualValue.Value;
|
---|
[2830] | 67 | IOperator creator = SolutionCreatorParameter.ActualValue;
|
---|
[2882] | 68 | IOperator evaluator = EvaluatorParameter.ActualValue;
|
---|
[2830] | 69 |
|
---|
[3023] | 70 | int current = CurrentScope.SubScopes.Count;
|
---|
| 71 | for (int i = 0; i < count; i++)
|
---|
| 72 | CurrentScope.SubScopes.Add(new Scope((current + i).ToString()));
|
---|
[2830] | 73 |
|
---|
[2834] | 74 | OperationCollection next = new OperationCollection();
|
---|
[3023] | 75 | for (int i = 0; i < count; i++) {
|
---|
| 76 | if (creator != null) next.Add(ExecutionContext.CreateOperation(creator, CurrentScope.SubScopes[current + i]));
|
---|
| 77 | if (evaluator != null) next.Add(ExecutionContext.CreateOperation(evaluator, CurrentScope.SubScopes[current + i]));
|
---|
[2830] | 78 | }
|
---|
| 79 | next.Add(base.Apply());
|
---|
| 80 | return next;
|
---|
| 81 | }
|
---|
| 82 | }
|
---|
| 83 | }
|
---|