Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/22/09 12:06:29 (15 years ago)
Author:
vdorfer
Message:

Created API documentation for HeuristicLab.Operators.Metaprogramming and HeuristicLab.Logging namespace and changed a comment in HeuristicLab.Core namespace(#331)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Logging/QualityLogger.cs

    r77 r1167  
    2828
    2929namespace HeuristicLab.Logging {
     30  /// <summary>
     31  /// Logs the quality (best, average, worst) of a solution.
     32  /// </summary>
    3033  public class QualityLogger : OperatorBase {
     34    /// <inheritdoc select="summary"/>
    3135    public override string Description {
    3236      get { return @"TODO\r\nOperator description still missing ..."; }
    3337    }
    3438
     39    /// <summary>
     40    /// Initializes a new instance of <see cref="QualityLogger"/> with two variable infos
     41    /// (<c>Quality</c> and <c>QualityLog</c>).
     42    /// </summary>
    3543    public QualityLogger()
    3644      : base() {
     
    3947    }
    4048
     49    /// <summary>
     50    /// Logs the quality (best, average and worst) of a solution.
     51    /// </summary>
     52    /// <param name="scope">The current scope where to log the quality.</param>
     53    /// <returns><c>null</c>.</returns>
    4154    public override IOperation Apply(IScope scope) {
    4255      double[] qualities = new double[scope.SubScopes.Count];
Note: See TracChangeset for help on using the changeset viewer.