- Timestamp:
- 07/07/19 23:40:10 (5 years ago)
- Location:
- stable
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
-
stable/HeuristicLab.Problems.VehicleRouting
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Problems.VehicleRouting/3.4/SimilarityCalculators/VRPSimilarityCalculator.cs
r15584 r17097 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 26 26 using HeuristicLab.Core; 27 27 using HeuristicLab.Optimization.Operators; 28 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;28 using HEAL.Attic; 29 29 using HeuristicLab.Problems.VehicleRouting.Encodings.Potvin; 30 30 using HeuristicLab.Problems.VehicleRouting.Interfaces; … … 38 38 /// </remarks> 39 39 [Item("VRPSimilarityCalculator", "An operator which performs similarity calculation between two VRP solutions.")] 40 [Storable Class]40 [StorableType("16011E6B-62F5-4165-9F8D-E4BA5191FB7E")] 41 41 public sealed class VRPSimilarityCalculator : SingleObjectiveSolutionSimilarityCalculator { 42 42 protected override bool IsCommutative { get { return true; } } … … 45 45 public IVRPProblemInstance ProblemInstance { get; set; } 46 46 47 private VRPSimilarityCalculator(bool deserializing) : base(deserializing) { } 47 [StorableConstructor] 48 private VRPSimilarityCalculator(StorableConstructorFlag _) : base(_) { } 48 49 private VRPSimilarityCalculator(VRPSimilarityCalculator original, Cloner cloner) 49 50 : base(original, cloner) {
Note: See TracChangeset
for help on using the changeset viewer.