Free cookie consent management tool by TermsFeed Policy Generator

Changeset 4373


Ignore:
Timestamp:
09/08/10 15:54:25 (14 years ago)
Author:
swinkler
Message:

Corrected comment and description in MultiPermutationManipulator and PathTSPTourView. (#1182)

Location:
trunk/sources
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Encodings.PermutationEncoding/3.3/Manipulators/MultiPermutationManipulator.cs

    r3674 r4373  
    4949    public MultiPermutationManipulator()
    5050      : base() {
    51       Parameters.Add(new LookupParameter<Permutation>("Permutation", "The permutation that is being manipulating."));
     51      Parameters.Add(new LookupParameter<Permutation>("Permutation", "The permutation that is being manipulated."));
    5252
    5353      foreach (Type type in ApplicationManager.Manager.GetTypes(typeof(IPermutationManipulator))) {
     
    7171        manipulator.PermutationParameter.ActualName = PermutationParameter.Name;
    7272      }
    73       foreach (IStochasticOperator crossover in Operators.OfType<IStochasticOperator>()) {
    74         crossover.RandomParameter.ActualName = RandomParameter.Name;
     73      foreach (IStochasticOperator op in Operators.OfType<IStochasticOperator>()) {
     74        op.RandomParameter.ActualName = RandomParameter.Name;
    7575      }
    7676    }
  • trunk/sources/HeuristicLab.Problems.TravelingSalesman.Views/3.3/PathTSPTourView.cs

    r3904 r4373  
    3030namespace HeuristicLab.Problems.TravelingSalesman.Views {
    3131  /// <summary>
    32   /// The base class for visual representations of items.
     32  /// The base class for visual representations of a path tour for a TSP.
    3333  /// </summary>
    3434  [View("PathTSPTour View")]
     
    4141
    4242    /// <summary>
    43     /// Initializes a new instance of <see cref="ItemBaseView"/>.
     43    /// Initializes a new instance of <see cref="PathTSPTourView"/>.
    4444    /// </summary>
    4545    public PathTSPTourView() {
Note: See TracChangeset for help on using the changeset viewer.