summaryrefslogtreecommitdiff
path: root/agm.c
diff options
context:
space:
mode:
authorzimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4>2001-11-16 10:14:27 +0000
committerzimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4>2001-11-16 10:14:27 +0000
commite6550d7323afbf6535199cc49617e8fb17c73aba (patch)
tree7188fa8c8458255560bfb958810608b461409100 /agm.c
parentc70763954622d2fac422430e06691e82a861ab44 (diff)
downloadmpfr-e6550d7323afbf6535199cc49617e8fb17c73aba.tar.gz
translated french comments to english
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@1518 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'agm.c')
-rw-r--r--agm.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/agm.c b/agm.c
index 04e0a4f5f..ff139dcc9 100644
--- a/agm.c
+++ b/agm.c
@@ -143,7 +143,7 @@ mpfr_agm (r, op2, op1, rnd_mode)
- /* b and a will be the 2 operands but I want b>= a */
+ /* b and a are the 2 operands but we want b >= a */
if ((compare = mpfr_cmp (op1,op2)) > 0)
{
mpfr_set (b,op1,GMP_RNDN);
@@ -197,11 +197,6 @@ mpfr_agm (r, op2, op1, rnd_mode)
eq = mpfr_cmp2(u,v);
}
- /* printf("avant can_round %i bits faux\n v : ",err+3);
- mpfr_print_raw(v); printf("\n u : ");
- mpfr_print_raw(u);printf("\n");*/
-
-
/* Roundability of the result */
can_round=mpfr_can_round(v,p-err-3,GMP_RNDN,rnd_mode,q);