Free cookie consent management tool by TermsFeed Policy Generator

Changeset 3026


Ignore:
Timestamp:
03/15/10 00:16:36 (14 years ago)
Author:
swagner
Message:

Fixed capitalization of algorithm names (#893)

Location:
trunk/sources
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Algorithms.SGA.Views/3.3/Properties/AssemblyInfo.frame

    r2885 r3026  
    2727// associated with an assembly.
    2828[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)")]
    3030[assembly: AssemblyConfiguration("")]
    3131[assembly: AssemblyCompany("")]
  • trunk/sources/HeuristicLab.Algorithms.SGA/3.3/Properties/AssemblyInfo.frame

    r2884 r3026  
    2727// associated with an assembly.
    2828[assembly: AssemblyTitle("HeuristicLab.Algorithms.SGA")]
    29 [assembly: AssemblyDescription("HeuristicLab Standard Genetic Algorithm (SGA)")]
     29[assembly: AssemblyDescription("HeuristicLab standard genetic algorithm (SGA)")]
    3030[assembly: AssemblyConfiguration("")]
    3131[assembly: AssemblyCompany("")]
  • trunk/sources/HeuristicLab.Algorithms.SGA/3.3/SGAMainLoop.cs

    r3021 r3026  
    3131namespace HeuristicLab.Algorithms.SGA {
    3232  /// <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).
    3434  /// </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).")]
    3636  [Creatable("Test")]
    3737  [StorableClass]
  • trunk/sources/HeuristicLab.Algorithms.SGA/3.3/Tests/Properties/AssemblyInfo.cs

    r2884 r3026  
    77// associated with an assembly.
    88[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)")]
    1010[assembly: AssemblyConfiguration("")]
    1111[assembly: AssemblyCompany("")]
  • trunk/sources/HeuristicLab.Algorithms.TS/3.3/Properties/AssemblyInfo.frame

    r2972 r3026  
    2727// associated with an assembly.
    2828[assembly: AssemblyTitle("HeuristicLab.Algorithms.TS")]
    29 [assembly: AssemblyDescription("HeuristicLab Tabu Search (TS)")]
     29[assembly: AssemblyDescription("HeuristicLab tabu search (TS)")]
    3030[assembly: AssemblyConfiguration("")]
    3131[assembly: AssemblyCompany("")]
  • trunk/sources/HeuristicLab.Algorithms.TS/3.3/TSOperator.cs

    r3017 r3026  
    3030namespace HeuristicLab.Algorithms.TS {
    3131  /// <summary>
    32   /// An operator which represents a Tabu Search.
     32  /// An operator which represents a tabu search.
    3333  /// </summary>
    34   [Item("TSOperator", "An operator which represents a Tabu Search.")]
     34  [Item("TSOperator", "An operator which represents a tabu search.")]
    3535  [StorableClass]
    3636  public class TSOperator : AlgorithmOperator {
  • trunk/sources/HeuristicLab.Encodings.Permutation/3.3/Crossovers/EdgeRecombinationCrossover.cs

    r3017 r3026  
    3131  /// </summary>
    3232  /// <remarks>
    33   /// It is implemented as described in Whitley et.al. 1991, The Traveling Salesman and Sequence Scheduling, in Davis, L. (Ed.), Handbook ov Genetic 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 />
    3434  /// The operator first determines all cycles in the permutation and then composes the offspring by alternating between the cycles of the two parents.
    3535  /// </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 ov Genetic 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.")]
    3737  [StorableClass]
    3838  [Creatable("Test")]
  • trunk/sources/HeuristicLab.Encodings.RealVector/3.3/Manipulators/BreederGeneticAlgorithmManipulator.cs

    r3017 r3026  
    5959
    6060    /// <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"/>.
    6262    /// </summary>
    6363    /// <param name="random">A random number generator.</param>
Note: See TracChangeset for help on using the changeset viewer.