- Timestamp:
- 07/07/19 23:40:10 (5 years ago)
- Location:
- stable
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
-
stable/HeuristicLab.Algorithms.RAPGA/3.3/DuplicatesSelector.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.Optimization; 27 27 using HeuristicLab.Parameters; 28 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;28 using HEAL.Attic; 29 29 using HeuristicLab.Selection; 30 30 … … 37 37 /// </remarks> 38 38 [Item("DuplicatesSelector", "A selection operator which considers a single solution representation and selects duplicates. The remaining scope then contains unique solutions and the selected scope their duplicates.")] 39 [Storable Class]39 [StorableType("08446059-0FB3-4B20-9D70-B73F2EEC2AAF")] 40 40 public sealed class DuplicatesSelector : SingleObjectiveSelector { 41 41 public IValueLookupParameter<ISolutionSimilarityCalculator> SimilarityCalculatorParameter { … … 44 44 45 45 [StorableConstructor] 46 private DuplicatesSelector( bool deserializing) : base(deserializing) { }46 private DuplicatesSelector(StorableConstructorFlag _) : base(_) { } 47 47 private DuplicatesSelector(DuplicatesSelector original, Cloner cloner) : base(original, cloner) { } 48 48 public DuplicatesSelector()
Note: See TracChangeset
for help on using the changeset viewer.