Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Optimization.Operators/3.3/SolutionsCreator.cs @ 3376

Last change on this file since 3376 was 3376, checked in by swagner, 14 years ago

Moved interfaces and classes for deep cloning from HeuristicLab.Core to HeuristicLab.Common (#975).

File size: 3.6 KB
Line 
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
22using System;
23using HeuristicLab.Common;
24using HeuristicLab.Core;
25using HeuristicLab.Data;
26using HeuristicLab.Operators;
27using HeuristicLab.Parameters;
28using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
29
30namespace HeuristicLab.Optimization.Operators {
31  /// <summary>
32  /// An operator which creates new solutions.
33  /// </summary>
34  [Item("SolutionsCreator", "An operator which creates new solutions.")]
35  [StorableClass]
36  public sealed class SolutionsCreator : SingleSuccessorOperator {
37    public ValueLookupParameter<IntValue> NumberOfSolutionsParameter {
38      get { return (ValueLookupParameter<IntValue>)Parameters["NumberOfSolutions"]; }
39    }
40    public ValueLookupParameter<IOperator> SolutionCreatorParameter {
41      get { return (ValueLookupParameter<IOperator>)Parameters["SolutionCreator"]; }
42    }
43    public ValueLookupParameter<IOperator> EvaluatorParameter {
44      get { return (ValueLookupParameter<IOperator>)Parameters["Evaluator"]; }
45    }
46    private ScopeParameter CurrentScopeParameter {
47      get { return (ScopeParameter)Parameters["CurrentScope"]; }
48    }
49    public IScope CurrentScope {
50      get { return CurrentScopeParameter.ActualValue; }
51    }
52    public IntValue NumberOfSolutions {
53      get { return NumberOfSolutionsParameter.Value; }
54      set { NumberOfSolutionsParameter.Value = value; }
55    }
56
57    public SolutionsCreator()
58      : base() {
59      Parameters.Add(new ValueLookupParameter<IntValue>("NumberOfSolutions", "The number of solutions that should be created."));
60      Parameters.Add(new ValueLookupParameter<IOperator>("SolutionCreator", "The operator which is used to create new solutions."));
61      Parameters.Add(new ValueLookupParameter<IOperator>("Evaluator", "The operator which is used to evaluate new solutions."));
62      Parameters.Add(new ScopeParameter("CurrentScope", "The current scope to which the new solutions are added as sub-scopes."));
63    }
64
65    public override IOperation Apply() {
66      int count = NumberOfSolutionsParameter.ActualValue.Value;
67      IOperator creator = SolutionCreatorParameter.ActualValue;
68      IOperator evaluator = EvaluatorParameter.ActualValue;
69
70      int current = CurrentScope.SubScopes.Count;
71      for (int i = 0; i < count; i++)
72        CurrentScope.SubScopes.Add(new Scope((current + i).ToString()));
73
74      OperationCollection next = new OperationCollection();
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]));
78      }
79      next.Add(base.Apply());
80      return next;
81    }
82  }
83}
Note: See TracBrowser for help on using the repository browser.