- Timestamp:
- 07/07/19 23:40:10 (5 years ago)
- Location:
- stable
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
-
stable/HeuristicLab.Optimization.Operators/3.3/SolutionSimilarityCalculator.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.Data; 28 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;28 using HEAL.Attic; 29 29 30 30 namespace HeuristicLab.Optimization.Operators { … … 33 33 /// </summary> 34 34 [Item("SimilarityCalculator", "A base class for items that perform similarity calculation between two solutions.")] 35 [Storable Class]35 [StorableType("ACDF2895-0C4E-4C34-A091-F41EF5C78241")] 36 36 public abstract class SolutionSimilarityCalculator : Item, ISolutionSimilarityCalculator { 37 37 protected abstract bool IsCommutative { get; } … … 49 49 50 50 [StorableConstructor] 51 protected SolutionSimilarityCalculator( bool deserializing) : base(deserializing) { }51 protected SolutionSimilarityCalculator(StorableConstructorFlag _) : base(_) { } 52 52 53 53 protected SolutionSimilarityCalculator(SolutionSimilarityCalculator original, Cloner cloner)
Note: See TracChangeset
for help on using the changeset viewer.