pub fn newton<F, D>(
f: F,
df: D,
x0: &ExactNum,
tol: &ExactNum,
max_iter: usize,
p: usize,
rm: RoundingMode,
cc: &mut Consts,
) -> Option<ExactNum>Expand description
Newton–Raphson from x0 with exact derivative df.