[14678] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
| 3 | * Copyright (C) 2002-2017 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 |
|
---|
[16728] | 22 | using HEAL.Attic;
|
---|
[14678] | 23 | using HeuristicLab.Common;
|
---|
| 24 | using HeuristicLab.Core;
|
---|
| 25 | using HeuristicLab.Parameters;
|
---|
| 26 |
|
---|
| 27 | namespace HeuristicLab.Analysis.FitnessLandscape {
|
---|
| 28 | [Item("Path-Relinking Problem Instance Analyzer", "Tries to identify the current problem instance being solved by analyzing the output of path-relinking heuristics.")]
|
---|
[16728] | 29 | [StorableType("DF0066FA-022A-465E-95EE-1D829B471423")]
|
---|
[14678] | 30 | public abstract class PrProblemInstanceAnalyzer<T> : ProblemInstanceAnalyzer where T : class, IDeepCloneable {
|
---|
| 31 |
|
---|
| 32 | [Storable]
|
---|
| 33 | private ILookupParameter<DirectedPath<T>> pathsParameter;
|
---|
| 34 | public ILookupParameter<DirectedPath<T>> PathsParameter {
|
---|
| 35 | get { return pathsParameter; }
|
---|
| 36 | }
|
---|
| 37 |
|
---|
| 38 | [StorableConstructor]
|
---|
[16728] | 39 | protected PrProblemInstanceAnalyzer(StorableConstructorFlag _) : base(_) { }
|
---|
[14678] | 40 | protected PrProblemInstanceAnalyzer(PrProblemInstanceAnalyzer<T> original, Cloner cloner)
|
---|
| 41 | : base(original, cloner) {
|
---|
| 42 | pathsParameter = cloner.Clone(original.pathsParameter);
|
---|
| 43 | }
|
---|
| 44 | public PrProblemInstanceAnalyzer() {
|
---|
| 45 | Parameters.Add(pathsParameter = new LookupParameter<DirectedPath<T>>("RelinkedPaths", ""));
|
---|
| 46 | }
|
---|
| 47 | }
|
---|
| 48 | }
|
---|