Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/11/17 10:59:33 (6 years ago)
Author:
gkronber
Message:

#2862: removed spaces

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/NonlinearRegression/NonlinearRegression.cs

    r15502 r15505  
    129129      Parameters.Add(new FixedValueParameter<BoolValue>(SetSeedRandomlyParameterName, "Switch to determine if the random number seed should be initialized randomly.", new BoolValue(true)));
    130130      Parameters.Add(new FixedValueParameter<BoolValue>(InitParamsRandomlyParameterName, "Switch to determine if the real-valued model parameters should be initialized randomly in each restart.", new BoolValue(false)));
    131       Parameters.Add(new FixedValueParameter<BoolValue>(ApplyLinearScalingParameterName, " Switch to determine if linear scaling terms should be added to the model", new BoolValue(true)));
     131      Parameters.Add(new FixedValueParameter<BoolValue>(ApplyLinearScalingParameterName, "Switch to determine if linear scaling terms should be added to the model", new BoolValue(true)));
    132132
    133133      SetParameterHiddenState();
     
    158158        Parameters.Add(new FixedValueParameter<BoolValue>(InitParamsRandomlyParameterName, "Switch to determine if the numeric parameters of the model should be initialized randomly.", new BoolValue(false)));
    159159      if (!Parameters.ContainsKey(ApplyLinearScalingParameterName))
    160         Parameters.Add(new FixedValueParameter<BoolValue>(ApplyLinearScalingParameterName, " Switch to determine if linear scaling terms should be added to the model", new BoolValue(true)));
     160        Parameters.Add(new FixedValueParameter<BoolValue>(ApplyLinearScalingParameterName, "Switch to determine if linear scaling terms should be added to the model", new BoolValue(true)));
    161161
    162162
Note: See TracChangeset for help on using the changeset viewer.