- Timestamp:
- 01/28/19 13:41:42 (6 years ago)
- Location:
- trunk
- Files:
-
- 30 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
/branches/2520_PersistenceReintegration (added) merged: 16451-16454,16462,16465-16468,16470-16472,16474,16476-16477,16479-16487,16529-16530,16539,16551-16555,16558-16559,16562-16564
- Property svn:mergeinfo changed
-
trunk/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/TestFunctions/DTLZ/DTLZ.cs
r15583 r16565 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("3ED6C22E-EA6E-4336-BC49-884CE151E514")] 29 29 public abstract class DTLZ : MultiObjectiveTestFunction { 30 30 protected override IEnumerable<double[]> GetOptimalParetoFront(int objectives) { … … 50 50 51 51 [StorableConstructor] 52 protected DTLZ( bool deserializing) : base(deserializing) { }52 protected DTLZ(StorableConstructorFlag _) : base(_) { } 53 53 protected DTLZ(DTLZ original, Cloner cloner) : base(original, cloner) { } 54 54 public DTLZ() : base(minimumObjectives: 2, maximumObjectives: int.MaxValue, minimumSolutionLength: 2, maximumSolutionLength: int.MaxValue) { } -
trunk/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/TestFunctions/DTLZ/DTLZ1.cs
r15583 r16565 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("DTLZ1", "Testfunction as defined as DTLZ1 in http://repository.ias.ac.in/81671/ [30.11.15]")] 29 [Storable Class]29 [StorableType("1DBE5FE4-049B-4BAD-AE2B-4951D0D3D616")] 30 30 public class DTLZ1 : DTLZ { 31 31 protected override double GetBestKnownHypervolume(int objectives) { … … 35 35 36 36 [StorableConstructor] 37 protected DTLZ1( bool deserializing) : base(deserializing) { }37 protected DTLZ1(StorableConstructorFlag _) : base(_) { } 38 38 protected DTLZ1(DTLZ1 original, Cloner cloner) : base(original, cloner) { } 39 39 public DTLZ1() : base() { -
trunk/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/TestFunctions/DTLZ/DTLZ2.cs
r15583 r16565 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("DTLZ2", "Testfunction as defined as DTLZ2 in http://repository.ias.ac.in/81671/ [30.11.15]")] 29 [Storable Class]29 [StorableType("C5BB2CA1-DB97-4D2E-BDB2-C9F2572D45DF")] 30 30 public class DTLZ2 : DTLZ { 31 31 protected override double GetBestKnownHypervolume(int objectives) { … … 35 35 36 36 [StorableConstructor] 37 protected DTLZ2( bool deserializing) : base(deserializing) { }37 protected DTLZ2(StorableConstructorFlag _) : base(_) { } 38 38 protected DTLZ2(DTLZ2 original, Cloner cloner) : base(original, cloner) { } 39 39 public DTLZ2() : base() { } -
trunk/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/TestFunctions/DTLZ/DTLZ3.cs
r15583 r16565 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("DTLZ3", "Testfunction as defined as DTLZ3 in http://repository.ias.ac.in/81671/ [30.11.15]")] 29 [Storable Class]29 [StorableType("0B225A81-61B0-4716-8373-33CE07A58920")] 30 30 public class DTLZ3 : DTLZ { 31 31 protected override double GetBestKnownHypervolume(int objectives) { … … 35 35 36 36 [StorableConstructor] 37 protected DTLZ3( bool deserializing) : base(deserializing) { }37 protected DTLZ3(StorableConstructorFlag _) : base(_) { } 38 38 protected DTLZ3(DTLZ3 original, Cloner cloner) : base(original, cloner) { } 39 39 public DTLZ3() : base() { } -
trunk/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/TestFunctions/DTLZ/DTLZ4.cs
r15583 r16565 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("DTLZ4", "Testfunction as defined as DTLZ4 in http://repository.ias.ac.in/81671/ [30.11.15]")] 29 [Storable Class]29 [StorableType("2222AE43-E24A-4D30-93F3-496A1FE79B29")] 30 30 public class DTLZ4 : DTLZ { 31 31 protected override double GetBestKnownHypervolume(int objectives) { … … 35 35 36 36 [StorableConstructor] 37 protected DTLZ4( bool deserializing) : base(deserializing) { }37 protected DTLZ4(StorableConstructorFlag _) : base(_) { } 38 38 protected DTLZ4(DTLZ4 original, Cloner cloner) : base(original, cloner) { } 39 39 public DTLZ4() : base() { } -
trunk/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/TestFunctions/DTLZ/DTLZ5.cs
r15583 r16565 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("DTLZ5", "Testfunction as defined as DTLZ5 in http://repository.ias.ac.in/81671/ [30.11.15]")] 29 [Storable Class]29 [StorableType("CEFD068E-521B-459F-80F1-B2AE4D114D41")] 30 30 public class DTLZ5 : DTLZ { 31 31 32 32 [StorableConstructor] 33 protected DTLZ5( bool deserializing) : base(deserializing) { }33 protected DTLZ5(StorableConstructorFlag _) : base(_) { } 34 34 protected DTLZ5(DTLZ5 original, Cloner cloner) : base(original, cloner) { } 35 35 public override IDeepCloneable Clone(Cloner cloner) { -
trunk/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/TestFunctions/DTLZ/DTLZ6.cs
r15583 r16565 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("DTLZ6", "Testfunction as defined as DTLZ5 in http://repository.ias.ac.in/81671/ [30.11.15]")] 29 [Storable Class]29 [StorableType("5C92E344-A85F-4FAE-B7C3-2D188D60B049")] 30 30 public class DTLZ6 : DTLZ { 31 31 32 32 [StorableConstructor] 33 protected DTLZ6( bool deserializing) : base(deserializing) { }33 protected DTLZ6(StorableConstructorFlag _) : base(_) { } 34 34 protected DTLZ6(DTLZ6 original, Cloner cloner) : base(original, cloner) { } 35 35 public override IDeepCloneable Clone(Cloner cloner) { -
trunk/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/TestFunctions/DTLZ/DTLZ7.cs
r15583 r16565 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("DTLZ7", "Testfunction as defined as DTLZ6 in http://repository.ias.ac.in/81671/ [30.11.15] NOTE: The website http://people.ee.ethz.ch/~sop/download/supplementary/testproblems/dtlz7/index.php [16.12.2015] lables this function as DTLZ7")] 30 [Storable Class]30 [StorableType("D98AAC02-652E-4ED4-9365-5589E970CFBD")] 31 31 public class DTLZ7 : DTLZ { 32 32 protected override double GetBestKnownHypervolume(int objectives) { … … 36 36 37 37 [StorableConstructor] 38 protected DTLZ7( bool deserializing) : base(deserializing) { }38 protected DTLZ7(StorableConstructorFlag _) : base(_) { } 39 39 protected DTLZ7(DTLZ7 original, Cloner cloner) : base(original, cloner) { } 40 40 public override IDeepCloneable Clone(Cloner cloner) { -
trunk/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/TestFunctions/DTLZ/DTLZ8.cs
r15583 r16565 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("DTLZ8", "Testfunction as defined as DTLZ7 in http://repository.ias.ac.in/81671/ [30.11.15]. There has been a renumbering therefore the numbers do not match")] 29 [Storable Class]29 [StorableType("067D6CD2-0416-4FB3-AA21-B561776762A4")] 30 30 public class DTLZ8 : DTLZ, IConstrainedTestFunction { 31 31 public static double[] IllegalValue(int size, bool[] maximization) { … … 38 38 39 39 [StorableConstructor] 40 protected DTLZ8( bool deserializing) : base(deserializing) { }40 protected DTLZ8(StorableConstructorFlag _) : base(_) { } 41 41 protected DTLZ8(DTLZ8 original, Cloner cloner) : base(original, cloner) { } 42 42 public override IDeepCloneable Clone(Cloner cloner) { -
trunk/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/TestFunctions/IHR/IHR.cs
r15583 r16565 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) { } -
trunk/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/TestFunctions/IHR/IHR1.cs
r15583 r16565 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() { -
trunk/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/TestFunctions/IHR/IHR2.cs
r15583 r16565 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() { -
trunk/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/TestFunctions/IHR/IHR3.cs
r15583 r16565 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() { -
trunk/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/TestFunctions/IHR/IHR4.cs
r15583 r16565 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() { -
trunk/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/TestFunctions/IHR/IHR6.cs
r15583 r16565 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() { -
trunk/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/TestFunctions/Misc/CIGTAB.cs
r15583 r16565 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) { -
trunk/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/TestFunctions/Misc/ELLI1.cs
r15583 r16565 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) { -
trunk/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/TestFunctions/Misc/Fonseca.cs
r15583 r16565 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) { -
trunk/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/TestFunctions/Misc/Kursawe.cs
r15583 r16565 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) { -
trunk/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/TestFunctions/Misc/SchafferN1.cs
r15583 r16565 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) { -
trunk/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/TestFunctions/Misc/SchafferN2.cs
r15583 r16565 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) { -
trunk/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/TestFunctions/MultiObjectiveTestFunction.cs
r15583 r16565 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. … … 27 27 using HeuristicLab.Encodings.RealVectorEncoding; 28 28 using HeuristicLab.Parameters; 29 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;29 using HEAL.Attic; 30 30 31 31 namespace HeuristicLab.Problems.TestFunctions.MultiObjective { … … 34 34 /// </summary> 35 35 [Item("Multi-Objective Function", "Base class for multi objective functions.")] 36 [Storable Class]36 [StorableType("6E9E9993-5B26-4D97-A58C-B4FD28308544")] 37 37 public abstract class MultiObjectiveTestFunction : ParameterizedNamedItem, IMultiObjectiveTestFunction { 38 38 /// <summary> … … 120 120 121 121 [StorableConstructor] 122 protected MultiObjectiveTestFunction( bool deserializing) : base(deserializing) { }122 protected MultiObjectiveTestFunction(StorableConstructorFlag _) : base(_) { } 123 123 124 124 protected MultiObjectiveTestFunction(MultiObjectiveTestFunction original, Cloner cloner) -
trunk/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/TestFunctions/ParetoFrontStore.cs
r15583 r16565 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. -
trunk/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/TestFunctions/ZDT/ZDT.cs
r15583 r16565 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) { -
trunk/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/TestFunctions/ZDT/ZDT1.cs
r15583 r16565 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) { -
trunk/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/TestFunctions/ZDT/ZDT2.cs
r15583 r16565 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) { -
trunk/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/TestFunctions/ZDT/ZDT3.cs
r15583 r16565 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) { -
trunk/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/TestFunctions/ZDT/ZDT4.cs
r15583 r16565 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) { -
trunk/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/TestFunctions/ZDT/ZDT6.cs
r15583 r16565 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.