Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/01/08 13:47:10 (16 years ago)
Author:
vdorfer
Message:

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Evolutionary/SASEGASAReunificator.cs

    r2 r881  
    2727
    2828namespace HeuristicLab.Evolutionary {
     29  /// <summary>
     30  /// Joins all sub sub scopes of a specified scope, reduces the number of sub
     31  /// scopes by 1 and uniformly partitions the sub sub scopes again, maintaining the order.
     32  /// </summary>
    2933  public class SASEGASAReunificator : OperatorBase {
     34    /// <inheritdoc select="summary"/>
    3035    public override string Description {
    3136      get { return @"TODO\r\nOperator description still missing ..."; }
    3237    }
    3338
     39    /// <summary>
     40    /// Joins all sub sub scopes of the given <paramref name="scope"/>, reduces the number of sub
     41    /// scopes by 1 and uniformly partitions the sub sub scopes again, maintaining the order.
     42    /// </summary>
     43    /// <exception cref="InvalidOperationException">Thrown when only 0 or 1 sub scope is available.</exception>
     44    /// <param name="scope">The current scope whose sub scopes to reduce.</param>
     45    /// <returns><c>null</c>.</returns>
    3446    public override IOperation Apply(IScope scope) {
    3547      int subScopes = scope.SubScopes.Count;
Note: See TracChangeset for help on using the changeset viewer.