PharmCat / MvNormalCDF.jl

Quasi-Monte-Carlo numerical computation of multivariate normal probabilities
MIT License
25 stars 1 forks source link

Error in description? Not _quasi_-Monte Carlo? #15

Open droodman opened 1 month ago

droodman commented 1 month ago

The readme says "Quasi-Monte-Carlo numerical computation of multivariate normal probabilities." However, it looks to me like the "Quasi" bit is wrong. If the code uses random numbers, then it's just Monte Carlo simulation. If it uses number-theoretic, deterministic sequences such as Halton sequences---which maximize uniformity of coverage of the unit hypercube at the expense of independence of different draws---it is "quasi Monte Carlo."

PharmCat commented 1 month ago

Hi! Yes, it use Richtmyer generator.

droodman commented 4 weeks ago

Ah, I see. Thank you. I think it would be good to document that and explain the role of the rng argument.