Changeset 12721 for branches/HeuristicLab.Problems.Orienteering/HeuristicLab.Problems.Orienteering/3.3/Analyzers/BestOrienteeringSolutionAnalyzer.cs
- Timestamp:
- 07/10/15 16:38:17 (9 years ago)
- Location:
- branches/HeuristicLab.Problems.Orienteering/HeuristicLab.Problems.Orienteering/3.3
- Files:
-
- 1 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Problems.Orienteering/HeuristicLab.Problems.Orienteering/3.3
- Property svn:ignore
-
old new 2 2 obj 3 3 Plugin.cs 4 *.DotSettings
-
- Property svn:ignore
-
branches/HeuristicLab.Problems.Orienteering/HeuristicLab.Problems.Orienteering/3.3/Analyzers/BestOrienteeringSolutionAnalyzer.cs
r12693 r12721 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 4Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 31 31 32 32 namespace HeuristicLab.Problems.Orienteering { 33 public sealed class BestOrienteeringSolutionAnaly ser : SingleSuccessorOperator, IAnalyzer {33 public sealed class BestOrienteeringSolutionAnalyzer : SingleSuccessorOperator, IAnalyzer { 34 34 public bool EnabledByDefault { 35 35 get { return true; } … … 78 78 79 79 [StorableConstructor] 80 private BestOrienteeringSolutionAnaly ser(bool deserializing) : base(deserializing) { }81 private BestOrienteeringSolutionAnaly ser(BestOrienteeringSolutionAnalyser original, Cloner cloner) : base(original, cloner) { }80 private BestOrienteeringSolutionAnalyzer(bool deserializing) : base(deserializing) { } 81 private BestOrienteeringSolutionAnalyzer(BestOrienteeringSolutionAnalyzer original, Cloner cloner) : base(original, cloner) { } 82 82 public override IDeepCloneable Clone(Cloner cloner) { 83 return new BestOrienteeringSolutionAnaly ser(this, cloner);83 return new BestOrienteeringSolutionAnalyzer(this, cloner); 84 84 } 85 public BestOrienteeringSolutionAnaly ser()85 public BestOrienteeringSolutionAnalyzer() 86 86 : base() { 87 87 Parameters.Add(new ScopeTreeLookupParameter<IntegerVector>("IntegerVector", "The Orienteering solutions which should be analysed."));
Note: See TracChangeset
for help on using the changeset viewer.