Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2825-NSGA3/HeuristicLab.Algorithms.NSGA3/3.3/Solution.cs @ 17557

Last change on this file since 17557 was 17557, checked in by dleko, 4 years ago

#2825: Add parameters for algorithm.

File size: 978 bytes
Line 
1using System;
2using HEAL.Attic;
3using HeuristicLab.Common;
4using HeuristicLab.Encodings.RealVectorEncoding;
5using HeuristicLab.Optimization;
6
7namespace HeuristicLab.Algorithms.NSGA3
8{
9    public class Solution : Individual, IDeepCloneable
10    {
11        // Chromosome
12        public RealVector Chromosome { get; set; }
13
14        // Fitness
15        public double[] Fitness { get; set; }
16
17        public Solution(StorableConstructorFlag _) : base(_)
18        {
19        }
20
21        public IDeepCloneable Clone(Cloner cloner)
22        {
23            throw new NotImplementedException();
24        }
25
26        public object Clone()
27        {
28            throw new NotImplementedException();
29        }
30
31        public override TEncoding GetEncoding<TEncoding>()
32        {
33            throw new NotImplementedException();
34        }
35
36        public override Individual Copy()
37        {
38            throw new NotImplementedException();
39        }
40    }
41}
Note: See TracBrowser for help on using the repository browser.