Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2457_ExpertSystem/HeuristicLab.Analysis.FitnessLandscape/3.3/ProblemInstanceAnalysis/PRProblemInstanceAnalyzer.cs @ 17915

Last change on this file since 17915 was 16958, checked in by abeham, 6 years ago

#2457: adapted to trunk

File size: 2.0 KB
Line 
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
22using HEAL.Attic;
23using HeuristicLab.Common;
24using HeuristicLab.Core;
25using HeuristicLab.Parameters;
26
27namespace 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.")]
29  [StorableType("1CBE2C82-1D1F-4C4E-BEC7-40EC914CB6C6")]
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]
39    protected PrProblemInstanceAnalyzer(StorableConstructorFlag _) : base(_) { }
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}
Note: See TracBrowser for help on using the repository browser.