intervalFactor

Used in the binary search to set the search interval for the inverse CDF. The default addFactor is 6.0

The interval will be: start = Normal.stdNormalInvCDF(p) ll = start - getIntervalFactor()*getStandardDeviation(); ul = start + getIntervalFactor()*getStandardDeviation();