- Timestamp:
- 07/07/19 23:40:10 (5 years ago)
- Location:
- stable
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
-
stable/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/TestFunctions/ZDT/ZDT.cs
r15584 r17097 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 23 23 using HeuristicLab.Common; 24 24 using HeuristicLab.Encodings.RealVectorEncoding; 25 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;25 using HEAL.Attic; 26 26 27 27 namespace HeuristicLab.Problems.TestFunctions.MultiObjective { 28 [Storable Class]28 [StorableType("A8192C08-A1DA-479A-9381-9B634761B521")] 29 29 public abstract class ZDT : MultiObjectiveTestFunction { 30 30 protected override IEnumerable<double[]> GetOptimalParetoFront(int objectives) { … … 49 49 50 50 [StorableConstructor] 51 protected ZDT( bool deserializing) : base(deserializing) { }51 protected ZDT(StorableConstructorFlag _) : base(_) { } 52 52 protected ZDT(MultiObjectiveTestFunction original, Cloner cloner) 53 53 : base(original, cloner) { -
stable/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/TestFunctions/ZDT/ZDT1.cs
r15584 r17097 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 23 23 using HeuristicLab.Core; 24 24 using HeuristicLab.Encodings.RealVectorEncoding; 25 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;25 using HEAL.Attic; 26 26 27 27 namespace HeuristicLab.Problems.TestFunctions.MultiObjective { 28 28 [Item("ZDT1", "ZDT1 function as defined in http://www.tik.ee.ethz.ch/sop/download/supplementary/testproblems/ [30.11.2015]")] 29 [Storable Class]29 [StorableType("5F62D1CB-4EC5-4C89-B168-25DF1F549CCA")] 30 30 public class ZDT1 : ZDT { 31 31 protected override double GetBestKnownHypervolume(int objectives) { … … 34 34 35 35 [StorableConstructor] 36 protected ZDT1( bool deserializing) : base(deserializing) { }36 protected ZDT1(StorableConstructorFlag _) : base(_) { } 37 37 protected ZDT1(ZDT1 original, Cloner cloner) : base(original, cloner) { } 38 38 public override IDeepCloneable Clone(Cloner cloner) { -
stable/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/TestFunctions/ZDT/ZDT2.cs
r15584 r17097 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 22 22 using HeuristicLab.Core; 23 23 using HeuristicLab.Encodings.RealVectorEncoding; 24 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;24 using HEAL.Attic; 25 25 26 26 namespace HeuristicLab.Problems.TestFunctions.MultiObjective { 27 27 [Item("ZDT2", "ZDT2 function as defined in http://www.tik.ee.ethz.ch/sop/download/supplementary/testproblems/ [30.11.2015]")] 28 [Storable Class]28 [StorableType("82C93549-F1D6-4034-96B1-A3AC1E213127")] 29 29 public class ZDT2 : ZDT { 30 30 protected override double GetBestKnownHypervolume(int objectives) { … … 33 33 34 34 [StorableConstructor] 35 protected ZDT2( bool deserializing) : base(deserializing) { }35 protected ZDT2(StorableConstructorFlag _) : base(_) { } 36 36 protected ZDT2(ZDT2 original, Cloner cloner) : base(original, cloner) { } 37 37 public override IDeepCloneable Clone(Cloner cloner) { -
stable/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/TestFunctions/ZDT/ZDT3.cs
r15584 r17097 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 23 23 using HeuristicLab.Core; 24 24 using HeuristicLab.Encodings.RealVectorEncoding; 25 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;25 using HEAL.Attic; 26 26 27 27 namespace HeuristicLab.Problems.TestFunctions.MultiObjective { 28 28 [Item("ZDT3", "ZDT3 function as defined in http://www.tik.ee.ethz.ch/sop/download/supplementary/testproblems/ [30.11.2015]")] 29 [Storable Class]29 [StorableType("89C250F4-DC30-4852-AE6E-E3936569A2BA")] 30 30 public class ZDT3 : ZDT { 31 31 protected override double GetBestKnownHypervolume(int objectives) { … … 34 34 35 35 [StorableConstructor] 36 protected ZDT3( bool deserializing) : base(deserializing) { }36 protected ZDT3(StorableConstructorFlag _) : base(_) { } 37 37 protected ZDT3(ZDT3 original, Cloner cloner) : base(original, cloner) { } 38 38 public override IDeepCloneable Clone(Cloner cloner) { -
stable/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/TestFunctions/ZDT/ZDT4.cs
r15584 r17097 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 23 23 using HeuristicLab.Core; 24 24 using HeuristicLab.Encodings.RealVectorEncoding; 25 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;25 using HEAL.Attic; 26 26 27 27 namespace HeuristicLab.Problems.TestFunctions.MultiObjective { 28 28 [Item("ZDT4", "ZDT4 function as defined in http://www.tik.ee.ethz.ch/sop/download/supplementary/testproblems/ [30.11.2015]")] 29 [Storable Class]29 [StorableType("489FC6F2-A461-4A0A-A5D2-145598A43283")] 30 30 public class ZDT4 : ZDT { 31 31 protected override double[,] GetBounds(int objectives) { … … 44 44 45 45 [StorableConstructor] 46 protected ZDT4( bool deserializing) : base(deserializing) { }46 protected ZDT4(StorableConstructorFlag _) : base(_) { } 47 47 protected ZDT4(ZDT4 original, Cloner cloner) : base(original, cloner) { } 48 48 public override IDeepCloneable Clone(Cloner cloner) { -
stable/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/TestFunctions/ZDT/ZDT6.cs
r15584 r17097 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 23 23 using HeuristicLab.Core; 24 24 using HeuristicLab.Encodings.RealVectorEncoding; 25 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;25 using HEAL.Attic; 26 26 27 27 namespace HeuristicLab.Problems.TestFunctions.MultiObjective { 28 28 [Item("ZDT6", "ZDT6 function as defined in http://www.tik.ee.ethz.ch/sop/download/supplementary/testproblems/ [30.11.2015]")] 29 [Storable Class]29 [StorableType("7F442B29-9A07-487E-BAAB-CBE2D683E421")] 30 30 public class ZDT6 : ZDT { 31 31 protected override double GetBestKnownHypervolume(int objectives) { … … 34 34 35 35 [StorableConstructor] 36 protected ZDT6( bool deserializing) : base(deserializing) { }36 protected ZDT6(StorableConstructorFlag _) : base(_) { } 37 37 protected ZDT6(ZDT6 original, Cloner cloner) : base(original, cloner) { } 38 38 public override IDeepCloneable Clone(Cloner cloner) {
Note: See TracChangeset
for help on using the changeset viewer.