Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/14/10 05:31:49 (14 years ago)
Author:
swagner
Message:

Operator architecture refactoring (#95)

  • worked on operators
File:
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Operators/3.3/SubScopesCreator.cs

    r2792 r2794  
    2020#endregion
    2121
    22 using System;
    23 using System.Collections.Generic;
    24 using System.Text;
    2522using HeuristicLab.Core;
    2623using HeuristicLab.Data;
     
    3229  /// An operator which adds new and empty sub-scopes to the current scope.
    3330  /// </summary>
    34   [Item("SubScopesCreater", "An operator which adds new and empty sub-scopes to the current scope.")]
     31  [Item("SubScopesCreator", "An operator which adds new and empty sub-scopes to the current scope.")]
    3532  [EmptyStorableClass]
    3633  [Creatable("Test")]
    37   public class SubScopesCreater : SingleSuccessorOperator {
     34  public class SubScopesCreator : SingleSuccessorOperator {
    3835    public ValueLookupParameter<IntData> NumberOfSubScopesParameter {
    3936      get { return (ValueLookupParameter<IntData>)Parameters["NumberOfSubScopes"]; }
     
    4643    }
    4744
    48     public SubScopesCreater()
     45    public SubScopesCreator()
    4946      : base() {
    5047      Parameters.Add(new ValueLookupParameter<IntData>("NumberOfSubScopes", "The number of new and empty sub-scopes which should be added to the current scope."));
Note: See TracChangeset for help on using the changeset viewer.