Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/06/20 14:36:43 (4 years ago)
Author:
dleko
Message:

#2825 Be able to copy and store NSGA3 executions.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2825-NSGA3/HeuristicLab.Algorithms.NSGA3/3.3/Solution.cs

    r17692 r17719  
    1010    {
    1111        // Chromosome
     12        [Storable]
    1213        public RealVector Chromosome { get; set; }
    1314
    1415        // actual fitness of solution as given by Problem
     16        [Storable]
    1517        public double[] Fitness { get; set; }
    1618
    1719        // normalized fitness used in selection process (in order to not overwrite the original Fitness)
     20        [Storable]
    1821        public double[] ConvertedFitness { get; set; }
     22
     23        [StorableConstructor]
     24        public Solution(StorableConstructorFlag _)
     25        {
     26        }
    1927
    2028        public Solution(RealVector chromosome)
Note: See TracChangeset for help on using the changeset viewer.