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/Feynman38.cs

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