Line | |
---|
1 | using System;
|
---|
2 | using HEAL.Attic;
|
---|
3 | using HeuristicLab.Common;
|
---|
4 | using HeuristicLab.Encodings.RealVectorEncoding;
|
---|
5 | using HeuristicLab.Optimization;
|
---|
6 |
|
---|
7 | namespace 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.