Changeset 3026 for trunk/sources
- Timestamp:
- 03/15/10 00:16:36 (15 years ago)
- Location:
- trunk/sources
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Algorithms.SGA.Views/3.3/Properties/AssemblyInfo.frame
r2885 r3026 27 27 // associated with an assembly. 28 28 [assembly: AssemblyTitle("HeuristicLab.Algorithms.SGA.Views")] 29 [assembly: AssemblyDescription("Views of the HeuristicLab Standard Genetic Algorithm (SGA)")]29 [assembly: AssemblyDescription("Views of the HeuristicLab standard genetic algorithm (SGA)")] 30 30 [assembly: AssemblyConfiguration("")] 31 31 [assembly: AssemblyCompany("")] -
trunk/sources/HeuristicLab.Algorithms.SGA/3.3/Properties/AssemblyInfo.frame
r2884 r3026 27 27 // associated with an assembly. 28 28 [assembly: AssemblyTitle("HeuristicLab.Algorithms.SGA")] 29 [assembly: AssemblyDescription("HeuristicLab Standard Genetic Algorithm (SGA)")]29 [assembly: AssemblyDescription("HeuristicLab standard genetic algorithm (SGA)")] 30 30 [assembly: AssemblyConfiguration("")] 31 31 [assembly: AssemblyCompany("")] -
trunk/sources/HeuristicLab.Algorithms.SGA/3.3/SGAMainLoop.cs
r3021 r3026 31 31 namespace HeuristicLab.Algorithms.SGA { 32 32 /// <summary> 33 /// An operator which represents the main loop of a Standard Genetic Algorithm.33 /// An operator which represents the main loop of a standard genetic algorithm (SGA). 34 34 /// </summary> 35 [Item("SGAMainLoop", "An operator which represents the main loop of a Standard Genetic Algorithm.")]35 [Item("SGAMainLoop", "An operator which represents the main loop of a standard genetic algorithm (SGA).")] 36 36 [Creatable("Test")] 37 37 [StorableClass] -
trunk/sources/HeuristicLab.Algorithms.SGA/3.3/Tests/Properties/AssemblyInfo.cs
r2884 r3026 7 7 // associated with an assembly. 8 8 [assembly: AssemblyTitle("HeuristicLab.Algorithms.SGA-3.3.Tests")] 9 [assembly: AssemblyDescription("Unit tests for the HeuristicLab Standard Genetic Algorithm (SGA)")]9 [assembly: AssemblyDescription("Unit tests for the HeuristicLab standard genetic algorithm (SGA)")] 10 10 [assembly: AssemblyConfiguration("")] 11 11 [assembly: AssemblyCompany("")] -
trunk/sources/HeuristicLab.Algorithms.TS/3.3/Properties/AssemblyInfo.frame
r2972 r3026 27 27 // associated with an assembly. 28 28 [assembly: AssemblyTitle("HeuristicLab.Algorithms.TS")] 29 [assembly: AssemblyDescription("HeuristicLab Tabu Search (TS)")]29 [assembly: AssemblyDescription("HeuristicLab tabu search (TS)")] 30 30 [assembly: AssemblyConfiguration("")] 31 31 [assembly: AssemblyCompany("")] -
trunk/sources/HeuristicLab.Algorithms.TS/3.3/TSOperator.cs
r3017 r3026 30 30 namespace HeuristicLab.Algorithms.TS { 31 31 /// <summary> 32 /// An operator which represents a Tabu Search.32 /// An operator which represents a tabu search. 33 33 /// </summary> 34 [Item("TSOperator", "An operator which represents a Tabu Search.")]34 [Item("TSOperator", "An operator which represents a tabu search.")] 35 35 [StorableClass] 36 36 public class TSOperator : AlgorithmOperator { -
trunk/sources/HeuristicLab.Encodings.Permutation/3.3/Crossovers/EdgeRecombinationCrossover.cs
r3017 r3026 31 31 /// </summary> 32 32 /// <remarks> 33 /// It is implemented as described in Whitley et.al. 1991, The Traveling Salesman and Sequence Scheduling, in Davis, L. (Ed.), Handbook o vGenetic Algorithms, New York, pp. 350-372.<br />33 /// It is implemented as described in Whitley et.al. 1991, The Traveling Salesman and Sequence Scheduling, in Davis, L. (Ed.), Handbook of Genetic Algorithms, New York, pp. 350-372.<br /> 34 34 /// The operator first determines all cycles in the permutation and then composes the offspring by alternating between the cycles of the two parents. 35 35 /// </remarks> 36 [Item("EdgeRecombinationCrossover", "An operator which performs the edge recombination crossover on two permutations. It is implemented as described in Whitley et.al. 1991, The Traveling Salesman and Sequence Scheduling, in Davis, L. (Ed.), Handbook o vGenetic Algorithms, New York, pp. 350-372.")]36 [Item("EdgeRecombinationCrossover", "An operator which performs the edge recombination crossover on two permutations. It is implemented as described in Whitley et.al. 1991, The Traveling Salesman and Sequence Scheduling, in Davis, L. (Ed.), Handbook of Genetic Algorithms, New York, pp. 350-372.")] 37 37 [StorableClass] 38 38 [Creatable("Test")] -
trunk/sources/HeuristicLab.Encodings.RealVector/3.3/Manipulators/BreederGeneticAlgorithmManipulator.cs
r3017 r3026 59 59 60 60 /// <summary> 61 /// Performs a Breeder Genetic Algorithm Manipulation on the given <paramref name="vector"/>.61 /// Performs a breeder genetic algorithm manipulation on the given <paramref name="vector"/>. 62 62 /// </summary> 63 63 /// <param name="random">A random number generator.</param>
Note: See TracChangeset
for help on using the changeset viewer.