Changeset 16462 for branches/2520_PersistenceReintegration/HeuristicLab.Optimization.Operators/3.3/MultiObjective/CrowdedComparisonSorter.cs
- Timestamp:
- 12/28/18 16:10:48 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2520_PersistenceReintegration/HeuristicLab.Optimization.Operators/3.3/MultiObjective/CrowdedComparisonSorter.cs
r16453 r16462 28 28 using HeuristicLab.Operators; 29 29 using HeuristicLab.Parameters; 30 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;30 using HEAL.Fossil; 31 31 32 32 namespace HeuristicLab.Optimization.Operators { … … 37 37 [Item("CrowdedComparisonSorter", @"CrowdedComparisonSorter as described in: Deb, Pratap, Agrawal and Meyarivan, ""A Fast and Elitist Multiobjective 38 38 Genetic Algorithm: NSGA-II"", IEEE Transactions On Evolutionary Computation, Vol. 6, No. 2, April 2002.")] 39 [Storable Class]39 [StorableType("48F09742-454D-4BAB-A057-96BDF4ACDCE9")] 40 40 public class CrowdedComparisonSorter : SingleSuccessorOperator { 41 41 … … 49 49 50 50 [StorableConstructor] 51 protected CrowdedComparisonSorter( bool deserializing) : base(deserializing) { }51 protected CrowdedComparisonSorter(StorableConstructorFlag _) : base(_) { } 52 52 protected CrowdedComparisonSorter(CrowdedComparisonSorter original, Cloner cloner) : base(original, cloner) { } 53 53 public CrowdedComparisonSorter() {
Note: See TracChangeset
for help on using the changeset viewer.