pub fn calculate_bounds_gaussian(
mean: f64,
sigma: f64,
step_size: f64,
target: f64,
lower_start: f64,
upper_start: f64,
) -> (f64, f64)
Expand description
Calculate the bounding interval [lower, upper] around mean
that captures target
total probability
using a binary search across a discretized search space. This mirrors calculate_bounds_emg
.