Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/29/17 14:11:04 (7 years ago)
Author:
bwerth
Message:

#2592 removed effectively unused field "rank" from Individual, removed non-dominated sorting

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/MOCMAEvolutionStrategy/HeuristicLab.Algorithms.MOCMAEvolutionStrategy/3.3/Individual.cs

    r15045 r15089  
    6363    public bool Selected { get; set; }
    6464    [Storable]
    65     public double Rank { get; set; }
    66     [Storable]
    6765    public double SuccessProbability { get; set; }
    6866    #endregion
     
    112110      PenalizedFitness = other.PenalizedFitness != null ? other.PenalizedFitness.Select(x => x).ToArray() : null;
    113111      Selected = other.Selected;
    114       Rank = other.Rank;
    115112      SuccessProbability = other.SuccessProbability;
    116113    }
Note: See TracChangeset for help on using the changeset viewer.