Changeset 17097 for stable/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/TestFunctions/Misc
- 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/Misc/CIGTAB.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. … … 24 24 using HeuristicLab.Core; 25 25 using HeuristicLab.Encodings.RealVectorEncoding; 26 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;26 using HEAL.Attic; 27 27 28 28 namespace HeuristicLab.Problems.TestFunctions.MultiObjective { 29 29 [Item("CIGTAB", "to be aded")] 30 [Storable Class]30 [StorableType("1D78E29D-4697-44A1-8A53-3909E3B7D57D")] 31 31 public class CIGTAB : MultiObjectiveTestFunction { 32 32 protected override double[,] GetBounds(int objectives) { … … 58 58 59 59 [StorableConstructor] 60 protected CIGTAB( bool deserializing) : base(deserializing) { }60 protected CIGTAB(StorableConstructorFlag _) : base(_) { } 61 61 protected CIGTAB(CIGTAB original, Cloner cloner) : base(original, cloner) { } 62 62 public override IDeepCloneable Clone(Cloner cloner) { -
stable/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/TestFunctions/Misc/ELLI1.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. … … 24 24 using HeuristicLab.Core; 25 25 using HeuristicLab.Encodings.RealVectorEncoding; 26 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;26 using HEAL.Attic; 27 27 28 28 namespace HeuristicLab.Problems.TestFunctions.MultiObjective { 29 29 [Item("ELLI", "to be aded")] 30 [Storable Class]30 [StorableType("C4F3378F-169B-412C-8882-D733EF5388D9")] 31 31 public class ELLI : MultiObjectiveTestFunction { 32 32 protected override double[,] GetBounds(int objectives) { … … 58 58 59 59 [StorableConstructor] 60 protected ELLI( bool deserializing) : base(deserializing) { }60 protected ELLI(StorableConstructorFlag _) : base(_) { } 61 61 protected ELLI(ELLI original, Cloner cloner) : base(original, cloner) { } 62 62 public override IDeepCloneable Clone(Cloner cloner) { -
stable/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/TestFunctions/Misc/Fonseca.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. … … 25 25 using HeuristicLab.Core; 26 26 using HeuristicLab.Encodings.RealVectorEncoding; 27 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;27 using HEAL.Attic; 28 28 29 29 namespace HeuristicLab.Problems.TestFunctions.MultiObjective { 30 30 [Item("Fonseca", "Fonseca and Flemming function from // https://en.wikipedia.org/wiki/Test_functions_for_optimization [30.11.2015]")] 31 [Storable Class]31 [StorableType("CBB43DEB-9DD2-4365-A3CF-18F89F2A47B0")] 32 32 public class Fonseca : MultiObjectiveTestFunction { 33 33 protected override double[,] GetBounds(int objectives) { … … 52 52 53 53 [StorableConstructor] 54 protected Fonseca( bool deserializing) : base(deserializing) { }54 protected Fonseca(StorableConstructorFlag _) : base(_) { } 55 55 protected Fonseca(Fonseca original, Cloner cloner) : base(original, cloner) { } 56 56 public override IDeepCloneable Clone(Cloner cloner) { -
stable/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/TestFunctions/Misc/Kursawe.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. … … 24 24 using HeuristicLab.Core; 25 25 using HeuristicLab.Encodings.RealVectorEncoding; 26 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;26 using HEAL.Attic; 27 27 28 28 namespace HeuristicLab.Problems.TestFunctions.MultiObjective { 29 29 [Item("Kursawe", "Kursawe function from // http://darwin.di.uminho.pt/jecoli/index.php/Multiobjective_example [30.11.2015]")] 30 [Storable Class]30 [StorableType("9D38092B-2C55-450E-A27A-2C28714745ED")] 31 31 public class Kursawe : MultiObjectiveTestFunction { 32 32 protected override double[,] GetBounds(int objectives) { … … 51 51 52 52 [StorableConstructor] 53 protected Kursawe( bool deserializing) : base(deserializing) { }53 protected Kursawe(StorableConstructorFlag _) : base(_) { } 54 54 protected Kursawe(Kursawe original, Cloner cloner) : base(original, cloner) { } 55 55 public override IDeepCloneable Clone(Cloner cloner) { -
stable/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/TestFunctions/Misc/SchafferN1.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. … … 24 24 using HeuristicLab.Core; 25 25 using HeuristicLab.Encodings.RealVectorEncoding; 26 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;26 using HEAL.Attic; 27 27 28 28 namespace HeuristicLab.Problems.TestFunctions.MultiObjective { 29 29 [Item("SchafferN1", "Schaffer function N.1 for mulitobjective optimization from // https://en.wikipedia.org/wiki/Test_functions_for_optimization [30.11.2015]")] 30 [Storable Class]30 [StorableType("A676EB9C-ECA8-40D7-BA16-ADDDDD482092")] 31 31 public class SchafferN1 : MultiObjectiveTestFunction { 32 32 protected override double[,] GetBounds(int objectives) { … … 52 52 53 53 [StorableConstructor] 54 protected SchafferN1( bool deserializing) : base(deserializing) { }54 protected SchafferN1(StorableConstructorFlag _) : base(_) { } 55 55 protected SchafferN1(SchafferN1 original, Cloner cloner) : base(original, cloner) { } 56 56 public override IDeepCloneable Clone(Cloner cloner) { -
stable/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/TestFunctions/Misc/SchafferN2.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. … … 24 24 using HeuristicLab.Core; 25 25 using HeuristicLab.Encodings.RealVectorEncoding; 26 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;26 using HEAL.Attic; 27 27 28 28 namespace HeuristicLab.Problems.TestFunctions.MultiObjective { 29 29 [Item("SchafferN2", "Schaffer function N.2 for mulitobjective optimization from // https://en.wikipedia.org/wiki/Test_functions_for_optimization [30.11.2015]")] 30 [Storable Class]30 [StorableType("CCF2BA5F-BBE5-4280-ABC7-10C02EF947CB")] 31 31 public class SchafferN2 : MultiObjectiveTestFunction { 32 32 protected override double[,] GetBounds(int objectives) { … … 48 48 49 49 [StorableConstructor] 50 protected SchafferN2( bool deserializing) : base(deserializing) { }50 protected SchafferN2(StorableConstructorFlag _) : base(_) { } 51 51 protected SchafferN2(SchafferN2 original, Cloner cloner) : base(original, cloner) { } 52 52 public override IDeepCloneable Clone(Cloner cloner) {
Note: See TracChangeset
for help on using the changeset viewer.