Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/27/10 09:24:42 (14 years ago)
Author:
swinkler
Message:

Corrected comments and descriptions (#1182); formatted code.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.Knapsack/3.3/Analyzers/BestKnapsackSolutionAnalyzer.cs

    r4068 r4513  
    3131namespace HeuristicLab.Problems.Knapsack {
    3232  /// <summary>
    33   /// An operator for analyzing the best solution for a knapsack problem.
     33  /// An operator for analyzing the best solution for a Knapsack problem.
    3434  /// </summary>
    35   [Item("BestKnapsackSolutionAnalyzer", "An operator for analyzing the best solution for a knapsack problem.")]
     35  [Item("BestKnapsackSolutionAnalyzer", "An operator for analyzing the best solution for a Knapsack problem.")]
    3636  [StorableClass]
    3737  class BestKnapsackSolutionAnalyzer : SingleSuccessorOperator, IAnalyzer {
     
    7070      : base() {
    7171      Parameters.Add(new LookupParameter<BoolValue>("Maximization", "True if the problem is a maximization problem."));
    72       Parameters.Add(new ScopeTreeLookupParameter<BinaryVector>("BinaryVector", "The knapsack solutions from which the best solution should be visualized."));
     72      Parameters.Add(new ScopeTreeLookupParameter<BinaryVector>("BinaryVector", "The Knapsack solutions from which the best solution should be visualized."));
    7373      Parameters.Add(new LookupParameter<IntValue>("KnapsackCapacity", "Capacity of the Knapsack."));
    7474      Parameters.Add(new LookupParameter<IntArray>("Weights", "The weights of the items."));
    7575      Parameters.Add(new LookupParameter<IntArray>("Values", "The values of the items."));
    7676
    77       Parameters.Add(new ScopeTreeLookupParameter<DoubleValue>("Quality", "The qualities of the knapsack solutions which should be visualized."));
    78       Parameters.Add(new LookupParameter<KnapsackSolution>("BestSolution", "The best knapsack solution."));
     77      Parameters.Add(new ScopeTreeLookupParameter<DoubleValue>("Quality", "The qualities of the Knapsack solutions which should be visualized."));
     78      Parameters.Add(new LookupParameter<KnapsackSolution>("BestSolution", "The best Knapsack solution."));
    7979      Parameters.Add(new ValueLookupParameter<ResultCollection>("Results", "The result collection where the knapsack solution should be stored."));
    8080      Parameters.Add(new LookupParameter<DoubleValue>("BestKnownQuality", "The quality of the best known solution."));
Note: See TracChangeset for help on using the changeset viewer.