Changeset 16462 for branches/2520_PersistenceReintegration/HeuristicLab.Problems.TestFunctions.MultiObjective
- Timestamp:
- 12/28/18 16:10:48 (6 years ago)
- Location:
- branches/2520_PersistenceReintegration/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3
- Files:
-
- 38 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2520_PersistenceReintegration/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/Analyzers/CrowdingAnalyzer.cs
r16453 r16462 26 26 using HeuristicLab.Optimization; 27 27 using HeuristicLab.Parameters; 28 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;28 using HEAL.Fossil; 29 29 30 30 namespace HeuristicLab.Problems.TestFunctions.MultiObjective { 31 [Storable Class]31 [StorableType("F06FB45C-051E-4AD8-BD82-16DA9DCBCACB")] 32 32 [Item("CrowdingAnalyzer", "The mean crowding distance for each point of the Front (see Multi-Objective Performance Metrics - Shodhganga for more information)")] 33 33 public class CrowdingAnalyzer : MOTFAnalyzer { … … 42 42 43 43 [StorableConstructor] 44 protected CrowdingAnalyzer( bool deserializing) : base(deserializing) { }44 protected CrowdingAnalyzer(StorableConstructorFlag _) : base(_) { } 45 45 public CrowdingAnalyzer(CrowdingAnalyzer original, Cloner cloner) 46 46 : base(original, cloner) { -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/Analyzers/GenerationalDistanceAnalyzer.cs
r16453 r16462 20 20 #endregion 21 21 22 using System;23 22 using System.Linq; 24 23 using HeuristicLab.Common; … … 27 26 using HeuristicLab.Optimization; 28 27 using HeuristicLab.Parameters; 29 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;28 using HEAL.Fossil; 30 29 31 30 namespace HeuristicLab.Problems.TestFunctions.MultiObjective { 32 [Storable Class]31 [StorableType("EBC72F16-E329-4D18-800C-8642EFD0F05C")] 33 32 [Item("GenerationalDistanceAnalyzer", "The generational distance between the current and the best known front (see Multi-Objective Performance Metrics - Shodhganga for more information)")] 34 33 public class GenerationalDistanceAnalyzer : MOTFAnalyzer { … … 49 48 50 49 [StorableConstructor] 51 protected GenerationalDistanceAnalyzer( bool deserializing) : base(deserializing) { }50 protected GenerationalDistanceAnalyzer(StorableConstructorFlag _) : base(_) { } 52 51 protected GenerationalDistanceAnalyzer(GenerationalDistanceAnalyzer original, Cloner cloner) : base(original, cloner) { } 53 52 public override IDeepCloneable Clone(Cloner cloner) { -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/Analyzers/HypervolumeAnalyzer.cs
r16453 r16462 28 28 using HeuristicLab.Optimization; 29 29 using HeuristicLab.Parameters; 30 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;30 using HEAL.Fossil; 31 31 32 32 namespace HeuristicLab.Problems.TestFunctions.MultiObjective { 33 [Storable Class]33 [StorableType("13D363E4-76FF-4A5A-9B2C-767D9E880E4B")] 34 34 [Item("HypervolumeAnalyzer", "Computes the enclosed Hypervolume between the current front and a given reference Point")] 35 35 public class HypervolumeAnalyzer : MOTFAnalyzer { … … 50 50 51 51 [StorableConstructor] 52 protected HypervolumeAnalyzer(bool deserializing) 53 : base(deserializing) { 52 protected HypervolumeAnalyzer(StorableConstructorFlag _) : base(_) { 54 53 } 55 54 -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/Analyzers/InvertedGenerationalDistanceAnalyzer.cs
r16453 r16462 26 26 using HeuristicLab.Optimization; 27 27 using HeuristicLab.Parameters; 28 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;28 using HEAL.Fossil; 29 29 30 30 namespace HeuristicLab.Problems.TestFunctions.MultiObjective { 31 [Storable Class]31 [StorableType("EC99F3C1-D8D2-4738-9523-0D07438647A5")] 32 32 [Item("InvertedGenerationalDistanceAnalyzer", "The inverted generational distance between the current and the best known front (see Multi-Objective Performance Metrics - Shodhganga for more information)")] 33 33 public class InvertedGenerationalDistanceAnalyzer : MOTFAnalyzer { … … 56 56 57 57 [StorableConstructor] 58 protected InvertedGenerationalDistanceAnalyzer( bool deserializing) : base(deserializing) { }58 protected InvertedGenerationalDistanceAnalyzer(StorableConstructorFlag _) : base(_) { } 59 59 protected InvertedGenerationalDistanceAnalyzer(InvertedGenerationalDistanceAnalyzer original, Cloner cloner) : base(original, cloner) { } 60 60 public override IDeepCloneable Clone(Cloner cloner) { -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/Analyzers/MOTFAnalyzer.cs
r16453 r16462 26 26 using HeuristicLab.Optimization; 27 27 using HeuristicLab.Parameters; 28 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;28 using HEAL.Fossil; 29 29 30 30 31 31 namespace HeuristicLab.Problems.TestFunctions.MultiObjective { 32 32 33 [Storable Class]33 [StorableType("CFBB2CAB-C1B7-4F14-9A01-6D5624B7B681")] 34 34 public abstract class MOTFAnalyzer : SingleSuccessorOperator, IMultiObjectiveTestFunctionAnalyzer { 35 35 public virtual bool EnabledByDefault { get { return true; } } … … 54 54 55 55 [StorableConstructor] 56 protected MOTFAnalyzer( bool deserializing) : base(deserializing) { }56 protected MOTFAnalyzer(StorableConstructorFlag _) : base(_) { } 57 57 protected MOTFAnalyzer() { 58 58 Parameters.Add(new ScopeTreeLookupParameter<DoubleArray>("Qualities", "The qualities of the parameter vector.")); -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/Analyzers/ScatterPlotAnalyzer.cs
r16453 r16462 26 26 using HeuristicLab.Optimization; 27 27 using HeuristicLab.Parameters; 28 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;28 using HEAL.Fossil; 29 29 30 30 namespace HeuristicLab.Problems.TestFunctions.MultiObjective { 31 [Storable Class]31 [StorableType("720E2726-7F31-4425-B478-327D24BA2FF3")] 32 32 [Item("ScatterPlotAnalyzer", "Creates a Scatterplot for the current and the best known front (see Multi-Objective Performance Metrics - Shodhganga for more information)")] 33 33 public class ScatterPlotAnalyzer : MOTFAnalyzer { … … 43 43 44 44 [StorableConstructor] 45 protected ScatterPlotAnalyzer( bool deserializing) : base(deserializing) { }45 protected ScatterPlotAnalyzer(StorableConstructorFlag _) : base(_) { } 46 46 protected ScatterPlotAnalyzer(ScatterPlotAnalyzer original, Cloner cloner) : base(original, cloner) { } 47 47 public override IDeepCloneable Clone(Cloner cloner) { -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/Analyzers/SpacingAnalyzer.cs
r16453 r16462 25 25 using HeuristicLab.Data; 26 26 using HeuristicLab.Optimization; 27 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;27 using HEAL.Fossil; 28 28 29 29 namespace HeuristicLab.Problems.TestFunctions.MultiObjective { 30 [Storable Class]30 [StorableType("F32027A7-3116-4864-A404-820F866BFD65")] 31 31 [Item("SpacingAnalyzer", "The spacing of the current front (see Multi-Objective Performance Metrics - Shodhganga for more information)")] 32 32 public class SpacingAnalyzer : MOTFAnalyzer { … … 36 36 } 37 37 [StorableConstructor] 38 protected SpacingAnalyzer( bool deserializing) : base(deserializing) { }38 protected SpacingAnalyzer(StorableConstructorFlag _) : base(_) { } 39 39 40 40 -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/HeuristicLab.Problems.TestFunctions.MultiObjective-3.3.csproj
r16454 r16462 87 87 <HintPath>..\..\packages\Google.Protobuf.3.6.1\lib\net45\Google.Protobuf.dll</HintPath> 88 88 </Reference> 89 <Reference Include="HEAL.Fossil, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">89 <Reference Include="HEAL.Fossil, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> 90 90 <HintPath>..\..\packages\HEAL.Fossil.1.0.0\lib\netstandard2.0\HEAL.Fossil.dll</HintPath> 91 91 </Reference> -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/MultiObjectiveTestFunctionProblem.cs
r16453 r16462 28 28 using HeuristicLab.Optimization; 29 29 using HeuristicLab.Parameters; 30 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;30 using HEAL.Fossil; 31 31 using HeuristicLab.Problems.Instances; 32 32 33 33 namespace HeuristicLab.Problems.TestFunctions.MultiObjective { 34 [Storable Class]34 [StorableType("AB0C6A73-C432-46FD-AE3B-9841EAB2478C")] 35 35 [Creatable(CreatableAttribute.Categories.Problems, Priority = 95)] 36 36 [Item("Test Function (multi-objective)", "Test functions with real valued inputs and multiple objectives.")] … … 97 97 98 98 [StorableConstructor] 99 protected MultiObjectiveTestFunctionProblem( bool deserializing) : base(deserializing) { }99 protected MultiObjectiveTestFunctionProblem(StorableConstructorFlag _) : base(_) { } 100 100 [StorableHook(HookType.AfterDeserialization)] 101 101 private void AfterDeserialization() { -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/ParetoFrontScatterPlot.cs
r16453 r16462 24 24 using HeuristicLab.Common; 25 25 using HeuristicLab.Core; 26 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;26 using HEAL.Fossil; 27 27 28 28 namespace HeuristicLab.Problems.TestFunctions.MultiObjective { 29 [Storable Class]29 [StorableType("3BF7AD0E-8D55-4033-974A-01DB16F9E41A")] 30 30 [Item("Pareto Front Scatter Plot", "The optimal front, current front and its associated Points in the searchspace")] 31 31 public class ParetoFrontScatterPlot : Item { … … 87 87 88 88 [StorableConstructor] 89 protected ParetoFrontScatterPlot(bool deserializing) 90 : base(deserializing) { } 89 protected ParetoFrontScatterPlot(StorableConstructorFlag _) : base(_) { } 91 90 #endregion 92 91 } -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/TestFunctions/DTLZ/DTLZ.cs
r16453 r16462 23 23 using HeuristicLab.Common; 24 24 using HeuristicLab.Encodings.RealVectorEncoding; 25 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;25 using HEAL.Fossil; 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) { } -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/TestFunctions/DTLZ/DTLZ1.cs
r16453 r16462 23 23 using HeuristicLab.Core; 24 24 using HeuristicLab.Encodings.RealVectorEncoding; 25 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;25 using HEAL.Fossil; 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() { -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/TestFunctions/DTLZ/DTLZ2.cs
r16453 r16462 23 23 using HeuristicLab.Core; 24 24 using HeuristicLab.Encodings.RealVectorEncoding; 25 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;25 using HEAL.Fossil; 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() { } -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/TestFunctions/DTLZ/DTLZ3.cs
r16453 r16462 23 23 using HeuristicLab.Core; 24 24 using HeuristicLab.Encodings.RealVectorEncoding; 25 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;25 using HEAL.Fossil; 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() { } -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/TestFunctions/DTLZ/DTLZ4.cs
r16453 r16462 23 23 using HeuristicLab.Core; 24 24 using HeuristicLab.Encodings.RealVectorEncoding; 25 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;25 using HEAL.Fossil; 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() { } -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/TestFunctions/DTLZ/DTLZ5.cs
r16453 r16462 23 23 using HeuristicLab.Core; 24 24 using HeuristicLab.Encodings.RealVectorEncoding; 25 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;25 using HEAL.Fossil; 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) { -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/TestFunctions/DTLZ/DTLZ6.cs
r16453 r16462 23 23 using HeuristicLab.Core; 24 24 using HeuristicLab.Encodings.RealVectorEncoding; 25 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;25 using HEAL.Fossil; 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) { -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/TestFunctions/DTLZ/DTLZ7.cs
r16453 r16462 24 24 using HeuristicLab.Core; 25 25 using HeuristicLab.Encodings.RealVectorEncoding; 26 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;26 using HEAL.Fossil; 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) { -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/TestFunctions/DTLZ/DTLZ8.cs
r16453 r16462 23 23 using HeuristicLab.Core; 24 24 using HeuristicLab.Encodings.RealVectorEncoding; 25 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;25 using HEAL.Fossil; 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) { -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/TestFunctions/IHR/IHR.cs
r16453 r16462 22 22 using HeuristicLab.Common; 23 23 using HeuristicLab.Encodings.RealVectorEncoding; 24 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;24 using HEAL.Fossil; 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) { } -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/TestFunctions/IHR/IHR1.cs
r16453 r16462 24 24 using HeuristicLab.Core; 25 25 using HeuristicLab.Encodings.RealVectorEncoding; 26 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;26 using HEAL.Fossil; 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() { -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/TestFunctions/IHR/IHR2.cs
r16453 r16462 24 24 using HeuristicLab.Core; 25 25 using HeuristicLab.Encodings.RealVectorEncoding; 26 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;26 using HEAL.Fossil; 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() { -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/TestFunctions/IHR/IHR3.cs
r16453 r16462 24 24 using HeuristicLab.Core; 25 25 using HeuristicLab.Encodings.RealVectorEncoding; 26 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;26 using HEAL.Fossil; 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() { -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/TestFunctions/IHR/IHR4.cs
r16453 r16462 24 24 using HeuristicLab.Core; 25 25 using HeuristicLab.Encodings.RealVectorEncoding; 26 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;26 using HEAL.Fossil; 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() { -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/TestFunctions/IHR/IHR6.cs
r16453 r16462 24 24 using HeuristicLab.Core; 25 25 using HeuristicLab.Encodings.RealVectorEncoding; 26 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;26 using HEAL.Fossil; 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() { -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/TestFunctions/Misc/CIGTAB.cs
r16453 r16462 24 24 using HeuristicLab.Core; 25 25 using HeuristicLab.Encodings.RealVectorEncoding; 26 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;26 using HEAL.Fossil; 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) { -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/TestFunctions/Misc/ELLI1.cs
r16453 r16462 24 24 using HeuristicLab.Core; 25 25 using HeuristicLab.Encodings.RealVectorEncoding; 26 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;26 using HEAL.Fossil; 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) { -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/TestFunctions/Misc/Fonseca.cs
r16453 r16462 25 25 using HeuristicLab.Core; 26 26 using HeuristicLab.Encodings.RealVectorEncoding; 27 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;27 using HEAL.Fossil; 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) { -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/TestFunctions/Misc/Kursawe.cs
r16453 r16462 24 24 using HeuristicLab.Core; 25 25 using HeuristicLab.Encodings.RealVectorEncoding; 26 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;26 using HEAL.Fossil; 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) { -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/TestFunctions/Misc/SchafferN1.cs
r16453 r16462 24 24 using HeuristicLab.Core; 25 25 using HeuristicLab.Encodings.RealVectorEncoding; 26 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;26 using HEAL.Fossil; 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) { -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/TestFunctions/Misc/SchafferN2.cs
r16453 r16462 24 24 using HeuristicLab.Core; 25 25 using HeuristicLab.Encodings.RealVectorEncoding; 26 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;26 using HEAL.Fossil; 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) { -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/TestFunctions/MultiObjectiveTestFunction.cs
r16453 r16462 27 27 using HeuristicLab.Encodings.RealVectorEncoding; 28 28 using HeuristicLab.Parameters; 29 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;29 using HEAL.Fossil; 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) -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/TestFunctions/ZDT/ZDT.cs
r16453 r16462 23 23 using HeuristicLab.Common; 24 24 using HeuristicLab.Encodings.RealVectorEncoding; 25 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;25 using HEAL.Fossil; 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) { -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/TestFunctions/ZDT/ZDT1.cs
r16453 r16462 23 23 using HeuristicLab.Core; 24 24 using HeuristicLab.Encodings.RealVectorEncoding; 25 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;25 using HEAL.Fossil; 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) { -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/TestFunctions/ZDT/ZDT2.cs
r16453 r16462 22 22 using HeuristicLab.Core; 23 23 using HeuristicLab.Encodings.RealVectorEncoding; 24 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;24 using HEAL.Fossil; 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) { -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/TestFunctions/ZDT/ZDT3.cs
r16453 r16462 23 23 using HeuristicLab.Core; 24 24 using HeuristicLab.Encodings.RealVectorEncoding; 25 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;25 using HEAL.Fossil; 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) { -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/TestFunctions/ZDT/ZDT4.cs
r16453 r16462 23 23 using HeuristicLab.Core; 24 24 using HeuristicLab.Encodings.RealVectorEncoding; 25 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;25 using HEAL.Fossil; 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) { -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/TestFunctions/ZDT/ZDT6.cs
r16453 r16462 23 23 using HeuristicLab.Core; 24 24 using HeuristicLab.Encodings.RealVectorEncoding; 25 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;25 using HEAL.Fossil; 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.