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.Operators.Metaprogramming/DoubleRangeVariableInjector.cs

    r466 r1167  
    2828
    2929namespace HeuristicLab.Operators.Metaprogramming {
     30  /// <summary>
     31  /// Injects a double variable into the current scope being in a specified range.
     32  /// </summary>
    3033  public class DoubleRangeVariableInjector: OperatorBase {
     34    /// <inheritdoc select="summary"/>
    3135    public override string Description {
    3236      get { return "TASK."; }
    3337    }
    3438
     39    /// <summary>
     40    /// Initializes a new instance of <see cref="DoubleRangeVariableInjector"/> with five variable infos
     41    /// (<c>VariableInjectos</c>, <c>VariableName</c>, <c>Min</c>, <c>Max</c> and <c>StepSize</c>).
     42    /// </summary>
    3543    public DoubleRangeVariableInjector()
    3644      : base() {
     
    4250    }
    4351
     52    /// <summary>
     53    /// Injects a new double variable in the given <paramref name="scope"/>.
     54    /// </summary>
     55    /// <param name="scope">The current scope where to inject the variable.</param>
     56    /// <returns><c>null</c>.</returns>
    4457    public override IOperation Apply(IScope scope) {
    4558      double min = GetVariableValue<DoubleData>("Min", scope, true).Data;
Note: See TracChangeset for help on using the changeset viewer.