- 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/IHR/IHR.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.Common; 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 [Storable Class]27 [StorableType("3DBC1750-FDEA-454C-AF65-EA4337CEE823")] 28 28 public abstract class IHR : MultiObjectiveTestFunction { 29 29 protected override double[,] GetBounds(int objectives) { … … 44 44 45 45 [StorableConstructor] 46 protected IHR( bool deserializing) : base(deserializing) { }46 protected IHR(StorableConstructorFlag _) : base(_) { } 47 47 protected IHR(IHR original, Cloner cloner) : base(original, cloner) { } 48 48 public IHR() : base(minimumObjectives: 2, maximumObjectives: 2, minimumSolutionLength: 2, maximumSolutionLength: int.MaxValue) { } -
stable/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/TestFunctions/IHR/IHR1.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("IHR1", "Testfunction as defined as IHR1 in \"Igel, C., Hansen, N., & Roth, S. (2007). Covariance matrix adaptation for multi-objective optimization. Evolutionary computation, 15(1), 1-28.\" [24.06.16]")] 30 [Storable Class]30 [StorableType("16DF9415-9D12-4FB9-A985-7EEAE05A24CA")] 31 31 public class IHR1 : IHR { 32 32 protected override IEnumerable<double[]> GetOptimalParetoFront(int objectives) { … … 45 45 46 46 [StorableConstructor] 47 protected IHR1( bool deserializing) : base(deserializing) { }47 protected IHR1(StorableConstructorFlag _) : base(_) { } 48 48 protected IHR1(IHR1 original, Cloner cloner) : base(original, cloner) { } 49 49 public IHR1() : base() { -
stable/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/TestFunctions/IHR/IHR2.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("IHR2", "Testfunction as defined as IHR2 in \"Igel, C., Hansen, N., & Roth, S. (2007). Covariance matrix adaptation for multi-objective optimization. Evolutionary computation, 15(1), 1-28.\" [24.06.16]")] 30 [Storable Class]30 [StorableType("3E06E73F-61CD-4B99-99A8-84E6E9C0EFC9")] 31 31 public class IHR2 : IHR { 32 32 protected override IEnumerable<double[]> GetOptimalParetoFront(int objectives) { … … 46 46 47 47 [StorableConstructor] 48 protected IHR2( bool deserializing) : base(deserializing) { }48 protected IHR2(StorableConstructorFlag _) : base(_) { } 49 49 protected IHR2(IHR2 original, Cloner cloner) : base(original, cloner) { } 50 50 public IHR2() : base() { -
stable/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/TestFunctions/IHR/IHR3.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("IHR3", "Testfunction as defined as IHR3 in \"Igel, C., Hansen, N., & Roth, S. (2007). Covariance matrix adaptation for multi-objective optimization. Evolutionary computation, 15(1), 1-28.\" [24.06.16]")] 30 [Storable Class]30 [StorableType("316D5351-762D-4883-ACEF-06F4EAFA73AE")] 31 31 public class IHR3 : IHR { 32 32 protected override IEnumerable<double[]> GetOptimalParetoFront(int objectives) { … … 46 46 47 47 [StorableConstructor] 48 protected IHR3( bool deserializing) : base(deserializing) { }48 protected IHR3(StorableConstructorFlag _) : base(_) { } 49 49 protected IHR3(IHR3 original, Cloner cloner) : base(original, cloner) { } 50 50 public IHR3() : base() { -
stable/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/TestFunctions/IHR/IHR4.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("IHR4", "Testfunction as defined as IHR4 in \"Igel, C., Hansen, N., & Roth, S. (2007). Covariance matrix adaptation for multi-objective optimization. Evolutionary computation, 15(1), 1-28.\" [24.06.16]")] 30 [Storable Class]30 [StorableType("E83A9E6E-F7B3-4B27-B5CA-A323D89844F5")] 31 31 public class IHR4 : IHR { 32 32 protected override IEnumerable<double[]> GetOptimalParetoFront(int objectives) { … … 49 49 50 50 [StorableConstructor] 51 protected IHR4( bool deserializing) : base(deserializing) { }51 protected IHR4(StorableConstructorFlag _) : base(_) { } 52 52 protected IHR4(IHR4 original, Cloner cloner) : base(original, cloner) { } 53 53 public IHR4() : base() { -
stable/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/TestFunctions/IHR/IHR6.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("IHR6", "Testfunction as defined as IHR6 in \"Igel, C., Hansen, N., & Roth, S. (2007). Covariance matrix adaptation for multi-objective optimization. Evolutionary computation, 15(1), 1-28.\" [24.06.16]")] 30 [Storable Class]30 [StorableType("5C0A4163-831B-4507-997F-A70B59E3A445")] 31 31 public class IHR6 : IHR { 32 32 protected override IEnumerable<double[]> GetOptimalParetoFront(int objectives) { … … 45 45 46 46 [StorableConstructor] 47 protected IHR6( bool deserializing) : base(deserializing) { }47 protected IHR6(StorableConstructorFlag _) : base(_) { } 48 48 protected IHR6(IHR6 original, Cloner cloner) : base(original, cloner) { } 49 49 public IHR6() : base() {
Note: See TracChangeset
for help on using the changeset viewer.