Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/14/10 18:55:01 (14 years ago)
Author:
swagner
Message:

Implemented reviewers' comments (#893)

  • renamed SGAOperator to SGAMainLoop
File:
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Algorithms.SGA/3.3/SGAMainLoop.cs

    r3018 r3020  
    3131namespace HeuristicLab.Algorithms.SGA {
    3232  /// <summary>
    33   /// An operator which represents a Standard Genetic Algorithm.
     33  /// An operator which represents the main loop of a Standard Genetic Algorithm.
    3434  /// </summary>
    35   [Item("SGAOperator", "An operator which represents a Standard Genetic Algorithm.")]
     35  [Item("SGAMainLoop", "An operator which represents the main loop of a Standard Genetic Algorithm.")]
    3636  [Creatable("Test")]
    3737  [StorableClass]
    38   public class SGAOperator : AlgorithmOperator {
     38  public class SGAMainLoop : AlgorithmOperator {
    3939    #region Parameter properties
    4040    public ValueLookupParameter<IRandom> RandomParameter {
     
    8080    #endregion
    8181
    82     public SGAOperator()
     82    public SGAMainLoop()
    8383      : base() {
    8484      #region Create parameters
Note: See TracChangeset for help on using the changeset viewer.