Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/21/08 09:48:11 (16 years ago)
Author:
vdorfer
Message:

Created API documentation for HeuristicLab.Operators namespace (#331)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Operators/SequentialSubScopesProcessor.cs

    r2 r801  
    2727
    2828namespace HeuristicLab.Operators {
     29  /// <summary>
     30  /// Performs <c>n</c> operators on <c>n</c> subscopes, operations must be executed sequentially.
     31  /// </summary>
    2932  public class SequentialSubScopesProcessor : OperatorBase {
     33    /// <inheritdoc select="summary"/>
    3034    public override string Description {
    3135      get { return @"TODO\r\nOperator description still missing ..."; }
    3236    }
    3337
     38    /// <summary>
     39    /// Applies <c>n</c> operators on all the <c>n</c> sub scopes of the given <paramref name="scope"/>.
     40    /// </summary>
     41    /// <param name="scope">The scope on whose sub scopes the operators are applied.</param>
     42    /// <returns>A new <see cref="CompositeOperation"/> with the <c>i</c>th operator applied
     43    /// on the <c>i</c>th sub scope.</returns>
    3444    public override IOperation Apply(IScope scope) {
    3545      CompositeOperation next = new CompositeOperation();
Note: See TracChangeset for help on using the changeset viewer.