From d3ce466faba300bbd5ff8dc6a5e7ced6da3fb337 Mon Sep 17 00:00:00 2001 From: Trevor Gross Date: Mon, 19 Aug 2024 14:47:04 -0500 Subject: [PATCH] Fix pub/priv --- src/float/div.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/float/div.rs b/src/float/div.rs index 17588047..93079bd4 100644 --- a/src/float/div.rs +++ b/src/float/div.rs @@ -584,7 +584,7 @@ where /// the next `x` as a UQ0 number. /// /// This is the `x_{n+1} = 2*x_n - b*x_n^2` algorithm, implemented as `x_n * (2 - b*x_n)`. -pub fn next_guess(x_uq0: I, b_uq1: I) -> I +fn next_guess(x_uq0: I, b_uq1: I) -> I where I: Int + HInt, ::D: ops::Shr::D>,