lib/fathom/plausible_range.rb in fathom-0.2.0 vs lib/fathom/plausible_range.rb in fathom-0.2.1
- old
+ new
@@ -85,10 +85,10 @@
def get_rand
rng.gaussian(std) + midpoint
end
def rng
- @rng ||= GSL::Rng.alloc
+ @rng ||= GSL::Rng.alloc(GSL::Rng::MT19937_1999, Kernel.rand(100_000))
end
end
class R < PlausibleRange
end