Free cookie consent management tool by TermsFeed Policy Generator

Changeset 183 for trunk/sources


Ignore:
Timestamp:
04/24/08 15:08:02 (16 years ago)
Author:
gkronber
Message:

changed default sigma for normal-distributed random numbers from 0.0 to 1.0

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

Legend:

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

    r2 r183  
    4747      AddVariableInfo(new VariableInfo("Sigma", "Parameter sigma of the normal distribution", typeof(DoubleData), VariableKind.None));
    4848      GetVariableInfo("Sigma").Local = true;
    49       AddVariable(new Variable("Sigma", new DoubleData(0.0)));
     49      AddVariable(new Variable("Sigma", new DoubleData(1.0)));
    5050
    5151      AddVariableInfo(new VariableInfo("Value", "The value to manipulate (actual type is one of: IntData, DoubleData, ConstrainedIntData, ConstrainedDoubleData)", typeof(IObjectData), VariableKind.In));
  • trunk/sources/HeuristicLab.Random/NormalRandomizer.cs

    r2 r183  
    4242      AddVariableInfo(new VariableInfo("Sigma", "Parameter sigma of the normal distribution", typeof(DoubleData), VariableKind.None));
    4343      GetVariableInfo("Sigma").Local = true;
    44       AddVariable(new Variable("Sigma", new DoubleData(0.0)));
     44      AddVariable(new Variable("Sigma", new DoubleData(1.0)));
    4545
    4646      AddVariableInfo(new VariableInfo("Value", "The value to manipulate (actual type is one of: IntData, DoubleData, ConstrainedIntData, ConstrainedDoubleData)", typeof(IObjectData), VariableKind.In));
Note: See TracChangeset for help on using the changeset viewer.