using System; using HEAL.Attic; using HeuristicLab.Common; using HeuristicLab.Encodings.RealVectorEncoding; using HeuristicLab.Optimization; namespace HeuristicLab.Algorithms.NSGA3 { public class Solution : Individual, IDeepCloneable { // Chromosome public RealVector Chromosome { get; set; } // Fitness public double[] Fitness { get; set; } public Solution(StorableConstructorFlag _) : base(_) { } public IDeepCloneable Clone(Cloner cloner) { throw new NotImplementedException(); } public object Clone() { throw new NotImplementedException(); } public override TEncoding GetEncoding() { throw new NotImplementedException(); } public override Individual Copy() { throw new NotImplementedException(); } } }