Changeset 4373 for trunk/sources/HeuristicLab.Encodings.PermutationEncoding
- Timestamp:
- 09/08/10 15:54:25 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Encodings.PermutationEncoding/3.3/Manipulators/MultiPermutationManipulator.cs
r3674 r4373 49 49 public MultiPermutationManipulator() 50 50 : base() { 51 Parameters.Add(new LookupParameter<Permutation>("Permutation", "The permutation that is being manipulat ing."));51 Parameters.Add(new LookupParameter<Permutation>("Permutation", "The permutation that is being manipulated.")); 52 52 53 53 foreach (Type type in ApplicationManager.Manager.GetTypes(typeof(IPermutationManipulator))) { … … 71 71 manipulator.PermutationParameter.ActualName = PermutationParameter.Name; 72 72 } 73 foreach (IStochasticOperator crossoverin Operators.OfType<IStochasticOperator>()) {74 crossover.RandomParameter.ActualName = RandomParameter.Name;73 foreach (IStochasticOperator op in Operators.OfType<IStochasticOperator>()) { 74 op.RandomParameter.ActualName = RandomParameter.Name; 75 75 } 76 76 }
Note: See TracChangeset
for help on using the changeset viewer.