Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/26/14 16:32:44 (10 years ago)
Author:
pfleck
Message:

#2208

  • Added missing PluginDependencies.
  • Sealed some classes.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Problems.Orienteering/HeuristicLab.Problems.Orienteering/3.3/Creators/GreedyOrienteeringTourCreator.cs

    r11228 r11307  
    3636points from this list at the first position in which they can feasibly be inserted. (Schilde et. al. 2009)")]
    3737  [StorableClass]
    38   public class GreedyOrienteeringTourCreator : IntegerVectorCreator {
     38  public sealed class GreedyOrienteeringTourCreator : IntegerVectorCreator {
    3939    public override bool CanChangeName { get { return false; } }
    4040
     
    6161
    6262    [StorableConstructor]
    63     protected GreedyOrienteeringTourCreator(bool deserializing)
     63    private GreedyOrienteeringTourCreator(bool deserializing)
    6464      : base(deserializing) { }
    65     protected GreedyOrienteeringTourCreator(GreedyOrienteeringTourCreator original, Cloner cloner)
     65    private GreedyOrienteeringTourCreator(GreedyOrienteeringTourCreator original, Cloner cloner)
    6666      : base(original, cloner) { }
    6767
Note: See TracChangeset for help on using the changeset viewer.