Changeset 17097 for stable/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/TestFunctions/DTLZ/DTLZ1.cs
- Timestamp:
- 07/07/19 23:40:10 (5 years ago)
- Location:
- stable
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
-
stable/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/TestFunctions/DTLZ/DTLZ1.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("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() {
Note: See TracChangeset
for help on using the changeset viewer.