Changeset 17097 for stable/HeuristicLab.Analysis/3.3/MultiObjective
- Timestamp:
- 07/07/19 23:40:10 (5 years ago)
- Location:
- stable
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
-
stable/HeuristicLab.Analysis
- Property svn:mergeinfo changed
/branches/2520_PersistenceReintegration/HeuristicLab.Analysis (added) merged: 16452-16454,16462,16472,16483,16529-16530,16539,16558-16559 /trunk/HeuristicLab.Analysis merged: 16565,16568
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Analysis/3.3/MultiObjective/ParetoFrontAnalyzer.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. … … 26 26 using HeuristicLab.Optimization; 27 27 using HeuristicLab.Parameters; 28 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;28 using HEAL.Attic; 29 29 30 30 namespace HeuristicLab.Analysis { 31 31 [Item("ParetoFrontAnalyzer", "Analyzer for multiobjective problems that collects and presents the current Pareto front as double matrix as well as the solution scopes that lie on the current front.")] 32 [Storable Class]32 [StorableType("972CEB70-3D0D-4602-97B1-B02DC7FBD9E8")] 33 33 public abstract class ParetoFrontAnalyzer : SingleSuccessorOperator, IAnalyzer, IMultiObjectiveOperator { 34 34 public virtual bool EnabledByDefault { … … 44 44 45 45 [StorableConstructor] 46 protected ParetoFrontAnalyzer( bool deserializing) : base(deserializing) { }46 protected ParetoFrontAnalyzer(StorableConstructorFlag _) : base(_) { } 47 47 protected ParetoFrontAnalyzer(ParetoFrontAnalyzer original, Cloner cloner) : base(original, cloner) { } 48 48 public ParetoFrontAnalyzer() { -
stable/HeuristicLab.Analysis/3.3/MultiObjective/RankBasedParetoFrontAnalyzer.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. … … 27 27 using HeuristicLab.Optimization; 28 28 using HeuristicLab.Parameters; 29 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;29 using HEAL.Attic; 30 30 31 31 namespace HeuristicLab.Analysis { 32 32 [Item("RankBasedParetoFrontAnalyzer", "Uses the rank value that is computed by e.g. the NSGA2's fast non dominated sort operator to collect all solutions and their qualities of front 0 (the current Pareto front).")] 33 [Storable Class]33 [StorableType("9F314FB6-6BA2-4CC8-843B-B68CF01F7BE7")] 34 34 public class RankBasedParetoFrontAnalyzer : ParetoFrontAnalyzer { 35 35 public IScopeTreeLookupParameter<IntValue> RankParameter { … … 38 38 39 39 [StorableConstructor] 40 protected RankBasedParetoFrontAnalyzer( bool deserializing) : base(deserializing) { }40 protected RankBasedParetoFrontAnalyzer(StorableConstructorFlag _) : base(_) { } 41 41 protected RankBasedParetoFrontAnalyzer(RankBasedParetoFrontAnalyzer original, Cloner cloner) : base(original, cloner) { } 42 42 public RankBasedParetoFrontAnalyzer() {
Note: See TracChangeset
for help on using the changeset viewer.