Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/22/09 12:06:29 (16 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/BestSolutionStorer.cs

    r368 r1167  
    2828
    2929namespace HeuristicLab.Logging {
     30  /// <summary>
     31  /// Keeps a variable in the global scope that contains the scope representing the best solution.
     32  /// </summary>
    3033  public class BestSolutionStorer : DelegatingOperator {
     34    /// <inheritdoc select="summary"/>
    3135    public override string Description {
    3236      get { return @"Keeps a variable in the global scope that contains the scope representing the best of run solution."; }
    3337    }
    3438
     39    /// <summary>
     40    /// Initializes a new instance of <see cref="BestSolutionStorer"/> with three variable infos
     41    /// (<c>Quality</c>, <c>Maximization</c> and <c>BestSolution</c>).
     42    /// </summary>
    3543    public BestSolutionStorer()
    3644      : base() {
     
    4048    }
    4149
     50    /// <summary>
     51    /// Keeps a variable in the global scope that contains the scope representing the best solution.
     52    /// </summary>
     53    /// <param name="scope">The scope whose populations to check for the best solution.</param>
     54    /// <returns><c>null</c>.</returns>
    4255    public override IOperation Apply(IScope scope) {
    4356      if(scope.GetVariable(Guid.ToString() + "-Active") == null) {
Note: See TracChangeset for help on using the changeset viewer.