Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/21/09 11:36:53 (15 years ago)
Author:
vdorfer
Message:

Created API documentation for HeuristicLab.IntVector namespace and changed some comments in HeuristicLab.Random and HeuristicLab.Selection.Offspring namespace(#331)

Location:
trunk/sources/HeuristicLab.Random
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Random/NormalRandomAdder.cs

    r1153 r1157  
    8787    /// </summary>
    8888    /// <param name="scope">The scope where to add the generated random number.</param>
    89     /// <returns>null.</returns>
     89    /// <returns><c>null</c>.</returns>
    9090    public override IOperation Apply(IScope scope) {
    9191      IObjectData value = GetVariableValue<IObjectData>("Value", scope, false);
  • trunk/sources/HeuristicLab.Random/NormalRandomizer.cs

    r1153 r1157  
    8080    /// </summary>
    8181    /// <param name="scope">The scope where to assign the new random value to.</param>
    82     /// <returns>null.</returns>
     82    /// <returns><c>null</c>.</returns>
    8383    public override IOperation Apply(IScope scope) {
    8484      IObjectData value = GetVariableValue<IObjectData>("Value", scope, false);
  • trunk/sources/HeuristicLab.Random/RandomInjector.cs

    r1153 r1157  
    6060    /// </summary>
    6161    /// <param name="scope">The scope where to inject the variable.</param>
    62     /// <returns>null.</returns>
     62    /// <returns><c>null</c>.</returns>
    6363    public override IOperation Apply(IScope scope) {
    6464      bool setRandomly = GetVariableValue<BoolData>("SetSeedRandomly", scope, true).Data;
  • trunk/sources/HeuristicLab.Random/UniformRandomAdder.cs

    r1153 r1157  
    7070    /// </summary>
    7171    /// <param name="scope">The current scope where to add the generated random number.</param>
    72     /// <returns>null.</returns>
     72    /// <returns><c>null</c>.</returns>
    7373    public override IOperation Apply(IScope scope) {
    7474      IObjectData value = GetVariableValue<IObjectData>("Value", scope, false);
  • trunk/sources/HeuristicLab.Random/UniformRandomizer.cs

    r1153 r1157  
    7878    /// </summary>
    7979    /// <param name="scope">The scope where to apply the random number generator.</param>
    80     /// <returns>null.</returns>
     80    /// <returns><c>null</c>.</returns>
    8181    public override IOperation Apply(IScope scope) {
    8282      IObjectData value = GetVariableValue<IObjectData>("Value", scope, false);
Note: See TracChangeset for help on using the changeset viewer.