Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/28/21 11:31:24 (3 years ago)
Author:
mkommend
Message:

#3075: Changed Feynman problem instances to new normal distributed RNG.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/Feynman/Feynman31.cs

    r17805 r17966  
    7171        var theta_noise = new List<double>();
    7272        var sigma_noise = (double) Math.Sqrt(noiseRatio.Value) * theta.StandardDeviationPop();
    73         theta_noise.AddRange(theta.Select(md => md + NormalDistributedRandom.NextDouble(rand, 0, sigma_noise)));
     73        theta_noise.AddRange(theta.Select(md => md + NormalDistributedRandomPolar.NextDouble(rand, 0, sigma_noise)));
    7474        data.Remove(theta);
    7575        data.Add(theta_noise);
Note: See TracChangeset for help on using the changeset viewer.