Free cookie consent management tool by TermsFeed Policy Generator

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

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

File:
1 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    }
Note: See TracChangeset for help on using the changeset viewer.