Changeset 5438
- Timestamp:
- 02/04/11 23:25:37 (14 years ago)
- Location:
- trunk/sources/HeuristicLab.Analysis/3.3/MultiObjective
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Analysis/3.3/MultiObjective/ParetoFrontAnalyzer.cs
r5143 r5438 8 8 9 9 namespace HeuristicLab.Analysis { 10 [Item(" BasicMultiObjectiveSolutionAnalyzer", "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.")]10 [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.")] 11 11 [StorableClass] 12 12 public abstract class ParetoFrontAnalyzer : SingleSuccessorOperator, IAnalyzer { -
trunk/sources/HeuristicLab.Analysis/3.3/MultiObjective/RankBasedParetoFrontAnalyzer.cs
r5143 r5438 30 30 31 31 namespace HeuristicLab.Analysis { 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).")]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 33 [StorableClass] 34 34 public class RankBasedParetoFrontAnalyzer : ParetoFrontAnalyzer {
Note: See TracChangeset
for help on using the changeset viewer.