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

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