Changeset 4373
- Timestamp:
- 09/08/10 15:54:25 (14 years ago)
- Location:
- trunk/sources
- Files:
-
- 2 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 } -
trunk/sources/HeuristicLab.Problems.TravelingSalesman.Views/3.3/PathTSPTourView.cs
r3904 r4373 30 30 namespace HeuristicLab.Problems.TravelingSalesman.Views { 31 31 /// <summary> 32 /// The base class for visual representations of items.32 /// The base class for visual representations of a path tour for a TSP. 33 33 /// </summary> 34 34 [View("PathTSPTour View")] … … 41 41 42 42 /// <summary> 43 /// Initializes a new instance of <see cref=" ItemBaseView"/>.43 /// Initializes a new instance of <see cref="PathTSPTourView"/>. 44 44 /// </summary> 45 45 public PathTSPTourView() {
Note: See TracChangeset
for help on using the changeset viewer.