Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/07/19 23:40:10 (5 years ago)
Author:
mkommend
Message:

#2520: Merged 16565 - 16579 into stable.

Location:
stable
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • stable

  • stable/HeuristicLab.Optimization.Operators/3.3/MultiObjective/CrowdedComparisonSorter.cs

    r15584 r17097  
    11#region License Information
    22/* HeuristicLab
    3  * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
    44 *
    55 * This file is part of HeuristicLab.
     
    2828using HeuristicLab.Operators;
    2929using HeuristicLab.Parameters;
    30 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     30using HEAL.Attic;
    3131
    3232namespace HeuristicLab.Optimization.Operators {
     
    3737  [Item("CrowdedComparisonSorter", @"CrowdedComparisonSorter as described in: Deb, Pratap, Agrawal and Meyarivan, ""A Fast and Elitist Multiobjective
    3838Genetic Algorithm: NSGA-II"", IEEE Transactions On Evolutionary Computation, Vol. 6, No. 2, April 2002.")]
    39   [StorableClass]
     39  [StorableType("48F09742-454D-4BAB-A057-96BDF4ACDCE9")]
    4040  public class CrowdedComparisonSorter : SingleSuccessorOperator {
    4141
     
    4949
    5050    [StorableConstructor]
    51     protected CrowdedComparisonSorter(bool deserializing) : base(deserializing) { }
     51    protected CrowdedComparisonSorter(StorableConstructorFlag _) : base(_) { }
    5252    protected CrowdedComparisonSorter(CrowdedComparisonSorter original, Cloner cloner) : base(original, cloner) { }
    5353    public CrowdedComparisonSorter() {
     
    6969    }
    7070
     71    [StorableType("c16dd393-bd08-4a81-abb5-1b7e918a1038")]
    7172    private class CustomComparer : IComparer<int> {
    7273      ItemArray<IntValue> ranks;
Note: See TracChangeset for help on using the changeset viewer.