[14429] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
| 3 | * Copyright (C) 2002-2016 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 HeuristicLab.Common;
|
---|
| 23 | using HeuristicLab.Core;
|
---|
| 24 | using HeuristicLab.Optimization;
|
---|
| 25 | using HeuristicLab.Optimization.Algorithms.SingleObjective;
|
---|
| 26 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
| 27 |
|
---|
| 28 | namespace HeuristicLab.Algorithms.LocalSearch {
|
---|
| 29 | [Item("LocalSearchContext", "")]
|
---|
| 30 | [StorableClass]
|
---|
| 31 | public class LocalSearchContext<TProblem, TEncoding, TSolution> : HeuristicAlgorithmContext<TProblem, TEncoding, TSolution>,
|
---|
| 32 | ISingleObjectiveSolutionContext<TSolution>, IImprovementStepsContext, IIterationsContext
|
---|
| 33 | where TProblem : class, ISingleObjectiveProblem<TEncoding, TSolution>, ISingleObjectiveProblemDefinition<TEncoding, TSolution> // need both !?
|
---|
| 34 | where TEncoding : class, IEncoding<TSolution>
|
---|
| 35 | where TSolution: class, ISolution {
|
---|
| 36 |
|
---|
| 37 | [Storable]
|
---|
| 38 | private ISingleObjectiveSolutionScope<TSolution> solution;
|
---|
| 39 | public ISingleObjectiveSolutionScope<TSolution> Solution {
|
---|
| 40 | get { return solution; }
|
---|
| 41 | set {
|
---|
| 42 | solution = value;
|
---|
| 43 | if (Scope.SubScopes.Count == 0)
|
---|
| 44 | Scope.SubScopes.Add(solution);
|
---|
| 45 | else Scope.SubScopes[0] = solution;
|
---|
| 46 | }
|
---|
| 47 | }
|
---|
| 48 |
|
---|
| 49 | [Storable]
|
---|
| 50 | private int iterations;
|
---|
| 51 | public int Iterations {
|
---|
| 52 | get { return iterations; }
|
---|
| 53 | set { iterations = value; }
|
---|
| 54 | }
|
---|
| 55 |
|
---|
| 56 | [Storable]
|
---|
| 57 | private int improvementSteps;
|
---|
| 58 | public int ImprovementSteps {
|
---|
| 59 | get { return improvementSteps; }
|
---|
| 60 | set { improvementSteps = value; }
|
---|
| 61 | }
|
---|
| 62 |
|
---|
| 63 | [StorableConstructor]
|
---|
| 64 | private LocalSearchContext(bool deserializing) : base(deserializing) { }
|
---|
| 65 | private LocalSearchContext(LocalSearchContext<TProblem, TEncoding, TSolution> original, Cloner cloner)
|
---|
| 66 | : base(original, cloner) { }
|
---|
| 67 | public LocalSearchContext() { }
|
---|
| 68 |
|
---|
| 69 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
| 70 | return new LocalSearchContext<TProblem, TEncoding, TSolution>(this, cloner);
|
---|
| 71 | }
|
---|
| 72 |
|
---|
| 73 | IScope ISolutionContext.Solution { get { return solution; } }
|
---|
| 74 | ISolutionScope<TSolution> ISolutionContext<TSolution>.Solution { get { return solution; } }
|
---|
| 75 | }
|
---|
| 76 | }
|
---|