Changeset 16723 for branches/2521_ProblemRefactoring/HeuristicLab.Optimization.Operators/3.3/MultiObjective
- Timestamp:
- 03/28/19 16:54:20 (6 years ago)
- Location:
- branches/2521_ProblemRefactoring
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2521_ProblemRefactoring
- Property svn:mergeinfo changed
-
branches/2521_ProblemRefactoring/HeuristicLab.Optimization.Operators/3.3/MultiObjective/CrowdedComparisonSorter.cs
r16692 r16723 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. … … 28 28 using HeuristicLab.Operators; 29 29 using HeuristicLab.Parameters; 30 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;30 using HEAL.Attic; 31 31 32 32 namespace HeuristicLab.Optimization.Operators { … … 37 37 [Item("CrowdedComparisonSorter", @"CrowdedComparisonSorter as described in: Deb, Pratap, Agrawal and Meyarivan, ""A Fast and Elitist Multiobjective 38 38 Genetic Algorithm: NSGA-II"", IEEE Transactions On Evolutionary Computation, Vol. 6, No. 2, April 2002.")] 39 [Storable Class]39 [StorableType("48F09742-454D-4BAB-A057-96BDF4ACDCE9")] 40 40 public class CrowdedComparisonSorter : SingleSuccessorOperator { 41 41 … … 49 49 50 50 [StorableConstructor] 51 protected CrowdedComparisonSorter( bool deserializing) : base(deserializing) { }51 protected CrowdedComparisonSorter(StorableConstructorFlag _) : base(_) { } 52 52 protected CrowdedComparisonSorter(CrowdedComparisonSorter original, Cloner cloner) : base(original, cloner) { } 53 53 public CrowdedComparisonSorter() { … … 69 69 } 70 70 71 [StorableType("c16dd393-bd08-4a81-abb5-1b7e918a1038")] 71 72 private class CustomComparer : IComparer<int> { 72 73 ItemArray<IntValue> ranks; -
branches/2521_ProblemRefactoring/HeuristicLab.Optimization.Operators/3.3/MultiObjective/CrowdingDistanceAssignment.cs
r16692 r16723 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. … … 28 28 using HeuristicLab.Operators; 29 29 using HeuristicLab.Parameters; 30 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;30 using HEAL.Attic; 31 31 32 32 namespace HeuristicLab.Optimization.Operators { 33 33 [Item("CrowdingDistanceAssignment", "Calculates the crowding distances for each sub-scope as described in Deb et al. 2002. A Fast and Elitist Multiobjective Genetic Algorithm: NSGA-II. IEEE Transactions on Evolutionary Computation, 6(2), pp. 182-197.")] 34 [Storable Class]34 [StorableType("F7DF8B74-F1E6-45D6-A1A8-5D381F20B382")] 35 35 public class CrowdingDistanceAssignment : SingleSuccessorOperator, IMultiObjectiveOperator { 36 36 … … 48 48 49 49 [StorableConstructor] 50 protected CrowdingDistanceAssignment( bool deserializing) : base(deserializing) { }50 protected CrowdingDistanceAssignment(StorableConstructorFlag _) : base(_) { } 51 51 protected CrowdingDistanceAssignment(CrowdingDistanceAssignment original, Cloner cloner) : base(original, cloner) { } 52 52 public CrowdingDistanceAssignment() { … … 103 103 } 104 104 105 [StorableType("30fd1927-b268-4ce7-8960-b04bfa83f1e6")] 105 106 private class QualitiesComparer : IComparer<DoubleArray> { 106 107 private int index; -
branches/2521_ProblemRefactoring/HeuristicLab.Optimization.Operators/3.3/MultiObjective/FastNonDominatedSort.cs
r16692 r16723 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. … … 21 21 22 22 using System; 23 using System.Collections.Generic;24 23 using System.Linq; 25 24 using HeuristicLab.Common; … … 28 27 using HeuristicLab.Operators; 29 28 using HeuristicLab.Parameters; 30 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;29 using HEAL.Attic; 31 30 32 31 namespace HeuristicLab.Optimization.Operators { … … 37 36 [Item("FastNonDominatedSort", @"FastNonDominatedSort as described in: Deb, Pratap, Agrawal and Meyarivan, ""A Fast and Elitist Multiobjective 38 37 Genetic Algorithm: NSGA-II"", IEEE Transactions On Evolutionary Computation, Vol. 6, No. 2, April 2002")] 39 [Storable Class]38 [StorableType("0D1919E6-FCDE-4216-831A-E6427C3D986E")] 40 39 public class FastNonDominatedSort : SingleSuccessorOperator, IMultiObjectiveOperator { 41 40 … … 56 55 57 56 [StorableConstructor] 58 protected FastNonDominatedSort( bool deserializing) : base(deserializing) { }57 protected FastNonDominatedSort(StorableConstructorFlag _) : base(_) { } 59 58 protected FastNonDominatedSort(FastNonDominatedSort original, Cloner cloner) : base(original, cloner) { } 60 59 public FastNonDominatedSort() { -
branches/2521_ProblemRefactoring/HeuristicLab.Optimization.Operators/3.3/MultiObjective/RankAndCrowdingSorter.cs
r16692 r16723 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.Operators; 26 26 using HeuristicLab.Parameters; 27 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;27 using HEAL.Attic; 28 28 using HeuristicLab.Selection; 29 29 30 30 namespace HeuristicLab.Optimization.Operators { 31 [Storable Class]31 [StorableType("CC2A5B04-361C-451B-87A4-524895748E79")] 32 32 public class RankAndCrowdingSorter : AlgorithmOperator, IMultiObjectiveOperator { 33 33 #region Parameter properties … … 50 50 51 51 [StorableConstructor] 52 protected RankAndCrowdingSorter( bool deserializing) : base(deserializing) { }52 protected RankAndCrowdingSorter(StorableConstructorFlag _) : base(_) { } 53 53 protected RankAndCrowdingSorter(RankAndCrowdingSorter original, Cloner cloner) : base(original, cloner) { } 54 54 public RankAndCrowdingSorter()
Note: See TracChangeset
for help on using the changeset viewer.