pub fn brent<F>(
f: F,
a: &ExactNum,
b: &ExactNum,
tol: &ExactNum,
p: usize,
rm: RoundingMode,
cc: &mut Consts,
) -> Option<ExactNum>Expand description
Brent’s method (bisection + secant + inverse quadratic) on [a, b].