Free cookie consent management tool by TermsFeed Policy Generator

Changeset 4513


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

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

Location:
trunk/sources
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.ExtLibs/HeuristicLab.WinFormsUI/2.3.1/WinFormsUI-2.3.1/Docking/DockPanel.DockDragHandler.cs

    r4068 r4513  
    136136          private static Bitmap _bitmapPaneDiamondHotSpot = Resources.DockIndicator_PaneDiamond_HotSpot;
    137137          private static Bitmap _bitmapPaneDiamondHotSpotIndex = Resources.DockIndicator_PaneDiamond_HotSpotIndex;
    138           private static HotSpotIndex[] _hotSpots = new HotSpotIndex[]
    139       {
    140         new HotSpotIndex(1, 0, DockStyle.Top),
    141         new HotSpotIndex(0, 1, DockStyle.Left),
    142         new HotSpotIndex(1, 1, DockStyle.Fill),
    143         new HotSpotIndex(2, 1, DockStyle.Right),
    144         new HotSpotIndex(1, 2, DockStyle.Bottom)
    145       };
     138          private static HotSpotIndex[] _hotSpots = new HotSpotIndex[] {
     139            new HotSpotIndex(1, 0, DockStyle.Top),
     140            new HotSpotIndex(0, 1, DockStyle.Left),
     141            new HotSpotIndex(1, 1, DockStyle.Fill),
     142            new HotSpotIndex(2, 1, DockStyle.Right),
     143            new HotSpotIndex(1, 2, DockStyle.Bottom)
     144          };
    146145          private static GraphicsPath _displayingGraphicsPath = DrawHelper.CalculateGraphicsPathFromBitmap(_bitmapPaneDiamond);
    147146
  • trunk/sources/HeuristicLab.Problems.Knapsack.Views/3.3/KnapsackSolutionView.cs

    r4068 r4513  
    2828namespace HeuristicLab.Problems.Knapsack.Views {
    2929  /// <summary>
    30   /// A view for a knapsack solution.
     30  /// A view for a Knapsack solution.
    3131  /// </summary>
    3232  [View("Knapsack View")]
  • 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."));
  • trunk/sources/HeuristicLab.Problems.Knapsack/3.3/Evaluators/KnapsackEvaluator.cs

    r4068 r4513  
    3030namespace HeuristicLab.Problems.Knapsack {
    3131  /// <summary>
    32   /// A base class for operators which evaluates Knapsack solutions given in BinaryVector encoding.
     32  /// A base class for operators which evaluate Knapsack solutions given in BinaryVector encoding.
    3333  /// </summary>
    3434  [Item("KnapsackEvaluator", "Evaluates solutions for the Knapsack problem.")]
  • trunk/sources/HeuristicLab.Problems.Knapsack/3.3/KnapsackProblem.cs

    r4419 r4513  
    3434
    3535namespace HeuristicLab.Problems.Knapsack {
    36   [Item("Knapsack Problem", "Represents a Knapsack Problem.")]
     36  [Item("Knapsack Problem", "Represents a Knapsack problem.")]
    3737  [Creatable("Problems")]
    3838  [StorableClass]
  • trunk/sources/HeuristicLab.Problems.Knapsack/3.3/KnapsackSolution.cs

    r4068 r4513  
    3232  /// Represents a knapsack solution which can be visualized in the GUI.
    3333  /// </summary>
    34   [Item("KnapsackSolution", "Represents a knapsack solution which can be visualized in the GUI.")]
     34  [Item("KnapsackSolution", "Represents a Knapsack solution which can be visualized in the GUI.")]
    3535  [StorableClass]
    3636  public class KnapsackSolution : Item {
  • trunk/sources/HeuristicLab.Problems.TravelingSalesman.Views/3.3/TravelingSalesmanProblemView.cs

    r4068 r4513  
    2929namespace HeuristicLab.Problems.TravelingSalesman.Views {
    3030  /// <summary>
    31   /// The base class for visual representations of items.
     31  /// A view for a Traveling Salesman Problem instance.
    3232  /// </summary>
    3333  [View("Traveling Salesman Problem View")]
     
    4242
    4343    /// <summary>
    44     /// Initializes a new instance of <see cref="ItemBaseView"/>.
     44    /// Initializes a new instance of <see cref="TravelingSalesmanProblemView"/>.
    4545    /// </summary>
    4646    public TravelingSalesmanProblemView() {
  • trunk/sources/HeuristicLab.Problems.VehicleRouting/3.3/Analyzers/BestVRPSolutionAnalyzer.cs

    r4352 r4513  
    100100      Parameters.Add(new ScopeTreeLookupParameter<DoubleValue>("TravelTime", "The travel times of the VRP solutions which should be analyzed."));
    101101      Parameters.Add(new ScopeTreeLookupParameter<DoubleValue>("VehiclesUtilized", "The utilized vehicles of the VRP solutions which should be analyzed."));
    102       Parameters.Add(new LookupParameter<VRPSolution>("BestSolution", "The best TSP solution."));
     102      Parameters.Add(new LookupParameter<VRPSolution>("BestSolution", "The best VRP solution."));
    103103      Parameters.Add(new ValueLookupParameter<ResultCollection>("Results", "The result collection where the best VRP solution should be stored."));
    104104    }
Note: See TracChangeset for help on using the changeset viewer.