Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/26/08 10:29:34 (16 years ago)
Author:
vdorfer
Message:

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Selection/RightReducer.cs

    r2 r817  
    2727
    2828namespace HeuristicLab.Selection {
     29  /// <summary>
     30  /// Takes only sub scopes from the right child of the tree.
     31  /// </summary>
    2932  public class RightReducer : ReducerBase {
     33    /// <inheritdoc select="summary"/>
    3034    public override string Description {
    3135      get { return @"TODO\r\nOperator description still missing ..."; }
    3236    }
    3337
     38    /// <summary>
     39    /// Takes only the sub scopes from the right part of the tree.
     40    /// </summary>
     41    /// <param name="scope">The current scope.</param>
     42    /// <returns>All sub scopes from the right sub scope of the tree.</returns>
    3443    protected override ICollection<IScope> Reduce(IScope scope) {
    3544      List<IScope> subScopes = new List<IScope>();
Note: See TracChangeset for help on using the changeset viewer.