Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/27/09 09:31:06 (15 years ago)
Author:
vdorfer
Message:

Created API documentation for HeuristicLab.BitVector and HeuristicLab.Constraints namespace and changed a comment in HeuristicLab.IntVector namespace(#331)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Constraints/ConstraintBase.cs

    r764 r1176  
    2727
    2828namespace HeuristicLab.Constraints {
     29  /// <summary>
     30  /// Base class for all constraints.
     31  /// </summary>
    2932  public abstract class ConstraintBase : ItemBase, IConstraint {
     33    /// <inheritdoc select="summary"/>
    3034    public virtual string Description {
    3135      get { return "No constraint description available."; }
    3236    }
    3337
     38    /// <summary>
     39    /// Checks whether the given data fulfills the current constraint.
     40    /// </summary>
     41    /// <param name="data">The item to check.</param>
     42    /// <returns><c>true</c> if the constraint could be fulfilled, <c>false</c> otherwise.</returns>
    3443    public abstract bool Check(IItem data);
    3544  }
Note: See TracChangeset for help on using the changeset viewer.