//! Efficiency relative to the Gaussian MLE.
usesuper::variance::asymptotic_variance;usecrate::rho::RhoFunction;/// Asymptotic efficiency at the Gaussian: `(E[ψ'])² / E[ψ²]`; the reciprocal of
/// the asymptotic variance, since the location MLE attains variance 1.
pubfngaussian_efficiency(rho:&dyn RhoFunction, quad_points:usize)->f64{1.0/asymptotic_variance(rho, quad_points)}