mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-21 20:20:24 +02:00
Fix minor formatting error in 'rationalize'.
* libguile/numbers.c (scm_rationalize): Fix formatting.
This commit is contained in:
parent
620c13e8fc
commit
d9e7774fda
1 changed files with 2 additions and 2 deletions
|
@ -9528,8 +9528,8 @@ SCM_DEFINE (scm_rationalize, "rationalize", 2, 0, 0,
|
||||||
interval between the remainders NLO/DLO and NHI/DHI.
|
interval between the remainders NLO/DLO and NHI/DHI.
|
||||||
There are two cases to consider: either NLO/DLO == QLO
|
There are two cases to consider: either NLO/DLO == QLO
|
||||||
is an integer (indicated by RLO == 0), or QLO < QHI. */
|
is an integer (indicated by RLO == 0), or QLO < QHI. */
|
||||||
if (mpz_sgn (rlo) == 0 || mpz_cmp (qlo, qhi)
|
if (mpz_sgn (rlo) == 0 || mpz_cmp (qlo, qhi) != 0)
|
||||||
!= 0) break;
|
break;
|
||||||
|
|
||||||
/* Efficiently shuffle variables around for the next
|
/* Efficiently shuffle variables around for the next
|
||||||
iteration. First we shift the recent convergents. */
|
iteration. First we shift the recent convergents. */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue