(
p: ArgIntoFloat,
mu: ArgIntoFloat,
sigma: ArgIntoFloat,
vm: &VirtualMachine,
)
| 127 | |
| 128 | #[pyfunction] |
| 129 | fn _normal_dist_inv_cdf( |
| 130 | p: ArgIntoFloat, |
| 131 | mu: ArgIntoFloat, |
| 132 | sigma: ArgIntoFloat, |
| 133 | vm: &VirtualMachine, |
| 134 | ) -> PyResult<f64> { |
| 135 | normal_dist_inv_cdf(p.into_float(), mu.into_float(), sigma.into_float()) |
| 136 | .ok_or_else(|| vm.new_value_error("inv_cdf undefined for these parameters")) |
| 137 | } |
| 138 | } |
nothing calls this directly
no test coverage detected